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 PushObject(const Object& object); | 1542 void PushObject(const Object& object); |
1543 | 1543 |
1544 void LoadIsolate(Register result); | 1544 void LoadIsolate(Register result); |
1545 | 1545 |
1546 void LoadClassId(Register result, Register object); | 1546 void LoadClassId(Register result, Register object); |
1547 void LoadClassById(Register result, Register class_id); | 1547 void LoadClassById(Register result, Register class_id); |
1548 void LoadClass(Register result, Register object); | 1548 void LoadClass(Register result, Register object); |
1549 void LoadClassIdMayBeSmi(Register result, Register object); | 1549 void LoadClassIdMayBeSmi(Register result, Register object); |
1550 void LoadTaggedClassIdMayBeSmi(Register result, Register object); | 1550 void LoadTaggedClassIdMayBeSmi(Register result, Register object); |
1551 | 1551 |
1552 void ComputeRange(Register result, | |
1553 Register value, | |
1554 Label* miss); | |
1555 | |
1556 void UpdateRangeFeedback(Register value, | |
1557 intptr_t index, | |
1558 Register ic_data, | |
1559 Register scratch, | |
1560 Label* miss); | |
1561 | |
1562 void StoreIntoObject(Register object, // Object we are storing into. | 1552 void StoreIntoObject(Register object, // Object we are storing into. |
1563 const Address& dest, // Where we are storing into. | 1553 const Address& dest, // Where we are storing into. |
1564 Register value, // Value we are storing. | 1554 Register value, // Value we are storing. |
1565 bool can_value_be_smi = true); | 1555 bool can_value_be_smi = true); |
1566 void StoreIntoObjectOffset(Register object, | 1556 void StoreIntoObjectOffset(Register object, |
1567 int32_t offset, | 1557 int32_t offset, |
1568 Register value, | 1558 Register value, |
1569 bool can_value_be_smi = true); | 1559 bool can_value_be_smi = true); |
1570 | 1560 |
1571 void StoreIntoObjectNoBarrier(Register object, | 1561 void StoreIntoObjectNoBarrier(Register object, |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1759 Register value, | 1749 Register value, |
1760 Label* no_update); | 1750 Label* no_update); |
1761 | 1751 |
1762 DISALLOW_ALLOCATION(); | 1752 DISALLOW_ALLOCATION(); |
1763 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1753 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1764 }; | 1754 }; |
1765 | 1755 |
1766 } // namespace dart | 1756 } // namespace dart |
1767 | 1757 |
1768 #endif // VM_ASSEMBLER_MIPS_H_ | 1758 #endif // VM_ASSEMBLER_MIPS_H_ |
OLD | NEW |