OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #if V8_TARGET_ARCH_ARM64 | 5 #if V8_TARGET_ARCH_ARM64 |
6 | 6 |
7 #include "src/arm64/frames-arm64.h" | |
8 #include "src/base/bits.h" | 7 #include "src/base/bits.h" |
9 #include "src/base/division-by-constant.h" | 8 #include "src/base/division-by-constant.h" |
10 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
11 #include "src/codegen.h" | 10 #include "src/codegen.h" |
12 #include "src/cpu-profiler.h" | 11 #include "src/cpu-profiler.h" |
13 #include "src/debug/debug.h" | 12 #include "src/debug/debug.h" |
14 #include "src/runtime/runtime.h" | 13 #include "src/runtime/runtime.h" |
15 | 14 |
| 15 #include "src/arm64/frames-arm64.h" |
| 16 #include "src/arm64/macro-assembler-arm64.h" |
| 17 |
16 namespace v8 { | 18 namespace v8 { |
17 namespace internal { | 19 namespace internal { |
18 | 20 |
19 // Define a fake double underscore to use with the ASM_UNIMPLEMENTED macros. | 21 // Define a fake double underscore to use with the ASM_UNIMPLEMENTED macros. |
20 #define __ | 22 #define __ |
21 | 23 |
22 | 24 |
23 MacroAssembler::MacroAssembler(Isolate* arg_isolate, | 25 MacroAssembler::MacroAssembler(Isolate* arg_isolate, |
24 byte * buffer, | 26 byte * buffer, |
25 unsigned buffer_size) | 27 unsigned buffer_size) |
(...skipping 5074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5100 } | 5102 } |
5101 | 5103 |
5102 | 5104 |
5103 #undef __ | 5105 #undef __ |
5104 | 5106 |
5105 | 5107 |
5106 } // namespace internal | 5108 } // namespace internal |
5107 } // namespace v8 | 5109 } // namespace v8 |
5108 | 5110 |
5109 #endif // V8_TARGET_ARCH_ARM64 | 5111 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |