| 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_ARM_H_ | 5 #ifndef VM_ASSEMBLER_ARM_H_ |
| 6 #define VM_ASSEMBLER_ARM_H_ | 6 #define VM_ASSEMBLER_ARM_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_arm.h directly; use assembler.h instead. | 9 #error Do not include assembler_arm.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 int32_t offset, | 651 int32_t offset, |
| 652 Register value); | 652 Register value); |
| 653 void StoreIntoObjectNoBarrier(Register object, | 653 void StoreIntoObjectNoBarrier(Register object, |
| 654 const Address& dest, | 654 const Address& dest, |
| 655 const Object& value); | 655 const Object& value); |
| 656 void StoreIntoObjectNoBarrierOffset(Register object, | 656 void StoreIntoObjectNoBarrierOffset(Register object, |
| 657 int32_t offset, | 657 int32_t offset, |
| 658 const Object& value); | 658 const Object& value); |
| 659 | 659 |
| 660 void LoadClassId(Register result, Register object, Condition cond = AL); | 660 void LoadClassId(Register result, Register object, Condition cond = AL); |
| 661 void LoadClassById(Register result, Register class_id); | 661 void LoadClassById(Register result, Register class_id, Isolate* isolate); |
| 662 void LoadClass(Register result, Register object, Register scratch); | 662 void LoadClass(Register result, |
| 663 Register object, |
| 664 Register scratch, |
| 665 Isolate* isolate); |
| 663 void CompareClassId(Register object, intptr_t class_id, Register scratch); | 666 void CompareClassId(Register object, intptr_t class_id, Register scratch); |
| 664 void LoadTaggedClassIdMayBeSmi(Register result, Register object); | 667 void LoadTaggedClassIdMayBeSmi(Register result, Register object); |
| 665 | 668 |
| 666 void LoadWordFromPoolOffset(Register rd, int32_t offset, Condition cond = AL); | 669 void LoadWordFromPoolOffset(Register rd, int32_t offset, Condition cond = AL); |
| 667 void LoadFromOffset(OperandSize type, | 670 void LoadFromOffset(OperandSize type, |
| 668 Register reg, | 671 Register reg, |
| 669 Register base, | 672 Register base, |
| 670 int32_t offset, | 673 int32_t offset, |
| 671 Condition cond = AL); | 674 Condition cond = AL); |
| 672 void StoreToOffset(OperandSize type, | 675 void StoreToOffset(OperandSize type, |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 Register value, | 999 Register value, |
| 997 Label* no_update); | 1000 Label* no_update); |
| 998 | 1001 |
| 999 DISALLOW_ALLOCATION(); | 1002 DISALLOW_ALLOCATION(); |
| 1000 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1003 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1001 }; | 1004 }; |
| 1002 | 1005 |
| 1003 } // namespace dart | 1006 } // namespace dart |
| 1004 | 1007 |
| 1005 #endif // VM_ASSEMBLER_ARM_H_ | 1008 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |