| 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 13 matching lines...) Expand all Loading... |
| 24 class JSBuiltinReducer final : public AdvancedReducer { | 24 class JSBuiltinReducer final : public AdvancedReducer { |
| 25 public: | 25 public: |
| 26 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph); | 26 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph); |
| 27 ~JSBuiltinReducer() final {} | 27 ~JSBuiltinReducer() final {} |
| 28 | 28 |
| 29 Reduction Reduce(Node* node) final; | 29 Reduction Reduce(Node* node) final; |
| 30 | 30 |
| 31 private: | 31 private: |
| 32 Reduction ReduceMathAtan(Node* node); | 32 Reduction ReduceMathAtan(Node* node); |
| 33 Reduction ReduceMathAtan2(Node* node); | 33 Reduction ReduceMathAtan2(Node* node); |
| 34 Reduction ReduceMathAtanh(Node* node); |
| 34 Reduction ReduceMathCeil(Node* node); | 35 Reduction ReduceMathCeil(Node* node); |
| 35 Reduction ReduceMathClz32(Node* node); | 36 Reduction ReduceMathClz32(Node* node); |
| 36 Reduction ReduceMathExp(Node* node); | 37 Reduction ReduceMathExp(Node* node); |
| 37 Reduction ReduceMathFloor(Node* node); | 38 Reduction ReduceMathFloor(Node* node); |
| 38 Reduction ReduceMathFround(Node* node); | 39 Reduction ReduceMathFround(Node* node); |
| 39 Reduction ReduceMathImul(Node* node); | 40 Reduction ReduceMathImul(Node* node); |
| 40 Reduction ReduceMathLog(Node* node); | 41 Reduction ReduceMathLog(Node* node); |
| 41 Reduction ReduceMathLog1p(Node* node); | 42 Reduction ReduceMathLog1p(Node* node); |
| 42 Reduction ReduceMathLog2(Node* node); | 43 Reduction ReduceMathLog2(Node* node); |
| 43 Reduction ReduceMathLog10(Node* node); | 44 Reduction ReduceMathLog10(Node* node); |
| 44 Reduction ReduceMathMax(Node* node); | 45 Reduction ReduceMathMax(Node* node); |
| 45 Reduction ReduceMathMin(Node* node); | 46 Reduction ReduceMathMin(Node* node); |
| 47 Reduction ReduceMathCbrt(Node* node); |
| 48 Reduction ReduceMathExpm1(Node* node); |
| 46 Reduction ReduceMathRound(Node* node); | 49 Reduction ReduceMathRound(Node* node); |
| 47 Reduction ReduceMathSqrt(Node* node); | 50 Reduction ReduceMathSqrt(Node* node); |
| 48 Reduction ReduceMathTrunc(Node* node); | 51 Reduction ReduceMathTrunc(Node* node); |
| 49 Reduction ReduceStringFromCharCode(Node* node); | 52 Reduction ReduceStringFromCharCode(Node* node); |
| 50 | 53 |
| 51 Node* ToNumber(Node* value); | 54 Node* ToNumber(Node* value); |
| 52 Node* ToUint32(Node* value); | 55 Node* ToUint32(Node* value); |
| 53 | 56 |
| 54 Graph* graph() const; | 57 Graph* graph() const; |
| 55 JSGraph* jsgraph() const { return jsgraph_; } | 58 JSGraph* jsgraph() const { return jsgraph_; } |
| 56 Isolate* isolate() const; | 59 Isolate* isolate() const; |
| 57 CommonOperatorBuilder* common() const; | 60 CommonOperatorBuilder* common() const; |
| 58 SimplifiedOperatorBuilder* simplified() const; | 61 SimplifiedOperatorBuilder* simplified() const; |
| 59 | 62 |
| 60 JSGraph* const jsgraph_; | 63 JSGraph* const jsgraph_; |
| 61 TypeCache const& type_cache_; | 64 TypeCache const& type_cache_; |
| 62 }; | 65 }; |
| 63 | 66 |
| 64 } // namespace compiler | 67 } // namespace compiler |
| 65 } // namespace internal | 68 } // namespace internal |
| 66 } // namespace v8 | 69 } // namespace v8 |
| 67 | 70 |
| 68 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 71 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ |
| OLD | NEW |