| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 Reduction ReduceJSForInStep(Node* node); | 77 Reduction ReduceJSForInStep(Node* node); |
| 78 Reduction ReduceJSGeneratorStore(Node* node); | 78 Reduction ReduceJSGeneratorStore(Node* node); |
| 79 Reduction ReduceJSGeneratorRestoreContinuation(Node* node); | 79 Reduction ReduceJSGeneratorRestoreContinuation(Node* node); |
| 80 Reduction ReduceJSGeneratorRestoreRegister(Node* node); | 80 Reduction ReduceJSGeneratorRestoreRegister(Node* node); |
| 81 Reduction ReduceCheckString(Node* node); | 81 Reduction ReduceCheckString(Node* node); |
| 82 Reduction ReduceNumberRoundop(Node* node); | 82 Reduction ReduceNumberRoundop(Node* node); |
| 83 Reduction ReduceSelect(Node* node); | 83 Reduction ReduceSelect(Node* node); |
| 84 Reduction ReduceJSSubtract(Node* node); | 84 Reduction ReduceJSSubtract(Node* node); |
| 85 Reduction ReduceJSDivide(Node* node); | 85 Reduction ReduceJSDivide(Node* node); |
| 86 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); | 86 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); |
| 87 Reduction ReduceShiftLeft(Node* node); | |
| 88 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, | 87 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, |
| 89 const Operator* shift_op); | 88 const Operator* shift_op); |
| 90 | 89 |
| 91 Node* EmptyFrameState(); | 90 Node* EmptyFrameState(); |
| 92 | 91 |
| 93 Factory* factory() const; | 92 Factory* factory() const; |
| 94 Graph* graph() const; | 93 Graph* graph() const; |
| 95 JSGraph* jsgraph() const { return jsgraph_; } | 94 JSGraph* jsgraph() const { return jsgraph_; } |
| 96 Isolate* isolate() const; | 95 Isolate* isolate() const; |
| 97 JSOperatorBuilder* javascript() const; | 96 JSOperatorBuilder* javascript() const; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 111 TypeCache const& type_cache_; | 110 TypeCache const& type_cache_; |
| 112 }; | 111 }; |
| 113 | 112 |
| 114 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) | 113 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) |
| 115 | 114 |
| 116 } // namespace compiler | 115 } // namespace compiler |
| 117 } // namespace internal | 116 } // namespace internal |
| 118 } // namespace v8 | 117 } // namespace v8 |
| 119 | 118 |
| 120 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 119 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
| OLD | NEW |