OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/bailout-reason.h" | 9 #include "src/bailout-reason.h" |
10 #include "src/frames.h" | 10 #include "src/frames.h" |
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 // tag_allocated_object is true the result is tagged as as a heap object. | 756 // tag_allocated_object is true the result is tagged as as a heap object. |
757 // All registers are clobbered also when control continues at the gc_required | 757 // All registers are clobbered also when control continues at the gc_required |
758 // label. | 758 // label. |
759 void Allocate(int object_size, | 759 void Allocate(int object_size, |
760 Register result, | 760 Register result, |
761 Register scratch1, | 761 Register scratch1, |
762 Register scratch2, | 762 Register scratch2, |
763 Label* gc_required, | 763 Label* gc_required, |
764 AllocationFlags flags); | 764 AllocationFlags flags); |
765 | 765 |
766 void Allocate(Register object_size, | 766 void Allocate(Register object_size, Register result, Register result_end, |
767 Register result, | 767 Register scratch, Label* gc_required, AllocationFlags flags); |
768 Register scratch1, | |
769 Register scratch2, | |
770 Label* gc_required, | |
771 AllocationFlags flags); | |
772 | 768 |
773 void AllocateTwoByteString(Register result, | 769 void AllocateTwoByteString(Register result, |
774 Register length, | 770 Register length, |
775 Register scratch1, | 771 Register scratch1, |
776 Register scratch2, | 772 Register scratch2, |
777 Register scratch3, | 773 Register scratch3, |
778 Label* gc_required); | 774 Label* gc_required); |
779 void AllocateOneByteString(Register result, Register length, | 775 void AllocateOneByteString(Register result, Register length, |
780 Register scratch1, Register scratch2, | 776 Register scratch1, Register scratch2, |
781 Register scratch3, Label* gc_required); | 777 Register scratch3, Label* gc_required); |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1562 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1558 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1563 #else | 1559 #else |
1564 #define ACCESS_MASM(masm) masm-> | 1560 #define ACCESS_MASM(masm) masm-> |
1565 #endif | 1561 #endif |
1566 | 1562 |
1567 | 1563 |
1568 } // namespace internal | 1564 } // namespace internal |
1569 } // namespace v8 | 1565 } // namespace v8 |
1570 | 1566 |
1571 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1567 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |