| 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_H_ | 5 #ifndef VM_ASSEMBLER_H_ |
| 6 #define VM_ASSEMBLER_H_ | 6 #define VM_ASSEMBLER_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" |
| 8 #include "vm/allocation.h" | 9 #include "vm/allocation.h" |
| 9 #include "vm/assert.h" | |
| 10 #include "vm/globals.h" | 10 #include "vm/globals.h" |
| 11 #include "vm/growable_array.h" | 11 #include "vm/growable_array.h" |
| 12 #include "vm/object.h" | 12 #include "vm/object.h" |
| 13 | 13 |
| 14 namespace dart { | 14 namespace dart { |
| 15 | 15 |
| 16 // Forward declarations. | 16 // Forward declarations. |
| 17 class Assembler; | 17 class Assembler; |
| 18 class AssemblerFixup; | 18 class AssemblerFixup; |
| 19 class AssemblerBuffer; | 19 class AssemblerBuffer; |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 #include "vm/assembler_ia32.h" | 198 #include "vm/assembler_ia32.h" |
| 199 #elif defined(TARGET_ARCH_X64) | 199 #elif defined(TARGET_ARCH_X64) |
| 200 #include "vm/assembler_x64.h" | 200 #include "vm/assembler_x64.h" |
| 201 #elif defined(TARGET_ARCH_ARM) | 201 #elif defined(TARGET_ARCH_ARM) |
| 202 #include "vm/assembler_arm.h" | 202 #include "vm/assembler_arm.h" |
| 203 #else | 203 #else |
| 204 #error Unknown architecture. | 204 #error Unknown architecture. |
| 205 #endif | 205 #endif |
| 206 | 206 |
| 207 #endif // VM_ASSEMBLER_H_ | 207 #endif // VM_ASSEMBLER_H_ |
| OLD | NEW |