OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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_MIPS_H_ | 5 #ifndef VM_ASSEMBLER_MIPS_H_ |
6 #define VM_ASSEMBLER_MIPS_H_ | 6 #define VM_ASSEMBLER_MIPS_H_ |
7 | 7 |
8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
9 #error Do not include assembler_mips.h directly; use assembler.h instead. | 9 #error Do not include assembler_mips.h directly; use assembler.h instead. |
10 #endif | 10 #endif |
(...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1542 void LoadExternalLabel(Register rd, | 1542 void LoadExternalLabel(Register rd, |
1543 const ExternalLabel* label, | 1543 const ExternalLabel* label, |
1544 Patchability patchable); | 1544 Patchability patchable); |
1545 void PushObject(const Object& object); | 1545 void PushObject(const Object& object); |
1546 | 1546 |
1547 void LoadIsolate(Register result); | 1547 void LoadIsolate(Register result); |
1548 | 1548 |
1549 void LoadClassId(Register result, Register object); | 1549 void LoadClassId(Register result, Register object); |
1550 void LoadClassById(Register result, Register class_id); | 1550 void LoadClassById(Register result, Register class_id); |
1551 void LoadClass(Register result, Register object); | 1551 void LoadClass(Register result, Register object); |
| 1552 void LoadClassIdMayBeSmi(Register result, Register object); |
1552 void LoadTaggedClassIdMayBeSmi(Register result, Register object); | 1553 void LoadTaggedClassIdMayBeSmi(Register result, Register object); |
1553 | 1554 |
1554 void ComputeRange(Register result, | 1555 void ComputeRange(Register result, |
1555 Register value, | 1556 Register value, |
1556 Label* miss); | 1557 Label* miss); |
1557 | 1558 |
1558 void UpdateRangeFeedback(Register value, | 1559 void UpdateRangeFeedback(Register value, |
1559 intptr_t index, | 1560 intptr_t index, |
1560 Register ic_data, | 1561 Register ic_data, |
1561 Register scratch, | 1562 Register scratch, |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1749 Register value, | 1750 Register value, |
1750 Label* no_update); | 1751 Label* no_update); |
1751 | 1752 |
1752 DISALLOW_ALLOCATION(); | 1753 DISALLOW_ALLOCATION(); |
1753 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1754 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1754 }; | 1755 }; |
1755 | 1756 |
1756 } // namespace dart | 1757 } // namespace dart |
1757 | 1758 |
1758 #endif // VM_ASSEMBLER_MIPS_H_ | 1759 #endif // VM_ASSEMBLER_MIPS_H_ |
OLD | NEW |