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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 Reduction ReduceJSToBoolean(Node* node); | 54 Reduction ReduceJSToBoolean(Node* node); |
55 Reduction ReduceJSToNumberInput(Node* input); | 55 Reduction ReduceJSToNumberInput(Node* input); |
56 Reduction ReduceJSToNumber(Node* node); | 56 Reduction ReduceJSToNumber(Node* node); |
57 Reduction ReduceJSToStringInput(Node* input); | 57 Reduction ReduceJSToStringInput(Node* input); |
58 Reduction ReduceJSToString(Node* node); | 58 Reduction ReduceJSToString(Node* node); |
59 Reduction ReduceJSCreateClosure(Node* node); | 59 Reduction ReduceJSCreateClosure(Node* node); |
60 Reduction ReduceJSCreateLiteralArray(Node* node); | 60 Reduction ReduceJSCreateLiteralArray(Node* node); |
61 Reduction ReduceJSCreateLiteralObject(Node* node); | 61 Reduction ReduceJSCreateLiteralObject(Node* node); |
62 Reduction ReduceJSCreateWithContext(Node* node); | 62 Reduction ReduceJSCreateWithContext(Node* node); |
63 Reduction ReduceJSCreateBlockContext(Node* node); | 63 Reduction ReduceJSCreateBlockContext(Node* node); |
| 64 Reduction ReduceJSCallFunction(Node* node); |
64 Reduction ReduceJSForInDone(Node* node); | 65 Reduction ReduceJSForInDone(Node* node); |
65 Reduction ReduceJSForInNext(Node* node); | 66 Reduction ReduceJSForInNext(Node* node); |
66 Reduction ReduceJSForInPrepare(Node* node); | 67 Reduction ReduceJSForInPrepare(Node* node); |
67 Reduction ReduceJSForInStep(Node* node); | 68 Reduction ReduceJSForInStep(Node* node); |
68 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); | 69 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); |
69 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); | 70 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); |
70 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, | 71 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, |
71 const Operator* shift_op); | 72 const Operator* shift_op); |
72 | 73 |
73 Node* Word32Shl(Node* const lhs, int32_t const rhs); | 74 Node* Word32Shl(Node* const lhs, int32_t const rhs); |
(...skipping 16 matching lines...) Expand all Loading... |
90 Type* one_range_; | 91 Type* one_range_; |
91 Type* zero_thirtyone_range_; | 92 Type* zero_thirtyone_range_; |
92 Type* shifted_int32_ranges_[4]; | 93 Type* shifted_int32_ranges_[4]; |
93 }; | 94 }; |
94 | 95 |
95 } // namespace compiler | 96 } // namespace compiler |
96 } // namespace internal | 97 } // namespace internal |
97 } // namespace v8 | 98 } // namespace v8 |
98 | 99 |
99 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 100 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
OLD | NEW |