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 13 matching lines...) Expand all Loading... |
24 explicit JSIntrinsicLowering(JSGraph* jsgraph); | 24 explicit JSIntrinsicLowering(JSGraph* jsgraph); |
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 ReduceInlineDeoptimizeNow(Node* node); | 30 Reduction ReduceInlineDeoptimizeNow(Node* node); |
31 Reduction ReduceInlineIsSmi(Node* node); | 31 Reduction ReduceInlineIsSmi(Node* node); |
32 Reduction ReduceInlineIsNonNegativeSmi(Node* node); | 32 Reduction ReduceInlineIsNonNegativeSmi(Node* node); |
33 Reduction ReduceInlineIsInstanceType(Node* node, InstanceType instance_type); | 33 Reduction ReduceInlineIsInstanceType(Node* node, InstanceType instance_type); |
| 34 Reduction ReduceInlineJSValueValue(Node* node); |
34 Reduction ReduceInlineConstructDouble(Node* node); | 35 Reduction ReduceInlineConstructDouble(Node* node); |
35 Reduction ReduceInlineDoubleLo(Node* node); | 36 Reduction ReduceInlineDoubleLo(Node* node); |
36 Reduction ReduceInlineDoubleHi(Node* node); | 37 Reduction ReduceInlineDoubleHi(Node* node); |
37 Reduction ReduceInlineMathFloor(Node* node); | 38 Reduction ReduceInlineMathFloor(Node* node); |
38 Reduction ReduceInlineMathSqrt(Node* node); | 39 Reduction ReduceInlineMathSqrt(Node* node); |
| 40 Reduction ReduceInlineStringLength(Node* node); |
39 Reduction ReduceInlineValueOf(Node* node); | 41 Reduction ReduceInlineValueOf(Node* node); |
40 | 42 |
41 Reduction Change(Node* node, const Operator* op); | 43 Reduction Change(Node* node, const Operator* op); |
42 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); | 44 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); |
43 | 45 |
44 Graph* graph() const; | 46 Graph* graph() const; |
45 JSGraph* jsgraph() const { return jsgraph_; } | 47 JSGraph* jsgraph() const { return jsgraph_; } |
46 CommonOperatorBuilder* common() const; | 48 CommonOperatorBuilder* common() const; |
47 MachineOperatorBuilder* machine() const; | 49 MachineOperatorBuilder* machine() const; |
48 SimplifiedOperatorBuilder* simplified() { return &simplified_; } | 50 SimplifiedOperatorBuilder* simplified() { return &simplified_; } |
49 | 51 |
50 JSGraph* jsgraph_; | 52 JSGraph* jsgraph_; |
51 SimplifiedOperatorBuilder simplified_; | 53 SimplifiedOperatorBuilder simplified_; |
52 }; | 54 }; |
53 | 55 |
54 } // namespace compiler | 56 } // namespace compiler |
55 } // namespace internal | 57 } // namespace internal |
56 } // namespace v8 | 58 } // namespace v8 |
57 | 59 |
58 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 60 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
OLD | NEW |