| 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 "cpu.h" | 11 #include "src/cpu.h" |
| 12 #include "globals.h" | 12 #include "src/globals.h" |
| 13 #include "utils.h" | 13 #include "src/utils.h" |
| 14 #include "assembler.h" | 14 #include "src/assembler.h" |
| 15 #include "serialize.h" | 15 #include "src/serialize.h" |
| 16 #include "arm64/instructions-arm64.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 2211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2238 class EnsureSpace BASE_EMBEDDED { | 2238 class EnsureSpace BASE_EMBEDDED { |
| 2239 public: | 2239 public: |
| 2240 explicit EnsureSpace(Assembler* assembler) { | 2240 explicit EnsureSpace(Assembler* assembler) { |
| 2241 assembler->CheckBufferSpace(); | 2241 assembler->CheckBufferSpace(); |
| 2242 } | 2242 } |
| 2243 }; | 2243 }; |
| 2244 | 2244 |
| 2245 } } // namespace v8::internal | 2245 } } // namespace v8::internal |
| 2246 | 2246 |
| 2247 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ | 2247 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ |
| OLD | NEW |