| 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 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1304 bool allow_constant_pool() const { | 1304 bool allow_constant_pool() const { |
| 1305 return allow_constant_pool_; | 1305 return allow_constant_pool_; |
| 1306 } | 1306 } |
| 1307 void set_allow_constant_pool(bool b) { | 1307 void set_allow_constant_pool(bool b) { |
| 1308 allow_constant_pool_ = b; | 1308 allow_constant_pool_ = b; |
| 1309 } | 1309 } |
| 1310 | 1310 |
| 1311 void LoadWordFromPoolOffset(Register dst, Register pp, uint32_t offset); | 1311 void LoadWordFromPoolOffset(Register dst, Register pp, uint32_t offset); |
| 1312 void LoadWordFromPoolOffsetFixed(Register dst, Register pp, uint32_t offset); | 1312 void LoadWordFromPoolOffsetFixed(Register dst, Register pp, uint32_t offset); |
| 1313 intptr_t FindImmediate(int64_t imm); | 1313 intptr_t FindImmediate(int64_t imm); |
| 1314 bool CanLoadObjectFromPool(const Object& object); | 1314 bool CanLoadFromObjectPool(const Object& object) const; |
| 1315 bool CanLoadImmediateFromPool(int64_t imm, Register pp); | 1315 bool CanLoadImmediateFromPool(int64_t imm, Register pp); |
| 1316 void LoadExternalLabel(Register dst, const ExternalLabel* label, | 1316 void LoadExternalLabel(Register dst, const ExternalLabel* label, |
| 1317 Patchability patchable, Register pp); | 1317 Patchability patchable, Register pp); |
| 1318 void LoadExternalLabelFixed(Register dst, | 1318 void LoadExternalLabelFixed(Register dst, |
| 1319 const ExternalLabel* label, | 1319 const ExternalLabel* label, |
| 1320 Patchability patchable, | 1320 Patchability patchable, |
| 1321 Register pp); | 1321 Register pp); |
| 1322 void LoadIsolate(Register dst, Register pp); | 1322 void LoadIsolate(Register dst, Register pp); |
| 1323 void LoadObject(Register dst, const Object& obj, Register pp); | 1323 void LoadObject(Register dst, const Object& obj, Register pp); |
| 1324 void LoadDecodableImmediate(Register reg, int64_t imm, Register pp); | 1324 void LoadDecodableImmediate(Register reg, int64_t imm, Register pp); |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1936 Register value, | 1936 Register value, |
| 1937 Label* no_update); | 1937 Label* no_update); |
| 1938 | 1938 |
| 1939 DISALLOW_ALLOCATION(); | 1939 DISALLOW_ALLOCATION(); |
| 1940 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1940 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1941 }; | 1941 }; |
| 1942 | 1942 |
| 1943 } // namespace dart | 1943 } // namespace dart |
| 1944 | 1944 |
| 1945 #endif // VM_ASSEMBLER_ARM64_H_ | 1945 #endif // VM_ASSEMBLER_ARM64_H_ |
| OLD | NEW |