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 #include <stdlib.h> | 5 #include <stdlib.h> |
6 #include <cmath> | 6 #include <cmath> |
7 #include <cstdarg> | 7 #include <cstdarg> |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #if V8_TARGET_ARCH_ARM64 | 10 #if V8_TARGET_ARCH_ARM64 |
11 | 11 |
12 #include "src/disasm.h" | |
13 #include "src/assembler.h" | |
14 #include "src/arm64/decoder-arm64-inl.h" | 12 #include "src/arm64/decoder-arm64-inl.h" |
15 #include "src/arm64/simulator-arm64.h" | 13 #include "src/arm64/simulator-arm64.h" |
| 14 #include "src/assembler.h" |
| 15 #include "src/disasm.h" |
16 #include "src/macro-assembler.h" | 16 #include "src/macro-assembler.h" |
17 | 17 |
18 namespace v8 { | 18 namespace v8 { |
19 namespace internal { | 19 namespace internal { |
20 | 20 |
21 #if defined(USE_SIMULATOR) | 21 #if defined(USE_SIMULATOR) |
22 | 22 |
23 | 23 |
24 // This macro provides a platform independent use of sscanf. The reason for | 24 // This macro provides a platform independent use of sscanf. The reason for |
25 // SScanF not being implemented in a platform independent way through | 25 // SScanF not being implemented in a platform independent way through |
(...skipping 3701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3727 | 3727 |
3728 delete[] format; | 3728 delete[] format; |
3729 } | 3729 } |
3730 | 3730 |
3731 | 3731 |
3732 #endif // USE_SIMULATOR | 3732 #endif // USE_SIMULATOR |
3733 | 3733 |
3734 } } // namespace v8::internal | 3734 } } // namespace v8::internal |
3735 | 3735 |
3736 #endif // V8_TARGET_ARCH_ARM64 | 3736 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |