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/common-operator.h" | 5 #include "src/compiler/common-operator.h" |
6 | 6 |
7 #include "src/assembler.h" | 7 #include "src/assembler.h" |
8 #include "src/base/lazy-instance.h" | 8 #include "src/base/lazy-instance.h" |
9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
10 #include "src/compiler/node.h" | 10 #include "src/compiler/node.h" |
11 #include "src/compiler/opcodes.h" | 11 #include "src/compiler/opcodes.h" |
12 #include "src/compiler/operator.h" | 12 #include "src/compiler/operator.h" |
13 #include "src/handles-inl.h" | 13 #include "src/handles-inl.h" |
| 14 #include "src/objects-inl.h" |
14 #include "src/zone/zone.h" | 15 #include "src/zone/zone.h" |
15 | 16 |
16 namespace v8 { | 17 namespace v8 { |
17 namespace internal { | 18 namespace internal { |
18 namespace compiler { | 19 namespace compiler { |
19 | 20 |
20 std::ostream& operator<<(std::ostream& os, BranchHint hint) { | 21 std::ostream& operator<<(std::ostream& os, BranchHint hint) { |
21 switch (hint) { | 22 switch (hint) { |
22 case BranchHint::kNone: | 23 case BranchHint::kNone: |
23 return os << "None"; | 24 return os << "None"; |
(...skipping 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1387 CommonOperatorBuilder::CreateFrameStateFunctionInfo( | 1388 CommonOperatorBuilder::CreateFrameStateFunctionInfo( |
1388 FrameStateType type, int parameter_count, int local_count, | 1389 FrameStateType type, int parameter_count, int local_count, |
1389 Handle<SharedFunctionInfo> shared_info) { | 1390 Handle<SharedFunctionInfo> shared_info) { |
1390 return new (zone()->New(sizeof(FrameStateFunctionInfo))) | 1391 return new (zone()->New(sizeof(FrameStateFunctionInfo))) |
1391 FrameStateFunctionInfo(type, parameter_count, local_count, shared_info); | 1392 FrameStateFunctionInfo(type, parameter_count, local_count, shared_info); |
1392 } | 1393 } |
1393 | 1394 |
1394 } // namespace compiler | 1395 } // namespace compiler |
1395 } // namespace internal | 1396 } // namespace internal |
1396 } // namespace v8 | 1397 } // namespace v8 |
OLD | NEW |