| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 void CompareImmediate(Register rn, int32_t value, Condition cond = AL); | 544 void CompareImmediate(Register rn, int32_t value, Condition cond = AL); |
| 545 | 545 |
| 546 // Load and Store. May clobber IP. | 546 // Load and Store. May clobber IP. |
| 547 void LoadImmediate(Register rd, int32_t value, Condition cond = AL); | 547 void LoadImmediate(Register rd, int32_t value, Condition cond = AL); |
| 548 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); | 548 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); |
| 549 void LoadDImmediate(DRegister dd, double value, | 549 void LoadDImmediate(DRegister dd, double value, |
| 550 Register scratch, Condition cond = AL); | 550 Register scratch, Condition cond = AL); |
| 551 void MarkExceptionHandler(Label* label); | 551 void MarkExceptionHandler(Label* label); |
| 552 void Drop(intptr_t stack_elements); | 552 void Drop(intptr_t stack_elements); |
| 553 void LoadObject(Register rd, const Object& object); | 553 void LoadObject(Register rd, const Object& object); |
| 554 void PushObject(const Object& object); |
| 554 void LoadFromOffset(LoadOperandType type, | 555 void LoadFromOffset(LoadOperandType type, |
| 555 Register reg, | 556 Register reg, |
| 556 Register base, | 557 Register base, |
| 557 int32_t offset, | 558 int32_t offset, |
| 558 Condition cond = AL); | 559 Condition cond = AL); |
| 559 void StoreToOffset(StoreOperandType type, | 560 void StoreToOffset(StoreOperandType type, |
| 560 Register reg, | 561 Register reg, |
| 561 Register base, | 562 Register base, |
| 562 int32_t offset, | 563 int32_t offset, |
| 563 Condition cond = AL); | 564 Condition cond = AL); |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 return *reg1 - *reg2; | 769 return *reg1 - *reg2; |
| 769 } | 770 } |
| 770 | 771 |
| 771 DISALLOW_ALLOCATION(); | 772 DISALLOW_ALLOCATION(); |
| 772 DISALLOW_COPY_AND_ASSIGN(Assembler); | 773 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 773 }; | 774 }; |
| 774 | 775 |
| 775 } // namespace dart | 776 } // namespace dart |
| 776 | 777 |
| 777 #endif // VM_ASSEMBLER_ARM_H_ | 778 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |