| 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 "src/arm/codegen-arm.h" |
| 6 |
| 5 #if V8_TARGET_ARCH_ARM | 7 #if V8_TARGET_ARCH_ARM |
| 6 | 8 |
| 7 #include "src/arm/simulator-arm.h" | 9 #include "src/arm/simulator-arm.h" |
| 8 #include "src/codegen.h" | 10 #include "src/codegen.h" |
| 9 #include "src/macro-assembler.h" | 11 #include "src/macro-assembler.h" |
| 10 | 12 |
| 11 namespace v8 { | 13 namespace v8 { |
| 12 namespace internal { | 14 namespace internal { |
| 13 | 15 |
| 14 | 16 |
| (...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 patcher.masm()->ldr(pc, MemOperand(pc, -4)); | 942 patcher.masm()->ldr(pc, MemOperand(pc, -4)); |
| 941 patcher.masm()->emit_code_stub_address(stub); | 943 patcher.masm()->emit_code_stub_address(stub); |
| 942 } | 944 } |
| 943 } | 945 } |
| 944 | 946 |
| 945 | 947 |
| 946 } // namespace internal | 948 } // namespace internal |
| 947 } // namespace v8 | 949 } // namespace v8 |
| 948 | 950 |
| 949 #endif // V8_TARGET_ARCH_ARM | 951 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |