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/graph-unittest.h" | 5 #include "src/compiler/graph-unittest.h" |
6 #include "src/compiler/js-graph.h" | 6 #include "src/compiler/js-graph.h" |
7 #include "src/compiler/simplified-operator.h" | 7 #include "src/compiler/simplified-operator.h" |
8 #include "src/compiler/simplified-operator-reducer.h" | 8 #include "src/compiler/simplified-operator-reducer.h" |
9 #include "src/compiler/typer.h" | 9 #include "src/compiler/typer.h" |
10 #include "src/conversions.h" | 10 #include "src/conversions.h" |
11 | 11 |
12 namespace v8 { | 12 namespace v8 { |
13 namespace internal { | 13 namespace internal { |
14 namespace compiler { | 14 namespace compiler { |
15 | 15 |
16 class SimplifiedOperatorReducerTest : public GraphTest { | 16 class SimplifiedOperatorReducerTest : public GraphTest { |
17 public: | 17 public: |
18 explicit SimplifiedOperatorReducerTest(int num_parameters = 1) | 18 explicit SimplifiedOperatorReducerTest(int num_parameters = 1) |
19 : GraphTest(num_parameters), simplified_(zone()) {} | 19 : GraphTest(num_parameters), simplified_(zone()) {} |
20 virtual ~SimplifiedOperatorReducerTest() {} | 20 virtual ~SimplifiedOperatorReducerTest() {} |
21 | 21 |
22 protected: | 22 protected: |
23 Reduction Reduce(Node* node) { | 23 Reduction Reduce(Node* node) { |
24 Typer typer(zone()); | 24 Typer typer(zone()); |
25 MachineOperatorBuilder machine; | 25 MachineOperatorBuilder machine; |
26 JSOperatorBuilder javascript(zone()); | 26 JSOperatorBuilder javascript(zone()); |
27 JSGraph jsgraph(graph(), common(), &javascript, &typer, &machine); | 27 JSGraph jsgraph(graph(), common(), &javascript, &typer, &machine); |
28 SimplifiedOperatorReducer reducer(&jsgraph, &machine); | 28 SimplifiedOperatorReducer reducer(&jsgraph); |
29 return reducer.Reduce(node); | 29 return reducer.Reduce(node); |
30 } | 30 } |
31 | 31 |
32 SimplifiedOperatorBuilder* simplified() { return &simplified_; } | 32 SimplifiedOperatorBuilder* simplified() { return &simplified_; } |
33 | 33 |
34 private: | 34 private: |
35 SimplifiedOperatorBuilder simplified_; | 35 SimplifiedOperatorBuilder simplified_; |
36 }; | 36 }; |
37 | 37 |
38 | 38 |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 Reduce(graph()->NewNode(simplified()->ChangeUint32ToTagged(), | 474 Reduce(graph()->NewNode(simplified()->ChangeUint32ToTagged(), |
475 Int32Constant(bit_cast<int32_t>(n)))); | 475 Int32Constant(bit_cast<int32_t>(n)))); |
476 ASSERT_TRUE(reduction.Changed()); | 476 ASSERT_TRUE(reduction.Changed()); |
477 EXPECT_THAT(reduction.replacement(), IsNumberConstant(FastUI2D(n))); | 477 EXPECT_THAT(reduction.replacement(), IsNumberConstant(FastUI2D(n))); |
478 } | 478 } |
479 } | 479 } |
480 | 480 |
481 } // namespace compiler | 481 } // namespace compiler |
482 } // namespace internal | 482 } // namespace internal |
483 } // namespace v8 | 483 } // namespace v8 |
OLD | NEW |