| 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 #include "vm/globals.h" // NOLINT | 5 #include "vm/globals.h" // NOLINT |
| 6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 7 | 7 |
| 8 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
| 9 #include "vm/cpu.h" | 9 #include "vm/cpu.h" |
| 10 #include "vm/longjump.h" | 10 #include "vm/longjump.h" |
| 11 #include "vm/runtime_entry.h" | 11 #include "vm/runtime_entry.h" |
| 12 #include "vm/simulator.h" | 12 #include "vm/simulator.h" |
| 13 #include "vm/stack_frame.h" | 13 #include "vm/stack_frame.h" |
| 14 #include "vm/stub_code.h" | 14 #include "vm/stub_code.h" |
| 15 | 15 |
| 16 // An extra check since we are assuming the existence of /proc/cpuinfo below. | 16 // An extra check since we are assuming the existence of /proc/cpuinfo below. |
| 17 #if !defined(USING_SIMULATOR) && !defined(__linux__) && !defined(ANDROID) && \ | 17 #if !defined(USING_SIMULATOR) && !defined(__linux__) && !defined(ANDROID) && \ |
| 18 !TARGET_OS_IOS | 18 !HOST_OS_IOS |
| 19 #error ARM cross-compile only supported on Linux | 19 #error ARM cross-compile only supported on Linux |
| 20 #endif | 20 #endif |
| 21 | 21 |
| 22 namespace dart { | 22 namespace dart { |
| 23 | 23 |
| 24 DECLARE_FLAG(bool, check_code_pointer); | 24 DECLARE_FLAG(bool, check_code_pointer); |
| 25 DECLARE_FLAG(bool, inline_alloc); | 25 DECLARE_FLAG(bool, inline_alloc); |
| 26 | 26 |
| 27 uint32_t Address::encoding3() const { | 27 uint32_t Address::encoding3() const { |
| 28 if (kind_ == Immediate) { | 28 if (kind_ == Immediate) { |
| (...skipping 3702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3731 | 3731 |
| 3732 | 3732 |
| 3733 const char* Assembler::FpuRegisterName(FpuRegister reg) { | 3733 const char* Assembler::FpuRegisterName(FpuRegister reg) { |
| 3734 ASSERT((0 <= reg) && (reg < kNumberOfFpuRegisters)); | 3734 ASSERT((0 <= reg) && (reg < kNumberOfFpuRegisters)); |
| 3735 return fpu_reg_names[reg]; | 3735 return fpu_reg_names[reg]; |
| 3736 } | 3736 } |
| 3737 | 3737 |
| 3738 } // namespace dart | 3738 } // namespace dart |
| 3739 | 3739 |
| 3740 #endif // defined TARGET_ARCH_ARM | 3740 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |