OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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/js-create-lowering.h" | 5 #include "src/compiler/js-create-lowering.h" |
6 #include "src/code-factory.h" | 6 #include "src/code-factory.h" |
7 #include "src/compilation-dependencies.h" | 7 #include "src/compilation-dependencies.h" |
8 #include "src/compiler/access-builder.h" | 8 #include "src/compiler/access-builder.h" |
9 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
10 #include "src/compiler/js-operator.h" | 10 #include "src/compiler/js-operator.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 &machine); | 39 &machine); |
40 // TODO(titzer): mock the GraphReducer here for better unit testing. | 40 // TODO(titzer): mock the GraphReducer here for better unit testing. |
41 GraphReducer graph_reducer(zone(), graph()); | 41 GraphReducer graph_reducer(zone(), graph()); |
42 JSCreateLowering reducer(&graph_reducer, &deps_, &jsgraph, | 42 JSCreateLowering reducer(&graph_reducer, &deps_, &jsgraph, |
43 MaybeHandle<LiteralsArray>(), native_context(), | 43 MaybeHandle<LiteralsArray>(), native_context(), |
44 zone()); | 44 zone()); |
45 return reducer.Reduce(node); | 45 return reducer.Reduce(node); |
46 } | 46 } |
47 | 47 |
48 Node* FrameState(Handle<SharedFunctionInfo> shared, Node* outer_frame_state) { | 48 Node* FrameState(Handle<SharedFunctionInfo> shared, Node* outer_frame_state) { |
49 Node* state_values = graph()->NewNode(common()->StateValues(0)); | 49 Node* state_values = |
| 50 graph()->NewNode(common()->StateValues(0, SparseInputMask::Dense())); |
50 return graph()->NewNode( | 51 return graph()->NewNode( |
51 common()->FrameState( | 52 common()->FrameState( |
52 BailoutId::None(), OutputFrameStateCombine::Ignore(), | 53 BailoutId::None(), OutputFrameStateCombine::Ignore(), |
53 common()->CreateFrameStateFunctionInfo( | 54 common()->CreateFrameStateFunctionInfo( |
54 FrameStateType::kJavaScriptFunction, 1, 0, shared)), | 55 FrameStateType::kJavaScriptFunction, 1, 0, shared)), |
55 state_values, state_values, state_values, NumberConstant(0), | 56 state_values, state_values, state_values, NumberConstant(0), |
56 UndefinedConstant(), outer_frame_state); | 57 UndefinedConstant(), outer_frame_state); |
57 } | 58 } |
58 | 59 |
59 JSOperatorBuilder* javascript() { return &javascript_; } | 60 JSOperatorBuilder* javascript() { return &javascript_; } |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 EXPECT_THAT(r.replacement(), | 211 EXPECT_THAT(r.replacement(), |
211 IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor( | 212 IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor( |
212 Context::MIN_CONTEXT_SLOTS + 1)), | 213 Context::MIN_CONTEXT_SLOTS + 1)), |
213 IsBeginRegion(_), control), | 214 IsBeginRegion(_), control), |
214 _)); | 215 _)); |
215 } | 216 } |
216 | 217 |
217 } // namespace compiler | 218 } // namespace compiler |
218 } // namespace internal | 219 } // namespace internal |
219 } // namespace v8 | 220 } // namespace v8 |
OLD | NEW |