OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/interpreter-assembler.h" | 5 #include "src/compiler/interpreter-assembler.h" |
6 | 6 |
7 #include <ostream> | 7 #include <ostream> |
8 | 8 |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/compiler/graph.h" | 10 #include "src/compiler/graph.h" |
11 #include "src/compiler/instruction-selector.h" | 11 #include "src/compiler/instruction-selector.h" |
12 #include "src/compiler/linkage.h" | 12 #include "src/compiler/linkage.h" |
13 #include "src/compiler/machine-type.h" | |
14 #include "src/compiler/pipeline.h" | 13 #include "src/compiler/pipeline.h" |
15 #include "src/compiler/raw-machine-assembler.h" | 14 #include "src/compiler/raw-machine-assembler.h" |
16 #include "src/compiler/schedule.h" | 15 #include "src/compiler/schedule.h" |
17 #include "src/frames.h" | 16 #include "src/frames.h" |
18 #include "src/interface-descriptors.h" | 17 #include "src/interface-descriptors.h" |
19 #include "src/interpreter/bytecodes.h" | 18 #include "src/interpreter/bytecodes.h" |
| 19 #include "src/machine-type.h" |
20 #include "src/macro-assembler.h" | 20 #include "src/macro-assembler.h" |
21 #include "src/zone.h" | 21 #include "src/zone.h" |
22 | 22 |
23 namespace v8 { | 23 namespace v8 { |
24 namespace internal { | 24 namespace internal { |
25 namespace compiler { | 25 namespace compiler { |
26 | 26 |
27 | 27 |
28 InterpreterAssembler::InterpreterAssembler(Isolate* isolate, Zone* zone, | 28 InterpreterAssembler::InterpreterAssembler(Isolate* isolate, Zone* zone, |
29 interpreter::Bytecode bytecode) | 29 interpreter::Bytecode bytecode) |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 return raw_assembler_->call_descriptor(); | 652 return raw_assembler_->call_descriptor(); |
653 } | 653 } |
654 | 654 |
655 | 655 |
656 Zone* InterpreterAssembler::zone() { return raw_assembler_->zone(); } | 656 Zone* InterpreterAssembler::zone() { return raw_assembler_->zone(); } |
657 | 657 |
658 | 658 |
659 } // namespace compiler | 659 } // namespace compiler |
660 } // namespace internal | 660 } // namespace internal |
661 } // namespace v8 | 661 } // namespace v8 |
OLD | NEW |