| 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 "test/cctest/cctest.h" | 5 #include "test/cctest/cctest.h" |
| 6 | 6 |
| 7 #include "src/base/utils/random-number-generator.h" | 7 #include "src/base/utils/random-number-generator.h" |
| 8 #include "src/compiler/graph-inl.h" | 8 #include "src/compiler/graph-inl.h" |
| 9 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
| 10 #include "src/compiler/machine-operator-reducer.h" | 10 #include "src/compiler/machine-operator-reducer.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 | 49 |
| 50 class ReducerTester : public HandleAndZoneScope { | 50 class ReducerTester : public HandleAndZoneScope { |
| 51 public: | 51 public: |
| 52 explicit ReducerTester(int num_parameters = 0) | 52 explicit ReducerTester(int num_parameters = 0) |
| 53 : isolate(main_isolate()), | 53 : isolate(main_isolate()), |
| 54 binop(NULL), | 54 binop(NULL), |
| 55 unop(NULL), | 55 unop(NULL), |
| 56 common(main_zone()), | 56 common(main_zone()), |
| 57 graph(main_zone()), | 57 graph(main_zone()), |
| 58 javascript(main_zone()), |
| 58 typer(main_zone()), | 59 typer(main_zone()), |
| 59 jsgraph(&graph, &common, &typer), | 60 jsgraph(&graph, &common, &javascript, &typer, &machine), |
| 60 maxuint32(Constant<int32_t>(kMaxUInt32)) { | 61 maxuint32(Constant<int32_t>(kMaxUInt32)) { |
| 61 Node* s = graph.NewNode(common.Start(num_parameters)); | 62 Node* s = graph.NewNode(common.Start(num_parameters)); |
| 62 graph.SetStart(s); | 63 graph.SetStart(s); |
| 63 } | 64 } |
| 64 | 65 |
| 65 Isolate* isolate; | 66 Isolate* isolate; |
| 66 const Operator* binop; | 67 const Operator* binop; |
| 67 const Operator* unop; | 68 const Operator* unop; |
| 68 MachineOperatorBuilder machine; | 69 MachineOperatorBuilder machine; |
| 69 CommonOperatorBuilder common; | 70 CommonOperatorBuilder common; |
| 70 Graph graph; | 71 Graph graph; |
| 72 JSOperatorBuilder javascript; |
| 71 Typer typer; | 73 Typer typer; |
| 72 JSGraph jsgraph; | 74 JSGraph jsgraph; |
| 73 Node* maxuint32; | 75 Node* maxuint32; |
| 74 | 76 |
| 75 template <typename T> | 77 template <typename T> |
| 76 Node* Constant(volatile T value) { | 78 Node* Constant(volatile T value) { |
| 77 return graph.NewNode(NewConstantOperator<T>(&common, value)); | 79 return graph.NewNode(NewConstantOperator<T>(&common, value)); |
| 78 } | 80 } |
| 79 | 81 |
| 80 template <typename T> | 82 template <typename T> |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 // TODO(titzer): test MachineOperatorReducer for Int64Mul | 800 // TODO(titzer): test MachineOperatorReducer for Int64Mul |
| 799 // TODO(titzer): test MachineOperatorReducer for Int64UMul | 801 // TODO(titzer): test MachineOperatorReducer for Int64UMul |
| 800 // TODO(titzer): test MachineOperatorReducer for Int64Div | 802 // TODO(titzer): test MachineOperatorReducer for Int64Div |
| 801 // TODO(titzer): test MachineOperatorReducer for Int64UDiv | 803 // TODO(titzer): test MachineOperatorReducer for Int64UDiv |
| 802 // TODO(titzer): test MachineOperatorReducer for Int64Mod | 804 // TODO(titzer): test MachineOperatorReducer for Int64Mod |
| 803 // TODO(titzer): test MachineOperatorReducer for Int64UMod | 805 // TODO(titzer): test MachineOperatorReducer for Int64UMod |
| 804 // TODO(titzer): test MachineOperatorReducer for Int64Neg | 806 // TODO(titzer): test MachineOperatorReducer for Int64Neg |
| 805 // TODO(titzer): test MachineOperatorReducer for ChangeInt32ToFloat64 | 807 // TODO(titzer): test MachineOperatorReducer for ChangeInt32ToFloat64 |
| 806 // TODO(titzer): test MachineOperatorReducer for ChangeFloat64ToInt32 | 808 // TODO(titzer): test MachineOperatorReducer for ChangeFloat64ToInt32 |
| 807 // TODO(titzer): test MachineOperatorReducer for Float64Compare | 809 // TODO(titzer): test MachineOperatorReducer for Float64Compare |
| OLD | NEW |