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/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.h" |
10 #include "src/compiler/opcodes.h" | 10 #include "src/compiler/opcodes.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 Reduction ReduceJSCreateLiteralArray(Node* node); | 76 Reduction ReduceJSCreateLiteralArray(Node* node); |
77 Reduction ReduceJSCreateLiteralObject(Node* node); | 77 Reduction ReduceJSCreateLiteralObject(Node* node); |
78 Reduction ReduceJSCreateFunctionContext(Node* node); | 78 Reduction ReduceJSCreateFunctionContext(Node* node); |
79 Reduction ReduceJSCreateWithContext(Node* node); | 79 Reduction ReduceJSCreateWithContext(Node* node); |
80 Reduction ReduceJSCreateCatchContext(Node* node); | 80 Reduction ReduceJSCreateCatchContext(Node* node); |
81 Reduction ReduceJSCreateBlockContext(Node* node); | 81 Reduction ReduceJSCreateBlockContext(Node* node); |
82 Reduction ReduceJSCallConstruct(Node* node); | 82 Reduction ReduceJSCallConstruct(Node* node); |
83 Reduction ReduceJSCallFunction(Node* node); | 83 Reduction ReduceJSCallFunction(Node* node); |
84 Reduction ReduceJSForInDone(Node* node); | 84 Reduction ReduceJSForInDone(Node* node); |
85 Reduction ReduceJSForInNext(Node* node); | 85 Reduction ReduceJSForInNext(Node* node); |
86 Reduction ReduceJSForInPrepare(Node* node); | |
87 Reduction ReduceJSForInStep(Node* node); | 86 Reduction ReduceJSForInStep(Node* node); |
88 Reduction ReduceSelect(Node* node); | 87 Reduction ReduceSelect(Node* node); |
89 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); | 88 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); |
90 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); | 89 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); |
91 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, | 90 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, |
92 const Operator* shift_op); | 91 const Operator* shift_op); |
93 Reduction ReduceNewArray(Node* node, Node* length, int capacity, | 92 Reduction ReduceNewArray(Node* node, Node* length, int capacity, |
94 Handle<AllocationSite> site); | 93 Handle<AllocationSite> site); |
95 | 94 |
96 Node* Word32Shl(Node* const lhs, int32_t const rhs); | 95 Node* Word32Shl(Node* const lhs, int32_t const rhs); |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 TypeCache const& type_cache_; | 128 TypeCache const& type_cache_; |
130 }; | 129 }; |
131 | 130 |
132 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) | 131 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) |
133 | 132 |
134 } // namespace compiler | 133 } // namespace compiler |
135 } // namespace internal | 134 } // namespace internal |
136 } // namespace v8 | 135 } // namespace v8 |
137 | 136 |
138 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 137 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
OLD | NEW |