| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdarg.h> | 5 #include <stdarg.h> |
| 6 #include <stdlib.h> | 6 #include <stdlib.h> |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "src/v8.h" | |
| 10 | |
| 11 #if V8_TARGET_ARCH_ARM | 9 #if V8_TARGET_ARCH_ARM |
| 12 | 10 |
| 13 #include "src/arm/constants-arm.h" | 11 #include "src/arm/constants-arm.h" |
| 14 #include "src/arm/simulator-arm.h" | 12 #include "src/arm/simulator-arm.h" |
| 15 #include "src/assembler.h" | 13 #include "src/assembler.h" |
| 16 #include "src/base/bits.h" | 14 #include "src/base/bits.h" |
| 17 #include "src/codegen.h" | 15 #include "src/codegen.h" |
| 18 #include "src/disasm.h" | 16 #include "src/disasm.h" |
| 19 | 17 |
| 20 #if defined(USE_SIMULATOR) | 18 #if defined(USE_SIMULATOR) |
| (...skipping 4129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4150 set_register(sp, current_sp + sizeof(uintptr_t)); | 4148 set_register(sp, current_sp + sizeof(uintptr_t)); |
| 4151 return address; | 4149 return address; |
| 4152 } | 4150 } |
| 4153 | 4151 |
| 4154 } // namespace internal | 4152 } // namespace internal |
| 4155 } // namespace v8 | 4153 } // namespace v8 |
| 4156 | 4154 |
| 4157 #endif // USE_SIMULATOR | 4155 #endif // USE_SIMULATOR |
| 4158 | 4156 |
| 4159 #endif // V8_TARGET_ARCH_ARM | 4157 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |