| 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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 // Load and Store. May clobber IP. | 543 // Load and Store. May clobber IP. |
| 544 void LoadImmediate(Register rd, int32_t value, Condition cond = AL); | 544 void LoadImmediate(Register rd, int32_t value, Condition cond = AL); |
| 545 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); | 545 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); |
| 546 void LoadDImmediate(DRegister dd, double value, | 546 void LoadDImmediate(DRegister dd, double value, |
| 547 Register scratch, Condition cond = AL); | 547 Register scratch, Condition cond = AL); |
| 548 | 548 |
| 549 void MarkExceptionHandler(Label* label); | 549 void MarkExceptionHandler(Label* label); |
| 550 | 550 |
| 551 void Drop(intptr_t stack_elements); | 551 void Drop(intptr_t stack_elements); |
| 552 | 552 |
| 553 void LoadPoolPointer(); |
| 554 |
| 553 void LoadObject(Register rd, const Object& object); | 555 void LoadObject(Register rd, const Object& object); |
| 554 void PushObject(const Object& object); | 556 void PushObject(const Object& object); |
| 555 void CompareObject(Register rn, const Object& object); | 557 void CompareObject(Register rn, const Object& object); |
| 556 | 558 |
| 557 void StoreIntoObject(Register object, // Object we are storing into. | 559 void StoreIntoObject(Register object, // Object we are storing into. |
| 558 const Address& dest, // Where we are storing into. | 560 const Address& dest, // Where we are storing into. |
| 559 Register value, // Value we are storing. | 561 Register value, // Value we are storing. |
| 560 bool can_value_be_smi = true); | 562 bool can_value_be_smi = true); |
| 561 | 563 |
| 562 void StoreIntoObjectNoBarrier(Register object, | 564 void StoreIntoObjectNoBarrier(Register object, |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 Register value, | 793 Register value, |
| 792 Label* no_update); | 794 Label* no_update); |
| 793 | 795 |
| 794 DISALLOW_ALLOCATION(); | 796 DISALLOW_ALLOCATION(); |
| 795 DISALLOW_COPY_AND_ASSIGN(Assembler); | 797 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 796 }; | 798 }; |
| 797 | 799 |
| 798 } // namespace dart | 800 } // namespace dart |
| 799 | 801 |
| 800 #endif // VM_ASSEMBLER_ARM_H_ | 802 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |