| 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 | 659 |
| 660 void MarkExceptionHandler(Label* label); | 660 void MarkExceptionHandler(Label* label); |
| 661 | 661 |
| 662 void Drop(intptr_t stack_elements); | 662 void Drop(intptr_t stack_elements); |
| 663 | 663 |
| 664 void LoadPoolPointer(); | 664 void LoadPoolPointer(); |
| 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 LoadExternalLabel(Register dst, | 670 void LoadExternalLabel(Register dst, |
| 670 const ExternalLabel* label, | 671 const ExternalLabel* label, |
| 671 Patchability patchable, | 672 Patchability patchable, |
| 672 Condition cond = AL); | 673 Condition cond = AL); |
| 673 void PushObject(const Object& object); | 674 void PushObject(const Object& object); |
| 674 void CompareObject(Register rn, const Object& object); | 675 void CompareObject(Register rn, const Object& object); |
| 675 | 676 |
| 676 // When storing into a heap object field, knowledge of the previous content | 677 // When storing into a heap object field, knowledge of the previous content |
| 677 // is expressed through these constants. | 678 // is expressed through these constants. |
| 678 enum FieldContent { | 679 enum FieldContent { |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 Register new_value, | 1130 Register new_value, |
| 1130 FieldContent old_content); | 1131 FieldContent old_content); |
| 1131 | 1132 |
| 1132 DISALLOW_ALLOCATION(); | 1133 DISALLOW_ALLOCATION(); |
| 1133 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1134 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1134 }; | 1135 }; |
| 1135 | 1136 |
| 1136 } // namespace dart | 1137 } // namespace dart |
| 1137 | 1138 |
| 1138 #endif // VM_ASSEMBLER_ARM_H_ | 1139 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |