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/v8.h" | 5 #include "src/v8.h" |
6 #include "test/cctest/cctest.h" | 6 #include "test/cctest/cctest.h" |
7 | 7 |
8 #include "src/compiler/graph-inl.h" | 8 #include "src/compiler/graph-inl.h" |
9 #include "src/compiler/js-typed-lowering.h" | 9 #include "src/compiler/js-typed-lowering.h" |
10 #include "src/compiler/node-properties-inl.h" | 10 #include "src/compiler/node-properties-inl.h" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 Unique<Object> unique = Unique<Object>::CreateUninitialized(constant); | 58 Unique<Object> unique = Unique<Object>::CreateUninitialized(constant); |
59 return graph.NewNode(common.HeapConstant(unique)); | 59 return graph.NewNode(common.HeapConstant(unique)); |
60 } | 60 } |
61 | 61 |
62 Node* EmptyFrameState(Node* context) { | 62 Node* EmptyFrameState(Node* context) { |
63 Node* parameters = graph.NewNode(common.StateValues(0)); | 63 Node* parameters = graph.NewNode(common.StateValues(0)); |
64 Node* locals = graph.NewNode(common.StateValues(0)); | 64 Node* locals = graph.NewNode(common.StateValues(0)); |
65 Node* stack = graph.NewNode(common.StateValues(0)); | 65 Node* stack = graph.NewNode(common.StateValues(0)); |
66 | 66 |
67 Node* state_node = | 67 Node* state_node = |
68 graph.NewNode(common.FrameState(JS_FRAME, BailoutId(0), kIgnoreOutput), | 68 graph.NewNode(common.FrameState(JS_FRAME, BailoutId(0), |
| 69 OutputFrameStateCombine::Ignore()), |
69 parameters, locals, stack, context, UndefinedConstant()); | 70 parameters, locals, stack, context, UndefinedConstant()); |
70 | 71 |
71 return state_node; | 72 return state_node; |
72 } | 73 } |
73 | 74 |
74 Node* reduce(Node* node) { | 75 Node* reduce(Node* node) { |
75 JSGraph jsgraph(&graph, &common, &javascript, &typer, &machine); | 76 JSGraph jsgraph(&graph, &common, &javascript, &typer, &machine); |
76 JSTypedLowering reducer(&jsgraph); | 77 JSTypedLowering reducer(&jsgraph); |
77 Reduction reduction = reducer.Reduce(node); | 78 Reduction reduction = reducer.Reduce(node); |
78 if (reduction.Changed()) return reduction.replacement(); | 79 if (reduction.Changed()) return reduction.replacement(); |
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 CHECK_EQ(p1, r->InputAt(0)); | 1377 CHECK_EQ(p1, r->InputAt(0)); |
1377 CHECK_EQ(p0, r->InputAt(1)); | 1378 CHECK_EQ(p0, r->InputAt(1)); |
1378 } else { | 1379 } else { |
1379 CHECK_EQ(p0, r->InputAt(0)); | 1380 CHECK_EQ(p0, r->InputAt(0)); |
1380 CHECK_EQ(p1, r->InputAt(1)); | 1381 CHECK_EQ(p1, r->InputAt(1)); |
1381 } | 1382 } |
1382 } | 1383 } |
1383 } | 1384 } |
1384 } | 1385 } |
1385 } | 1386 } |
OLD | NEW |