| 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 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 void PushObject(const Object& object, Register pp) { | 1329 void PushObject(const Object& object, Register pp) { |
| 1330 LoadObject(TMP, object, pp); | 1330 LoadObject(TMP, object, pp); |
| 1331 Push(TMP); | 1331 Push(TMP); |
| 1332 } | 1332 } |
| 1333 void CompareObject(Register reg, const Object& object, Register pp); | 1333 void CompareObject(Register reg, const Object& object, Register pp); |
| 1334 | 1334 |
| 1335 void LoadClassId(Register result, Register object, Register pp); | 1335 void LoadClassId(Register result, Register object, Register pp); |
| 1336 void LoadClassById(Register result, Register class_id, Register pp); | 1336 void LoadClassById(Register result, Register class_id, Register pp); |
| 1337 void LoadClass(Register result, Register object, Register pp); | 1337 void LoadClass(Register result, Register object, Register pp); |
| 1338 void CompareClassId(Register object, intptr_t class_id, Register pp); | 1338 void CompareClassId(Register object, intptr_t class_id, Register pp); |
| 1339 void LoadClassIdMayBeSmi(Register result, Register object); |
| 1339 void LoadTaggedClassIdMayBeSmi(Register result, Register object); | 1340 void LoadTaggedClassIdMayBeSmi(Register result, Register object); |
| 1340 | 1341 |
| 1341 void ComputeRange(Register result, | 1342 void ComputeRange(Register result, |
| 1342 Register value, | 1343 Register value, |
| 1343 Register scratch, | 1344 Register scratch, |
| 1344 Label* miss); | 1345 Label* miss); |
| 1345 | 1346 |
| 1346 void UpdateRangeFeedback(Register value, | 1347 void UpdateRangeFeedback(Register value, |
| 1347 intptr_t idx, | 1348 intptr_t idx, |
| 1348 Register ic_data, | 1349 Register ic_data, |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1935 Register value, | 1936 Register value, |
| 1936 Label* no_update); | 1937 Label* no_update); |
| 1937 | 1938 |
| 1938 DISALLOW_ALLOCATION(); | 1939 DISALLOW_ALLOCATION(); |
| 1939 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1940 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1940 }; | 1941 }; |
| 1941 | 1942 |
| 1942 } // namespace dart | 1943 } // namespace dart |
| 1943 | 1944 |
| 1944 #endif // VM_ASSEMBLER_ARM64_H_ | 1945 #endif // VM_ASSEMBLER_ARM64_H_ |
| OLD | NEW |