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_TYPED_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ |
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ | 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 #include "src/compiler/opcodes.h" | 9 #include "src/compiler/opcodes.h" |
10 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 Reduction ReduceJSToBoolean(Node* node); | 51 Reduction ReduceJSToBoolean(Node* node); |
52 Reduction ReduceJSToNumberInput(Node* input); | 52 Reduction ReduceJSToNumberInput(Node* input); |
53 Reduction ReduceJSToNumber(Node* node); | 53 Reduction ReduceJSToNumber(Node* node); |
54 Reduction ReduceJSToStringInput(Node* input); | 54 Reduction ReduceJSToStringInput(Node* input); |
55 Reduction ReduceJSToString(Node* node); | 55 Reduction ReduceJSToString(Node* node); |
56 Reduction ReduceJSCreateClosure(Node* node); | 56 Reduction ReduceJSCreateClosure(Node* node); |
57 Reduction ReduceJSCreateLiteralArray(Node* node); | 57 Reduction ReduceJSCreateLiteralArray(Node* node); |
58 Reduction ReduceJSCreateLiteralObject(Node* node); | 58 Reduction ReduceJSCreateLiteralObject(Node* node); |
59 Reduction ReduceJSCreateWithContext(Node* node); | 59 Reduction ReduceJSCreateWithContext(Node* node); |
60 Reduction ReduceJSCreateBlockContext(Node* node); | 60 Reduction ReduceJSCreateBlockContext(Node* node); |
| 61 Reduction ReduceJSForInDone(Node* node); |
| 62 Reduction ReduceJSForInNext(Node* node); |
| 63 Reduction ReduceJSForInPrepare(Node* node); |
| 64 Reduction ReduceJSForInStep(Node* node); |
61 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); | 65 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); |
62 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); | 66 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); |
63 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, | 67 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, |
64 const Operator* shift_op); | 68 const Operator* shift_op); |
65 | 69 |
66 Node* Word32Shl(Node* const lhs, int32_t const rhs); | 70 Node* Word32Shl(Node* const lhs, int32_t const rhs); |
67 | 71 |
68 Factory* factory() const; | 72 Factory* factory() const; |
69 Graph* graph() const; | 73 Graph* graph() const; |
70 JSGraph* jsgraph() const { return jsgraph_; } | 74 JSGraph* jsgraph() const { return jsgraph_; } |
(...skipping 11 matching lines...) Expand all Loading... |
82 Type* one_range_; | 86 Type* one_range_; |
83 Type* zero_thirtyone_range_; | 87 Type* zero_thirtyone_range_; |
84 Type* shifted_int32_ranges_[4]; | 88 Type* shifted_int32_ranges_[4]; |
85 }; | 89 }; |
86 | 90 |
87 } // namespace compiler | 91 } // namespace compiler |
88 } // namespace internal | 92 } // namespace internal |
89 } // namespace v8 | 93 } // namespace v8 |
90 | 94 |
91 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 95 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
OLD | NEW |