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 #include <memory> | 9 #include <memory> |
10 | 10 |
11 // Clients of this interface shouldn't depend on lots of compiler internals. | 11 // Clients of this interface shouldn't depend on lots of compiler internals. |
12 // Do not include anything from src/compiler here! | 12 // Do not include anything from src/compiler here! |
13 #include "src/allocation.h" | 13 #include "src/allocation.h" |
14 #include "src/builtins/builtins.h" | 14 #include "src/builtins/builtins.h" |
15 #include "src/heap/heap.h" | 15 #include "src/heap/heap.h" |
16 #include "src/machine-type.h" | 16 #include "src/machine-type.h" |
17 #include "src/runtime/runtime.h" | 17 #include "src/runtime/runtime.h" |
18 #include "src/zone-containers.h" | 18 #include "src/zone/zone-containers.h" |
19 | 19 |
20 namespace v8 { | 20 namespace v8 { |
21 namespace internal { | 21 namespace internal { |
22 | 22 |
23 class Callable; | 23 class Callable; |
24 class CallInterfaceDescriptor; | 24 class CallInterfaceDescriptor; |
25 class Isolate; | 25 class Isolate; |
26 class Factory; | 26 class Factory; |
27 class Zone; | 27 class Zone; |
28 | 28 |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 // Map of variables to the list of value nodes that have been added from each | 498 // Map of variables to the list of value nodes that have been added from each |
499 // merge path in their order of merging. | 499 // merge path in their order of merging. |
500 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 500 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
501 }; | 501 }; |
502 | 502 |
503 } // namespace compiler | 503 } // namespace compiler |
504 } // namespace internal | 504 } // namespace internal |
505 } // namespace v8 | 505 } // namespace v8 |
506 | 506 |
507 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 507 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |