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 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_ |
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_ASSEMBLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 // Clients of this interface shouldn't depend on lots of compiler internals. | 10 // Clients of this interface shouldn't depend on lots of compiler internals. |
11 // Do not include anything from src/compiler here! | 11 // Do not include anything from src/compiler here! |
12 #include "src/allocation.h" | 12 #include "src/allocation.h" |
13 #include "src/builtins.h" | 13 #include "src/builtins/builtins.h" |
14 #include "src/heap/heap.h" | 14 #include "src/heap/heap.h" |
15 #include "src/machine-type.h" | 15 #include "src/machine-type.h" |
16 #include "src/runtime/runtime.h" | 16 #include "src/runtime/runtime.h" |
17 #include "src/zone-containers.h" | 17 #include "src/zone-containers.h" |
18 | 18 |
19 namespace v8 { | 19 namespace v8 { |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 class Callable; | 22 class Callable; |
23 class CallInterfaceDescriptor; | 23 class CallInterfaceDescriptor; |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 // Map of variables to the list of value nodes that have been added from each | 447 // Map of variables to the list of value nodes that have been added from each |
448 // merge path in their order of merging. | 448 // merge path in their order of merging. |
449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
450 }; | 450 }; |
451 | 451 |
452 } // namespace compiler | 452 } // namespace compiler |
453 } // namespace internal | 453 } // namespace internal |
454 } // namespace v8 | 454 } // namespace v8 |
455 | 455 |
456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |