| 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 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1158 intptr_t FindObject(const Object& obj, Patchability patchable); | 1158 intptr_t FindObject(const Object& obj, Patchability patchable); |
| 1159 intptr_t FindImmediate(int64_t imm); | 1159 intptr_t FindImmediate(int64_t imm); |
| 1160 bool CanLoadObjectFromPool(const Object& object); | 1160 bool CanLoadObjectFromPool(const Object& object); |
| 1161 bool CanLoadImmediateFromPool(int64_t imm, Register pp); | 1161 bool CanLoadImmediateFromPool(int64_t imm, Register pp); |
| 1162 void LoadExternalLabel(Register dst, const ExternalLabel* label, | 1162 void LoadExternalLabel(Register dst, const ExternalLabel* label, |
| 1163 Patchability patchable, Register pp); | 1163 Patchability patchable, Register pp); |
| 1164 void LoadExternalLabelFixed(Register dst, | 1164 void LoadExternalLabelFixed(Register dst, |
| 1165 const ExternalLabel* label, | 1165 const ExternalLabel* label, |
| 1166 Patchability patchable, | 1166 Patchability patchable, |
| 1167 Register pp); | 1167 Register pp); |
| 1168 void LoadIsolate(Register dst, Register pp); |
| 1168 void LoadObject(Register dst, const Object& obj, Register pp); | 1169 void LoadObject(Register dst, const Object& obj, Register pp); |
| 1169 void LoadDecodableImmediate(Register reg, int64_t imm, Register pp); | 1170 void LoadDecodableImmediate(Register reg, int64_t imm, Register pp); |
| 1170 void LoadImmediateFixed(Register reg, int64_t imm); | 1171 void LoadImmediateFixed(Register reg, int64_t imm); |
| 1171 void LoadImmediate(Register reg, int64_t imm, Register pp); | 1172 void LoadImmediate(Register reg, int64_t imm, Register pp); |
| 1172 void LoadDImmediate(VRegister reg, double immd, Register pp); | 1173 void LoadDImmediate(VRegister reg, double immd, Register pp); |
| 1173 | 1174 |
| 1174 void PushObject(const Object& object, Register pp) { | 1175 void PushObject(const Object& object, Register pp) { |
| 1175 LoadObject(TMP, object, pp); | 1176 LoadObject(TMP, object, pp); |
| 1176 Push(TMP); | 1177 Push(TMP); |
| 1177 } | 1178 } |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 Register value, | 1705 Register value, |
| 1705 Label* no_update); | 1706 Label* no_update); |
| 1706 | 1707 |
| 1707 DISALLOW_ALLOCATION(); | 1708 DISALLOW_ALLOCATION(); |
| 1708 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1709 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1709 }; | 1710 }; |
| 1710 | 1711 |
| 1711 } // namespace dart | 1712 } // namespace dart |
| 1712 | 1713 |
| 1713 #endif // VM_ASSEMBLER_ARM64_H_ | 1714 #endif // VM_ASSEMBLER_ARM64_H_ |
| OLD | NEW |