OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_ASSEMBLER_ARM_H_ | 5 #ifndef VM_ASSEMBLER_ARM_H_ |
6 #define VM_ASSEMBLER_ARM_H_ | 6 #define VM_ASSEMBLER_ARM_H_ |
7 | 7 |
8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
9 #error Do not include assembler_arm.h directly; use assembler.h instead. | 9 #error Do not include assembler_arm.h directly; use assembler.h instead. |
10 #endif | 10 #endif |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 | 660 |
661 void Drop(intptr_t stack_elements); | 661 void Drop(intptr_t stack_elements); |
662 | 662 |
663 void RestoreCodePointer(); | 663 void RestoreCodePointer(); |
664 void LoadPoolPointer(Register reg = PP); | 664 void LoadPoolPointer(Register reg = PP); |
665 | 665 |
666 void LoadIsolate(Register rd); | 666 void LoadIsolate(Register rd); |
667 | 667 |
668 void LoadObject(Register rd, const Object& object, Condition cond = AL); | 668 void LoadObject(Register rd, const Object& object, Condition cond = AL); |
669 void LoadUniqueObject(Register rd, const Object& object, Condition cond = AL); | 669 void LoadUniqueObject(Register rd, const Object& object, Condition cond = AL); |
670 void LoadExternalLabel(Register dst, | |
671 const ExternalLabel* label, | |
672 Patchability patchable, | |
673 Condition cond = AL); | |
674 void LoadFunctionFromCalleePool(Register dst, | 670 void LoadFunctionFromCalleePool(Register dst, |
675 const Function& function, | 671 const Function& function, |
676 Register new_pp); | 672 Register new_pp); |
677 void LoadNativeEntry(Register dst, | 673 void LoadNativeEntry(Register dst, |
678 const ExternalLabel* label, | 674 const ExternalLabel* label, |
679 Patchability patchable, | 675 Patchability patchable, |
680 Condition cond = AL); | 676 Condition cond = AL); |
681 void PushObject(const Object& object); | 677 void PushObject(const Object& object); |
682 void CompareObject(Register rn, const Object& object); | 678 void CompareObject(Register rn, const Object& object); |
683 | 679 |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 Register new_value, | 1148 Register new_value, |
1153 FieldContent old_content); | 1149 FieldContent old_content); |
1154 | 1150 |
1155 DISALLOW_ALLOCATION(); | 1151 DISALLOW_ALLOCATION(); |
1156 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1152 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1157 }; | 1153 }; |
1158 | 1154 |
1159 } // namespace dart | 1155 } // namespace dart |
1160 | 1156 |
1161 #endif // VM_ASSEMBLER_ARM_H_ | 1157 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |