| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 Reduction ReduceJSForInNext(Node* node); | 73 Reduction ReduceJSForInNext(Node* node); |
| 74 Reduction ReduceJSForInStep(Node* node); | 74 Reduction ReduceJSForInStep(Node* node); |
| 75 Reduction ReduceJSGeneratorStore(Node* node); | 75 Reduction ReduceJSGeneratorStore(Node* node); |
| 76 Reduction ReduceJSGeneratorRestoreContinuation(Node* node); | 76 Reduction ReduceJSGeneratorRestoreContinuation(Node* node); |
| 77 Reduction ReduceJSGeneratorRestoreRegister(Node* node); | 77 Reduction ReduceJSGeneratorRestoreRegister(Node* node); |
| 78 Reduction ReduceCheckMaps(Node* node); | 78 Reduction ReduceCheckMaps(Node* node); |
| 79 Reduction ReduceCheckString(Node* node); | 79 Reduction ReduceCheckString(Node* node); |
| 80 Reduction ReduceLoadField(Node* node); | 80 Reduction ReduceLoadField(Node* node); |
| 81 Reduction ReduceNumberRoundop(Node* node); | 81 Reduction ReduceNumberRoundop(Node* node); |
| 82 Reduction ReduceSelect(Node* node); | 82 Reduction ReduceSelect(Node* node); |
| 83 Reduction ReducePhi(Node* node); |
| 83 Reduction ReduceNumberBinop(Node* node); | 84 Reduction ReduceNumberBinop(Node* node); |
| 84 Reduction ReduceInt32Binop(Node* node); | 85 Reduction ReduceInt32Binop(Node* node); |
| 85 Reduction ReduceUI32Shift(Node* node, Signedness signedness); | 86 Reduction ReduceUI32Shift(Node* node, Signedness signedness); |
| 86 | 87 |
| 87 Factory* factory() const; | 88 Factory* factory() const; |
| 88 Graph* graph() const; | 89 Graph* graph() const; |
| 89 JSGraph* jsgraph() const { return jsgraph_; } | 90 JSGraph* jsgraph() const { return jsgraph_; } |
| 90 Isolate* isolate() const; | 91 Isolate* isolate() const; |
| 91 JSOperatorBuilder* javascript() const; | 92 JSOperatorBuilder* javascript() const; |
| 92 CommonOperatorBuilder* common() const; | 93 CommonOperatorBuilder* common() const; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 105 TypeCache const& type_cache_; | 106 TypeCache const& type_cache_; |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) | 109 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) |
| 109 | 110 |
| 110 } // namespace compiler | 111 } // namespace compiler |
| 111 } // namespace internal | 112 } // namespace internal |
| 112 } // namespace v8 | 113 } // namespace v8 |
| 113 | 114 |
| 114 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 115 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
| OLD | NEW |