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_JS_BUILTIN_REDUCER_H_ | 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_REDUCER_H_ |
6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_REDUCER_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 #include "src/compiler/simplified-operator.h" | 9 #include "src/compiler/simplified-operator.h" |
10 | 10 |
11 namespace v8 { | 11 namespace v8 { |
12 namespace internal { | 12 namespace internal { |
13 namespace compiler { | 13 namespace compiler { |
14 | 14 |
15 // Forward declarations. | 15 // Forward declarations. |
16 class CommonOperatorBuilder; | |
17 class JSGraph; | 16 class JSGraph; |
18 class MachineOperatorBuilder; | 17 class MachineOperatorBuilder; |
19 | 18 |
20 | 19 |
21 class JSBuiltinReducer final : public AdvancedReducer { | 20 class SimplifiedOperatorReducer final : public Reducer { |
22 public: | 21 public: |
23 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph); | 22 explicit SimplifiedOperatorReducer(JSGraph* jsgraph); |
24 ~JSBuiltinReducer() final {} | 23 ~SimplifiedOperatorReducer() final; |
25 | 24 |
26 Reduction Reduce(Node* node) final; | 25 Reduction Reduce(Node* node) final; |
27 | 26 |
28 private: | 27 private: |
29 Reduction ReduceMathMax(Node* node); | 28 Reduction Change(Node* node, const Operator* op, Node* a); |
30 Reduction ReduceMathImul(Node* node); | 29 Reduction ReplaceFloat64(double value); |
31 Reduction ReduceMathFround(Node* node); | 30 Reduction ReplaceInt32(int32_t value); |
| 31 Reduction ReplaceUint32(uint32_t value) { |
| 32 return ReplaceInt32(bit_cast<int32_t>(value)); |
| 33 } |
| 34 Reduction ReplaceNumber(double value); |
| 35 Reduction ReplaceNumber(int32_t value); |
32 | 36 |
| 37 Graph* graph() const; |
33 JSGraph* jsgraph() const { return jsgraph_; } | 38 JSGraph* jsgraph() const { return jsgraph_; } |
34 Graph* graph() const; | |
35 CommonOperatorBuilder* common() const; | |
36 MachineOperatorBuilder* machine() const; | 39 MachineOperatorBuilder* machine() const; |
37 SimplifiedOperatorBuilder* simplified() { return &simplified_; } | 40 SimplifiedOperatorBuilder* simplified() { return &simplified_; } |
38 | 41 |
39 JSGraph* jsgraph_; | 42 JSGraph* const jsgraph_; |
40 SimplifiedOperatorBuilder simplified_; | 43 SimplifiedOperatorBuilder simplified_; |
| 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorReducer); |
41 }; | 46 }; |
42 | 47 |
43 } // namespace compiler | 48 } // namespace compiler |
44 } // namespace internal | 49 } // namespace internal |
45 } // namespace v8 | 50 } // namespace v8 |
46 | 51 |
47 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 52 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_REDUCER_H_ |
OLD | NEW |