| 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 #ifndef V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ | 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ |
| 6 #define V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ | 6 #define V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ |
| 7 | 7 |
| 8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
| 9 #include "src/compiler/machine-operator.h" | 9 #include "src/compiler/machine-operator.h" |
| 10 | 10 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 return Replace(Int32Constant(value)); | 58 return Replace(Int32Constant(value)); |
| 59 } | 59 } |
| 60 Reduction ReplaceUint32(uint32_t value) { | 60 Reduction ReplaceUint32(uint32_t value) { |
| 61 return Replace(Uint32Constant(value)); | 61 return Replace(Uint32Constant(value)); |
| 62 } | 62 } |
| 63 Reduction ReplaceInt64(int64_t value) { | 63 Reduction ReplaceInt64(int64_t value) { |
| 64 return Replace(Int64Constant(value)); | 64 return Replace(Int64Constant(value)); |
| 65 } | 65 } |
| 66 | 66 |
| 67 Reduction ReduceInt32Add(Node* node); | 67 Reduction ReduceInt32Add(Node* node); |
| 68 Reduction ReduceInt32Sub(Node* node); |
| 68 Reduction ReduceInt32Div(Node* node); | 69 Reduction ReduceInt32Div(Node* node); |
| 69 Reduction ReduceUint32Div(Node* node); | 70 Reduction ReduceUint32Div(Node* node); |
| 70 Reduction ReduceInt32Mod(Node* node); | 71 Reduction ReduceInt32Mod(Node* node); |
| 71 Reduction ReduceUint32Mod(Node* node); | 72 Reduction ReduceUint32Mod(Node* node); |
| 72 Reduction ReduceTruncateFloat64ToInt32(Node* node); | 73 Reduction ReduceTruncateFloat64ToInt32(Node* node); |
| 73 Reduction ReduceStore(Node* node); | 74 Reduction ReduceStore(Node* node); |
| 74 Reduction ReduceProjection(size_t index, Node* node); | 75 Reduction ReduceProjection(size_t index, Node* node); |
| 75 Reduction ReduceWord32Shifts(Node* node); | 76 Reduction ReduceWord32Shifts(Node* node); |
| 76 Reduction ReduceWord32Shl(Node* node); | 77 Reduction ReduceWord32Shl(Node* node); |
| 77 Reduction ReduceWord32And(Node* node); | 78 Reduction ReduceWord32And(Node* node); |
| 78 Reduction ReduceWord32Or(Node* node); | 79 Reduction ReduceWord32Or(Node* node); |
| 79 | 80 |
| 80 Graph* graph() const; | 81 Graph* graph() const; |
| 81 JSGraph* jsgraph() const { return jsgraph_; } | 82 JSGraph* jsgraph() const { return jsgraph_; } |
| 82 CommonOperatorBuilder* common() const; | 83 CommonOperatorBuilder* common() const; |
| 83 MachineOperatorBuilder* machine() const; | 84 MachineOperatorBuilder* machine() const; |
| 84 | 85 |
| 85 JSGraph* jsgraph_; | 86 JSGraph* jsgraph_; |
| 86 }; | 87 }; |
| 87 | 88 |
| 88 } // namespace compiler | 89 } // namespace compiler |
| 89 } // namespace internal | 90 } // namespace internal |
| 90 } // namespace v8 | 91 } // namespace v8 |
| 91 | 92 |
| 92 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ | 93 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ |
| OLD | NEW |