OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 | 6 |
7 #include "src/arm64/frames-arm64.h" | 7 #include "src/arm64/frames-arm64.h" |
8 #include "src/arm64/macro-assembler-arm64.h" | 8 #include "src/arm64/macro-assembler-arm64.h" |
| 9 #include "src/ast/scopes.h" |
9 #include "src/compiler/code-generator-impl.h" | 10 #include "src/compiler/code-generator-impl.h" |
10 #include "src/compiler/gap-resolver.h" | 11 #include "src/compiler/gap-resolver.h" |
11 #include "src/compiler/node-matchers.h" | 12 #include "src/compiler/node-matchers.h" |
12 #include "src/compiler/osr.h" | 13 #include "src/compiler/osr.h" |
13 #include "src/scopes.h" | |
14 | 14 |
15 namespace v8 { | 15 namespace v8 { |
16 namespace internal { | 16 namespace internal { |
17 namespace compiler { | 17 namespace compiler { |
18 | 18 |
19 #define __ masm()-> | 19 #define __ masm()-> |
20 | 20 |
21 | 21 |
22 // Adds Arm64-specific methods to convert InstructionOperands. | 22 // Adds Arm64-specific methods to convert InstructionOperands. |
23 class Arm64OperandConverter final : public InstructionOperandConverter { | 23 class Arm64OperandConverter final : public InstructionOperandConverter { |
(...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1561 padding_size -= kInstructionSize; | 1561 padding_size -= kInstructionSize; |
1562 } | 1562 } |
1563 } | 1563 } |
1564 } | 1564 } |
1565 | 1565 |
1566 #undef __ | 1566 #undef __ |
1567 | 1567 |
1568 } // namespace compiler | 1568 } // namespace compiler |
1569 } // namespace internal | 1569 } // namespace internal |
1570 } // namespace v8 | 1570 } // namespace v8 |
OLD | NEW |