| 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 Reducer { |
| 23 public: | 23 public: |
| 24 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} | 24 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} |
| 25 ~ChangeLowering() final; | 25 ~ChangeLowering() final; |
| 26 | 26 |
| 27 Reduction Reduce(Node* node) final; | 27 Reduction Reduce(Node* node) final; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 Node* SmiShiftBitsConstant(); | |
| 31 | |
| 32 Node* ChangeInt32ToSmi(Node* value); | |
| 33 Node* ChangeSmiToWord32(Node* value); | |
| 34 Node* ChangeUint32ToFloat64(Node* value); | |
| 35 | |
| 36 Reduction ReduceChangeBitToBool(Node* value, Node* control); | |
| 37 Reduction ReduceChangeBoolToBit(Node* value); | |
| 38 Reduction ReduceChangeInt31ToTagged(Node* value, Node* control); | |
| 39 Reduction ReduceChangeTaggedSignedToInt32(Node* value); | |
| 40 | |
| 41 Reduction ReduceLoadField(Node* node); | 30 Reduction ReduceLoadField(Node* node); |
| 42 Reduction ReduceStoreField(Node* node); | 31 Reduction ReduceStoreField(Node* node); |
| 43 Reduction ReduceLoadElement(Node* node); | 32 Reduction ReduceLoadElement(Node* node); |
| 44 Reduction ReduceStoreElement(Node* node); | 33 Reduction ReduceStoreElement(Node* node); |
| 45 Reduction ReduceAllocate(Node* node); | 34 Reduction ReduceAllocate(Node* node); |
| 46 | 35 |
| 47 Reduction ReduceObjectIsSmi(Node* node); | |
| 48 | |
| 49 Node* ComputeIndex(const ElementAccess& access, Node* const key); | 36 Node* ComputeIndex(const ElementAccess& access, Node* const key); |
| 50 Graph* graph() const; | 37 Graph* graph() const; |
| 51 Isolate* isolate() const; | 38 Isolate* isolate() const; |
| 52 JSGraph* jsgraph() const { return jsgraph_; } | 39 JSGraph* jsgraph() const { return jsgraph_; } |
| 53 CommonOperatorBuilder* common() const; | 40 CommonOperatorBuilder* common() const; |
| 54 MachineOperatorBuilder* machine() const; | 41 MachineOperatorBuilder* machine() const; |
| 55 | 42 |
| 56 JSGraph* const jsgraph_; | 43 JSGraph* const jsgraph_; |
| 57 SetOncePointer<const Operator> allocate_operator_; | 44 SetOncePointer<const Operator> allocate_operator_; |
| 58 }; | 45 }; |
| 59 | 46 |
| 60 } // namespace compiler | 47 } // namespace compiler |
| 61 } // namespace internal | 48 } // namespace internal |
| 62 } // namespace v8 | 49 } // namespace v8 |
| 63 | 50 |
| 64 #endif // V8_COMPILER_CHANGE_LOWERING_H_ | 51 #endif // V8_COMPILER_CHANGE_LOWERING_H_ |
| OLD | NEW |