| 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 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_ | 5 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_ |
| 6 #define V8_ARM64_ASSEMBLER_ARM64_H_ | 6 #define V8_ARM64_ASSEMBLER_ARM64_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| 11 #include "src/arm64/instructions-arm64.h" |
| 12 #include "src/assembler.h" |
| 11 #include "src/cpu.h" | 13 #include "src/cpu.h" |
| 12 #include "src/globals.h" | 14 #include "src/globals.h" |
| 15 #include "src/serialize.h" |
| 13 #include "src/utils.h" | 16 #include "src/utils.h" |
| 14 #include "src/assembler.h" | |
| 15 #include "src/serialize.h" | |
| 16 #include "src/arm64/instructions-arm64.h" | |
| 17 | 17 |
| 18 | 18 |
| 19 namespace v8 { | 19 namespace v8 { |
| 20 namespace internal { | 20 namespace internal { |
| 21 | 21 |
| 22 | 22 |
| 23 // ----------------------------------------------------------------------------- | 23 // ----------------------------------------------------------------------------- |
| 24 // Registers. | 24 // Registers. |
| 25 #define REGISTER_CODE_LIST(R) \ | 25 #define REGISTER_CODE_LIST(R) \ |
| 26 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ | 26 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ |
| (...skipping 2220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2247 class EnsureSpace BASE_EMBEDDED { | 2247 class EnsureSpace BASE_EMBEDDED { |
| 2248 public: | 2248 public: |
| 2249 explicit EnsureSpace(Assembler* assembler) { | 2249 explicit EnsureSpace(Assembler* assembler) { |
| 2250 assembler->CheckBufferSpace(); | 2250 assembler->CheckBufferSpace(); |
| 2251 } | 2251 } |
| 2252 }; | 2252 }; |
| 2253 | 2253 |
| 2254 } } // namespace v8::internal | 2254 } } // namespace v8::internal |
| 2255 | 2255 |
| 2256 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ | 2256 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ |
| OLD | NEW |