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 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1330 } | 1330 } |
1331 void CompareObject(Register reg, const Object& object); | 1331 void CompareObject(Register reg, const Object& object); |
1332 | 1332 |
1333 void LoadClassId(Register result, Register object); | 1333 void LoadClassId(Register result, Register object); |
1334 void LoadClassById(Register result, Register class_id); | 1334 void LoadClassById(Register result, Register class_id); |
1335 void LoadClass(Register result, Register object); | 1335 void LoadClass(Register result, Register object); |
1336 void CompareClassId(Register object, intptr_t class_id); | 1336 void CompareClassId(Register object, intptr_t class_id); |
1337 void LoadClassIdMayBeSmi(Register result, Register object); | 1337 void LoadClassIdMayBeSmi(Register result, Register object); |
1338 void LoadTaggedClassIdMayBeSmi(Register result, Register object); | 1338 void LoadTaggedClassIdMayBeSmi(Register result, Register object); |
1339 | 1339 |
1340 void ComputeRange(Register result, | |
1341 Register value, | |
1342 Register scratch, | |
1343 Label* miss); | |
1344 | |
1345 void UpdateRangeFeedback(Register value, | |
1346 intptr_t idx, | |
1347 Register ic_data, | |
1348 Register scratch1, | |
1349 Register scratch2, | |
1350 Label* miss); | |
1351 | |
1352 void SetupDartSP(); | 1340 void SetupDartSP(); |
1353 void RestoreCSP(); | 1341 void RestoreCSP(); |
1354 | 1342 |
1355 void EnterFrame(intptr_t frame_size); | 1343 void EnterFrame(intptr_t frame_size); |
1356 void LeaveFrame(); | 1344 void LeaveFrame(); |
1357 | 1345 |
1358 void CheckCodePointer(); | 1346 void CheckCodePointer(); |
1359 void RestoreCodePointer(); | 1347 void RestoreCodePointer(); |
1360 | 1348 |
1361 void EnterDartFrame(intptr_t frame_size, Register new_pp = kNoRegister); | 1349 void EnterDartFrame(intptr_t frame_size, Register new_pp = kNoRegister); |
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1958 Register value, | 1946 Register value, |
1959 Label* no_update); | 1947 Label* no_update); |
1960 | 1948 |
1961 DISALLOW_ALLOCATION(); | 1949 DISALLOW_ALLOCATION(); |
1962 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1950 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1963 }; | 1951 }; |
1964 | 1952 |
1965 } // namespace dart | 1953 } // namespace dart |
1966 | 1954 |
1967 #endif // VM_ASSEMBLER_ARM64_H_ | 1955 #endif // VM_ASSEMBLER_ARM64_H_ |
OLD | NEW |