| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_INTRINSIC_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
| 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ~JSIntrinsicLowering() FINAL {} | 25 ~JSIntrinsicLowering() FINAL {} |
| 26 | 26 |
| 27 Reduction Reduce(Node* node) FINAL; | 27 Reduction Reduce(Node* node) FINAL; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 Reduction ReduceConstructDouble(Node* node); | 30 Reduction ReduceConstructDouble(Node* node); |
| 31 Reduction ReduceDeoptimizeNow(Node* node); | 31 Reduction ReduceDeoptimizeNow(Node* node); |
| 32 Reduction ReduceDoubleHi(Node* node); | 32 Reduction ReduceDoubleHi(Node* node); |
| 33 Reduction ReduceDoubleLo(Node* node); | 33 Reduction ReduceDoubleLo(Node* node); |
| 34 Reduction ReduceHeapObjectGetMap(Node* node); | 34 Reduction ReduceHeapObjectGetMap(Node* node); |
| 35 Reduction ReduceIncrementStatsCounter(Node* node); |
| 35 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); | 36 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); |
| 36 Reduction ReduceIsNonNegativeSmi(Node* node); | 37 Reduction ReduceIsNonNegativeSmi(Node* node); |
| 37 Reduction ReduceIsSmi(Node* node); | 38 Reduction ReduceIsSmi(Node* node); |
| 38 Reduction ReduceJSValueGetValue(Node* node); | 39 Reduction ReduceJSValueGetValue(Node* node); |
| 39 Reduction ReduceMapGetInstanceType(Node* node); | 40 Reduction ReduceMapGetInstanceType(Node* node); |
| 40 Reduction ReduceMathClz32(Node* node); | 41 Reduction ReduceMathClz32(Node* node); |
| 41 Reduction ReduceMathFloor(Node* node); | 42 Reduction ReduceMathFloor(Node* node); |
| 42 Reduction ReduceMathSqrt(Node* node); | 43 Reduction ReduceMathSqrt(Node* node); |
| 43 Reduction ReduceSeqStringGetChar(Node* node, String::Encoding encoding); | 44 Reduction ReduceSeqStringGetChar(Node* node, String::Encoding encoding); |
| 44 Reduction ReduceSeqStringSetChar(Node* node, String::Encoding encoding); | 45 Reduction ReduceSeqStringSetChar(Node* node, String::Encoding encoding); |
| 45 Reduction ReduceStringGetLength(Node* node); | 46 Reduction ReduceStringGetLength(Node* node); |
| 46 Reduction ReduceValueOf(Node* node); | 47 Reduction ReduceValueOf(Node* node); |
| 47 | 48 |
| 48 Reduction Change(Node* node, const Operator* op); | 49 Reduction Change(Node* node, const Operator* op); |
| 49 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); | 50 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); |
| 51 Reduction ChangeToUndefined(Node* node, Node* effect = nullptr); |
| 50 | 52 |
| 51 Graph* graph() const; | 53 Graph* graph() const; |
| 52 JSGraph* jsgraph() const { return jsgraph_; } | 54 JSGraph* jsgraph() const { return jsgraph_; } |
| 53 CommonOperatorBuilder* common() const; | 55 CommonOperatorBuilder* common() const; |
| 54 MachineOperatorBuilder* machine() const; | 56 MachineOperatorBuilder* machine() const; |
| 55 SimplifiedOperatorBuilder* simplified() { return &simplified_; } | 57 SimplifiedOperatorBuilder* simplified() { return &simplified_; } |
| 56 | 58 |
| 57 JSGraph* jsgraph_; | 59 JSGraph* jsgraph_; |
| 58 SimplifiedOperatorBuilder simplified_; | 60 SimplifiedOperatorBuilder simplified_; |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 } // namespace compiler | 63 } // namespace compiler |
| 62 } // namespace internal | 64 } // namespace internal |
| 63 } // namespace v8 | 65 } // namespace v8 |
| 64 | 66 |
| 65 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 67 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
| OLD | NEW |