| 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 | 10 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 Reduction ReduceJSForInDone(Node* node); | 67 Reduction ReduceJSForInDone(Node* node); |
| 68 Reduction ReduceJSForInNext(Node* node); | 68 Reduction ReduceJSForInNext(Node* node); |
| 69 Reduction ReduceJSForInPrepare(Node* node); | 69 Reduction ReduceJSForInPrepare(Node* node); |
| 70 Reduction ReduceJSForInStep(Node* node); | 70 Reduction ReduceJSForInStep(Node* node); |
| 71 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); | 71 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); |
| 72 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); | 72 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); |
| 73 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, | 73 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, |
| 74 const Operator* shift_op); | 74 const Operator* shift_op); |
| 75 | 75 |
| 76 Node* Word32Shl(Node* const lhs, int32_t const rhs); | 76 Node* Word32Shl(Node* const lhs, int32_t const rhs); |
| 77 Node* AllocateArguments(Node* effect, Node* control, Node* frame_state); |
| 77 | 78 |
| 78 Factory* factory() const; | 79 Factory* factory() const; |
| 79 Graph* graph() const; | 80 Graph* graph() const; |
| 80 JSGraph* jsgraph() const { return jsgraph_; } | 81 JSGraph* jsgraph() const { return jsgraph_; } |
| 81 Isolate* isolate() const; | 82 Isolate* isolate() const; |
| 82 JSOperatorBuilder* javascript() const; | 83 JSOperatorBuilder* javascript() const; |
| 83 CommonOperatorBuilder* common() const; | 84 CommonOperatorBuilder* common() const; |
| 84 SimplifiedOperatorBuilder* simplified() const; | 85 SimplifiedOperatorBuilder* simplified() const; |
| 85 MachineOperatorBuilder* machine() const; | 86 MachineOperatorBuilder* machine() const; |
| 86 | 87 |
| 87 // Limits up to which context allocations are inlined. | 88 // Limits up to which context allocations are inlined. |
| 88 static const int kFunctionContextAllocationLimit = 16; | 89 static const int kFunctionContextAllocationLimit = 16; |
| 89 static const int kBlockContextAllocationLimit = 16; | 90 static const int kBlockContextAllocationLimit = 16; |
| 90 | 91 |
| 91 JSGraph* jsgraph_; | 92 JSGraph* jsgraph_; |
| 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 |