| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // Macros for High-level operations. | 66 // Macros for High-level operations. |
| 67 void AddConstant(Register reg, int value, Condition cond = AL) { | 67 void AddConstant(Register reg, int value, Condition cond = AL) { |
| 68 UNIMPLEMENTED(); | 68 UNIMPLEMENTED(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 // Misc. functionality | 71 // Misc. functionality |
| 72 int CodeSize() const { | 72 int CodeSize() const { |
| 73 UNIMPLEMENTED(); | 73 UNIMPLEMENTED(); |
| 74 return 0; | 74 return 0; |
| 75 } | 75 } |
| 76 int prolog_offset() const { | 76 int prologue_offset() const { |
| 77 UNIMPLEMENTED(); | 77 UNIMPLEMENTED(); |
| 78 return 0; | 78 return 0; |
| 79 } | 79 } |
| 80 const ZoneGrowableArray<int>& GetPointerOffsets() const { | 80 const ZoneGrowableArray<int>& GetPointerOffsets() const { |
| 81 UNIMPLEMENTED(); | 81 UNIMPLEMENTED(); |
| 82 return *pointer_offsets_; | 82 return *pointer_offsets_; |
| 83 } | 83 } |
| 84 void FinalizeInstructions(const MemoryRegion& region) { | 84 void FinalizeInstructions(const MemoryRegion& region) { |
| 85 UNIMPLEMENTED(); | 85 UNIMPLEMENTED(); |
| 86 } | 86 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 97 | 97 |
| 98 private: | 98 private: |
| 99 ZoneGrowableArray<int>* pointer_offsets_; | 99 ZoneGrowableArray<int>* pointer_offsets_; |
| 100 DISALLOW_ALLOCATION(); | 100 DISALLOW_ALLOCATION(); |
| 101 DISALLOW_COPY_AND_ASSIGN(Assembler); | 101 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace dart | 104 } // namespace dart |
| 105 | 105 |
| 106 #endif // VM_ASSEMBLER_ARM_H_ | 106 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |