OLD | NEW |
1 // Copyright (c) 2011, 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 |
11 | 11 |
12 #include "vm/assert.h" | 12 #include "platform/assert.h" |
13 #include "vm/constants_arm.h" | 13 #include "vm/constants_arm.h" |
14 | 14 |
15 namespace dart { | 15 namespace dart { |
16 | 16 |
17 #if defined(TESTING) || defined(DEBUG) | 17 #if defined(TESTING) || defined(DEBUG) |
18 | 18 |
19 #define CHECK_STACK_ALIGNMENT { \ | 19 #define CHECK_STACK_ALIGNMENT { \ |
20 UNIMPLEMENTED(); \ | 20 UNIMPLEMENTED(); \ |
21 } | 21 } |
22 | 22 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 private: | 111 private: |
112 ZoneGrowableArray<int>* pointer_offsets_; | 112 ZoneGrowableArray<int>* pointer_offsets_; |
113 DISALLOW_ALLOCATION(); | 113 DISALLOW_ALLOCATION(); |
114 DISALLOW_COPY_AND_ASSIGN(Assembler); | 114 DISALLOW_COPY_AND_ASSIGN(Assembler); |
115 }; | 115 }; |
116 | 116 |
117 } // namespace dart | 117 } // namespace dart |
118 | 118 |
119 #endif // VM_ASSEMBLER_ARM_H_ | 119 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |