| 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_CHANGE_LOWERING_H_ | 5 #ifndef V8_COMPILER_CHANGE_LOWERING_H_ |
| 6 #define V8_COMPILER_CHANGE_LOWERING_H_ | 6 #define V8_COMPILER_CHANGE_LOWERING_H_ |
| 7 | 7 |
| 8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| 11 namespace internal { | 11 namespace internal { |
| 12 namespace compiler { | 12 namespace compiler { |
| 13 | 13 |
| 14 // Forward declarations. | 14 // Forward declarations. |
| 15 class CommonOperatorBuilder; | 15 class CommonOperatorBuilder; |
| 16 struct ElementAccess; | 16 struct ElementAccess; |
| 17 class JSGraph; | 17 class JSGraph; |
| 18 class Linkage; | 18 class Linkage; |
| 19 class MachineOperatorBuilder; | 19 class MachineOperatorBuilder; |
| 20 class Operator; | 20 class Operator; |
| 21 | 21 |
| 22 class ChangeLowering final : public Reducer { | 22 class ChangeLowering final : public AdvancedReducer { |
| 23 public: | 23 public: |
| 24 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} | 24 ChangeLowering(Editor* editor, JSGraph* jsgraph) |
| 25 : AdvancedReducer(editor), jsgraph_(jsgraph) {} |
| 25 ~ChangeLowering() final; | 26 ~ChangeLowering() final; |
| 26 | 27 |
| 27 Reduction Reduce(Node* node) final; | 28 Reduction Reduce(Node* node) final; |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 Reduction ReduceLoadField(Node* node); | 31 Reduction ReduceLoadField(Node* node); |
| 31 Reduction ReduceStoreField(Node* node); | 32 Reduction ReduceStoreField(Node* node); |
| 32 Reduction ReduceLoadElement(Node* node); | 33 Reduction ReduceLoadElement(Node* node); |
| 33 Reduction ReduceStoreElement(Node* node); | 34 Reduction ReduceStoreElement(Node* node); |
| 34 Reduction ReduceAllocate(Node* node); | 35 Reduction ReduceAllocate(Node* node); |
| 35 | 36 |
| 36 Node* ComputeIndex(const ElementAccess& access, Node* const key); | 37 Node* ComputeIndex(const ElementAccess& access, Node* const key); |
| 37 Graph* graph() const; | 38 Graph* graph() const; |
| 38 Isolate* isolate() const; | 39 Isolate* isolate() const; |
| 39 JSGraph* jsgraph() const { return jsgraph_; } | 40 JSGraph* jsgraph() const { return jsgraph_; } |
| 40 CommonOperatorBuilder* common() const; | 41 CommonOperatorBuilder* common() const; |
| 41 MachineOperatorBuilder* machine() const; | 42 MachineOperatorBuilder* machine() const; |
| 42 | 43 |
| 43 JSGraph* const jsgraph_; | 44 JSGraph* const jsgraph_; |
| 44 SetOncePointer<const Operator> allocate_operator_; | 45 SetOncePointer<const Operator> allocate_operator_; |
| 45 }; | 46 }; |
| 46 | 47 |
| 47 } // namespace compiler | 48 } // namespace compiler |
| 48 } // namespace internal | 49 } // namespace internal |
| 49 } // namespace v8 | 50 } // namespace v8 |
| 50 | 51 |
| 51 #endif // V8_COMPILER_CHANGE_LOWERING_H_ | 52 #endif // V8_COMPILER_CHANGE_LOWERING_H_ |
| OLD | NEW |