| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); | 621 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); |
| 622 void LoadDImmediate(DRegister dd, double value, | 622 void LoadDImmediate(DRegister dd, double value, |
| 623 Register scratch, Condition cond = AL); | 623 Register scratch, Condition cond = AL); |
| 624 | 624 |
| 625 void MarkExceptionHandler(Label* label); | 625 void MarkExceptionHandler(Label* label); |
| 626 | 626 |
| 627 void Drop(intptr_t stack_elements); | 627 void Drop(intptr_t stack_elements); |
| 628 | 628 |
| 629 void LoadPoolPointer(); | 629 void LoadPoolPointer(); |
| 630 | 630 |
| 631 void LoadIsolate(Register rd); |
| 632 |
| 631 void LoadObject(Register rd, const Object& object, Condition cond = AL); | 633 void LoadObject(Register rd, const Object& object, Condition cond = AL); |
| 632 void PushObject(const Object& object); | 634 void PushObject(const Object& object); |
| 633 void CompareObject(Register rn, const Object& object); | 635 void CompareObject(Register rn, const Object& object); |
| 634 | 636 |
| 635 void StoreIntoObject(Register object, // Object we are storing into. | 637 void StoreIntoObject(Register object, // Object we are storing into. |
| 636 const Address& dest, // Where we are storing into. | 638 const Address& dest, // Where we are storing into. |
| 637 Register value, // Value we are storing. | 639 Register value, // Value we are storing. |
| 638 bool can_value_be_smi = true); | 640 bool can_value_be_smi = true); |
| 639 void StoreIntoObjectOffset(Register object, | 641 void StoreIntoObjectOffset(Register object, |
| 640 int32_t offset, | 642 int32_t offset, |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 Register value, | 995 Register value, |
| 994 Label* no_update); | 996 Label* no_update); |
| 995 | 997 |
| 996 DISALLOW_ALLOCATION(); | 998 DISALLOW_ALLOCATION(); |
| 997 DISALLOW_COPY_AND_ASSIGN(Assembler); | 999 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 998 }; | 1000 }; |
| 999 | 1001 |
| 1000 } // namespace dart | 1002 } // namespace dart |
| 1001 | 1003 |
| 1002 #endif // VM_ASSEMBLER_ARM_H_ | 1004 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |