| 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 1506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1517 // frame_space bytes are reserved under it. | 1517 // frame_space bytes are reserved under it. |
| 1518 void EnterCallRuntimeFrame(intptr_t frame_space); | 1518 void EnterCallRuntimeFrame(intptr_t frame_space); |
| 1519 void LeaveCallRuntimeFrame(); | 1519 void LeaveCallRuntimeFrame(); |
| 1520 | 1520 |
| 1521 void LoadWordFromPoolOffset(Register rd, int32_t offset); | 1521 void LoadWordFromPoolOffset(Register rd, int32_t offset); |
| 1522 void LoadObject(Register rd, const Object& object); | 1522 void LoadObject(Register rd, const Object& object); |
| 1523 void LoadUniqueObject(Register rd, const Object& object); | 1523 void LoadUniqueObject(Register rd, const Object& object); |
| 1524 void LoadExternalLabel(Register rd, | 1524 void LoadExternalLabel(Register rd, |
| 1525 const ExternalLabel* label, | 1525 const ExternalLabel* label, |
| 1526 Patchability patchable); | 1526 Patchability patchable); |
| 1527 void LoadNativeEntry(Register rd, |
| 1528 const ExternalLabel* label, |
| 1529 Patchability patchable); |
| 1527 void PushObject(const Object& object); | 1530 void PushObject(const Object& object); |
| 1528 | 1531 |
| 1529 void LoadIsolate(Register result); | 1532 void LoadIsolate(Register result); |
| 1530 | 1533 |
| 1531 void LoadClassId(Register result, Register object); | 1534 void LoadClassId(Register result, Register object); |
| 1532 void LoadClassById(Register result, Register class_id); | 1535 void LoadClassById(Register result, Register class_id); |
| 1533 void LoadClass(Register result, Register object); | 1536 void LoadClass(Register result, Register object); |
| 1534 void LoadClassIdMayBeSmi(Register result, Register object); | 1537 void LoadClassIdMayBeSmi(Register result, Register object); |
| 1535 void LoadTaggedClassIdMayBeSmi(Register result, Register object); | 1538 void LoadTaggedClassIdMayBeSmi(Register result, Register object); |
| 1536 | 1539 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1736 Register value, | 1739 Register value, |
| 1737 Label* no_update); | 1740 Label* no_update); |
| 1738 | 1741 |
| 1739 DISALLOW_ALLOCATION(); | 1742 DISALLOW_ALLOCATION(); |
| 1740 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1743 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1741 }; | 1744 }; |
| 1742 | 1745 |
| 1743 } // namespace dart | 1746 } // namespace dart |
| 1744 | 1747 |
| 1745 #endif // VM_ASSEMBLER_MIPS_H_ | 1748 #endif // VM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |