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_JS_BUILTIN_REDUCER_H_ |
6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 22 matching lines...) Expand all Loading... |
33 Reduction ReduceFunctionCall(Node* node); | 33 Reduction ReduceFunctionCall(Node* node); |
34 Reduction ReduceMathMax(Node* node); | 34 Reduction ReduceMathMax(Node* node); |
35 Reduction ReduceMathImul(Node* node); | 35 Reduction ReduceMathImul(Node* node); |
36 Reduction ReduceMathCeil(Node* node); | 36 Reduction ReduceMathCeil(Node* node); |
37 Reduction ReduceMathClz32(Node* node); | 37 Reduction ReduceMathClz32(Node* node); |
38 Reduction ReduceMathFloor(Node* node); | 38 Reduction ReduceMathFloor(Node* node); |
39 Reduction ReduceMathFround(Node* node); | 39 Reduction ReduceMathFround(Node* node); |
40 Reduction ReduceMathRound(Node* node); | 40 Reduction ReduceMathRound(Node* node); |
41 Reduction ReduceMathSqrt(Node* node); | 41 Reduction ReduceMathSqrt(Node* node); |
42 Reduction ReduceMathTrunc(Node* node); | 42 Reduction ReduceMathTrunc(Node* node); |
| 43 Reduction ReduceStringFromCharCode(Node* node); |
43 | 44 |
44 Graph* graph() const; | 45 Graph* graph() const; |
45 JSGraph* jsgraph() const { return jsgraph_; } | 46 JSGraph* jsgraph() const { return jsgraph_; } |
46 Isolate* isolate() const; | 47 Isolate* isolate() const; |
47 CommonOperatorBuilder* common() const; | 48 CommonOperatorBuilder* common() const; |
48 MachineOperatorBuilder* machine() const; | 49 MachineOperatorBuilder* machine() const; |
49 SimplifiedOperatorBuilder* simplified() const; | 50 SimplifiedOperatorBuilder* simplified() const; |
50 | 51 |
51 JSGraph* const jsgraph_; | 52 JSGraph* const jsgraph_; |
52 TypeCache const& type_cache_; | 53 TypeCache const& type_cache_; |
53 }; | 54 }; |
54 | 55 |
55 } // namespace compiler | 56 } // namespace compiler |
56 } // namespace internal | 57 } // namespace internal |
57 } // namespace v8 | 58 } // namespace v8 |
58 | 59 |
59 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 60 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ |
OLD | NEW |