| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_SIMD_SCALAR_LOWERING_H_ | 5 #ifndef V8_COMPILER_SIMD_SCALAR_LOWERING_H_ |
| 6 #define V8_COMPILER_SIMD_SCALAR_LOWERING_H_ | 6 #define V8_COMPILER_SIMD_SCALAR_LOWERING_H_ |
| 7 | 7 |
| 8 #include "src/compiler/common-operator.h" | 8 #include "src/compiler/common-operator.h" |
| 9 #include "src/compiler/graph.h" | 9 #include "src/compiler/graph.h" |
| 10 #include "src/compiler/js-graph.h" | 10 #include "src/compiler/js-graph.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 SimdScalarLowering(JSGraph* jsgraph, | 21 SimdScalarLowering(JSGraph* jsgraph, |
| 22 Signature<MachineRepresentation>* signature); | 22 Signature<MachineRepresentation>* signature); |
| 23 | 23 |
| 24 void LowerGraph(); | 24 void LowerGraph(); |
| 25 | 25 |
| 26 int GetParameterCountAfterLowering(); | 26 int GetParameterCountAfterLowering(); |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 enum class State : uint8_t { kUnvisited, kOnStack, kVisited }; | 29 enum class State : uint8_t { kUnvisited, kOnStack, kVisited }; |
| 30 | 30 |
| 31 enum class SimdType : uint8_t { kInt32, kFloat32 }; | 31 enum class SimdType : uint8_t { kInt32, kFloat32, kSimd1x4 }; |
| 32 | 32 |
| 33 static const int kMaxLanes = 4; | 33 static const int kMaxLanes = 4; |
| 34 static const int kLaneWidth = 16 / kMaxLanes; | 34 static const int kLaneWidth = 16 / kMaxLanes; |
| 35 | 35 |
| 36 struct Replacement { | 36 struct Replacement { |
| 37 Node* node[kMaxLanes]; | 37 Node* node[kMaxLanes]; |
| 38 SimdType type; // represents what input type is expected | 38 SimdType type; // represents what input type is expected |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 Zone* zone() const { return jsgraph_->zone(); } | 41 Zone* zone() const { return jsgraph_->zone(); } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 52 Node** GetReplacements(Node* node); | 52 Node** GetReplacements(Node* node); |
| 53 Node** GetReplacementsWithType(Node* node, SimdType type); | 53 Node** GetReplacementsWithType(Node* node, SimdType type); |
| 54 SimdType ReplacementType(Node* node); | 54 SimdType ReplacementType(Node* node); |
| 55 void PreparePhiReplacement(Node* phi); | 55 void PreparePhiReplacement(Node* phi); |
| 56 void SetLoweredType(Node* node, Node* output); | 56 void SetLoweredType(Node* node, Node* output); |
| 57 void GetIndexNodes(Node* index, Node** new_indices); | 57 void GetIndexNodes(Node* index, Node** new_indices); |
| 58 void LowerLoadOp(MachineRepresentation rep, Node* node, | 58 void LowerLoadOp(MachineRepresentation rep, Node* node, |
| 59 const Operator* load_op); | 59 const Operator* load_op); |
| 60 void LowerStoreOp(MachineRepresentation rep, Node* node, | 60 void LowerStoreOp(MachineRepresentation rep, Node* node, |
| 61 const Operator* store_op, SimdType rep_type); | 61 const Operator* store_op, SimdType rep_type); |
| 62 void LowerBinaryOp(Node* node, SimdType input_rep_type, const Operator* op); | 62 void LowerBinaryOp(Node* node, SimdType input_rep_type, const Operator* op, |
| 63 bool invert_inputs = false); |
| 63 void LowerUnaryOp(Node* node, SimdType input_rep_type, const Operator* op); | 64 void LowerUnaryOp(Node* node, SimdType input_rep_type, const Operator* op); |
| 64 void LowerIntMinMax(Node* node, const Operator* op, bool is_max); | 65 void LowerIntMinMax(Node* node, const Operator* op, bool is_max); |
| 65 void LowerConvertFromFloat(Node* node, bool is_signed); | 66 void LowerConvertFromFloat(Node* node, bool is_signed); |
| 66 void LowerShiftOp(Node* node, const Operator* op); | 67 void LowerShiftOp(Node* node, const Operator* op); |
| 67 Node* BuildF64Trunc(Node* input); | 68 Node* BuildF64Trunc(Node* input); |
| 69 void LowerNotEqual(Node* node, SimdType input_rep_type, const Operator* op); |
| 68 | 70 |
| 69 struct NodeState { | 71 struct NodeState { |
| 70 Node* node; | 72 Node* node; |
| 71 int input_index; | 73 int input_index; |
| 72 }; | 74 }; |
| 73 | 75 |
| 74 JSGraph* const jsgraph_; | 76 JSGraph* const jsgraph_; |
| 75 NodeMarker<State> state_; | 77 NodeMarker<State> state_; |
| 76 ZoneDeque<NodeState> stack_; | 78 ZoneDeque<NodeState> stack_; |
| 77 Replacement* replacements_; | 79 Replacement* replacements_; |
| 78 Signature<MachineRepresentation>* signature_; | 80 Signature<MachineRepresentation>* signature_; |
| 79 Node* placeholder_; | 81 Node* placeholder_; |
| 80 int parameter_count_after_lowering_; | 82 int parameter_count_after_lowering_; |
| 81 }; | 83 }; |
| 82 | 84 |
| 83 } // namespace compiler | 85 } // namespace compiler |
| 84 } // namespace internal | 86 } // namespace internal |
| 85 } // namespace v8 | 87 } // namespace v8 |
| 86 | 88 |
| 87 #endif // V8_COMPILER_SIMD_SCALAR_LOWERING_H_ | 89 #endif // V8_COMPILER_SIMD_SCALAR_LOWERING_H_ |
| OLD | NEW |