| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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_ARM64_H_ | 5 #ifndef VM_ASSEMBLER_ARM64_H_ |
| 6 #define VM_ASSEMBLER_ARM64_H_ | 6 #define VM_ASSEMBLER_ARM64_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_arm64.h directly; use assembler.h instead. | 9 #error Do not include assembler_arm64.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 const Object& value); | 1127 const Object& value); |
| 1128 void StoreIntoObjectOffsetNoBarrier(Register object, | 1128 void StoreIntoObjectOffsetNoBarrier(Register object, |
| 1129 int32_t offset, | 1129 int32_t offset, |
| 1130 const Object& value, | 1130 const Object& value, |
| 1131 Register pp); | 1131 Register pp); |
| 1132 | 1132 |
| 1133 // Object pool, loading from pool, etc. | 1133 // Object pool, loading from pool, etc. |
| 1134 void LoadPoolPointer(Register pp); | 1134 void LoadPoolPointer(Register pp); |
| 1135 | 1135 |
| 1136 // Index of constant pool entries pointing to debugger stubs. | 1136 // Index of constant pool entries pointing to debugger stubs. |
| 1137 static const int kBreakpointRuntimeCPIndex = 5; | 1137 static const int kICCallBreakpointCPIndex = 5; |
| 1138 static const int kClosureCallBreakpointCPIndex = 6; |
| 1139 static const int kRuntimeCallBreakpointCPIndex = 7; |
| 1138 | 1140 |
| 1139 enum Patchability { | 1141 enum Patchability { |
| 1140 kPatchable, | 1142 kPatchable, |
| 1141 kNotPatchable, | 1143 kNotPatchable, |
| 1142 }; | 1144 }; |
| 1143 | 1145 |
| 1144 void LoadWordFromPoolOffset(Register dst, Register pp, uint32_t offset); | 1146 void LoadWordFromPoolOffset(Register dst, Register pp, uint32_t offset); |
| 1145 void LoadWordFromPoolOffsetFixed(Register dst, Register pp, uint32_t offset); | 1147 void LoadWordFromPoolOffsetFixed(Register dst, Register pp, uint32_t offset); |
| 1146 intptr_t FindExternalLabel(const ExternalLabel* label, | 1148 intptr_t FindExternalLabel(const ExternalLabel* label, |
| 1147 Patchability patchable); | 1149 Patchability patchable); |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1671 Register value, | 1673 Register value, |
| 1672 Label* no_update); | 1674 Label* no_update); |
| 1673 | 1675 |
| 1674 DISALLOW_ALLOCATION(); | 1676 DISALLOW_ALLOCATION(); |
| 1675 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1677 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1676 }; | 1678 }; |
| 1677 | 1679 |
| 1678 } // namespace dart | 1680 } // namespace dart |
| 1679 | 1681 |
| 1680 #endif // VM_ASSEMBLER_ARM64_H_ | 1682 #endif // VM_ASSEMBLER_ARM64_H_ |
| OLD | NEW |