Home
last modified time | relevance | path

Searched refs:SimdType (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/compiler/
Dsimd-scalar-lowering.h35 enum class SimdType : uint8_t { kFloat32x4, kInt32x4, kInt16x8, kInt8x16 }; enum
46 SimdType type; // represents output type
64 int NumLanes(SimdType type);
75 Node** GetReplacementsWithType(Node* node, SimdType type);
76 SimdType ReplacementType(Node* node);
79 void GetIndexNodes(Node* index, Node** new_indices, SimdType type);
80 void LowerLoadOp(Node* node, SimdType type);
82 void LowerBinaryOp(Node* node, SimdType input_rep_type, const Operator* op,
84 void LowerCompareOp(Node* node, SimdType input_rep_type, const Operator* op,
87 void LowerBinaryOpForSmallInt(Node* node, SimdType input_rep_type,
[all …]
Dsimd-scalar-lowering.cc47 replacements_[graph()->end()->id()].type = SimdType::kInt32x4; in LowerGraph()
208 MachineType SimdScalarLowering::MachineTypeFrom(SimdType simdType) { in MachineTypeFrom()
210 case SimdType::kFloat32x4: in MachineTypeFrom()
212 case SimdType::kInt32x4: in MachineTypeFrom()
214 case SimdType::kInt16x8: in MachineTypeFrom()
216 case SimdType::kInt8x16: in MachineTypeFrom()
229 replacements_[node->id()].type = SimdType::kInt32x4; in SetLoweredType()
233 replacements_[node->id()].type = SimdType::kFloat32x4; in SetLoweredType()
237 replacements_[node->id()].type = SimdType::kInt32x4; in SetLoweredType()
241 replacements_[node->id()].type = SimdType::kInt16x8; in SetLoweredType()
[all …]
/external/libcxx/test/std/experimental/simd/simd.cons/
Dload.pass.cpp53 template <typename SimdType>
57 SimdType a(buffer, ex::element_aligned_tag()); in test_load_ctor()
64 SimdType a(buffer, ex::vector_aligned_tag()); in test_load_ctor()
71 SimdType a(buffer, ex::overaligned_tag<32>()); in test_load_ctor()
79 SimdType a(buffer, ex::element_aligned); in test_load_ctor()
86 SimdType a(buffer, ex::vector_aligned); in test_load_ctor()
93 SimdType a(buffer, ex::overaligned<32>); in test_load_ctor()
101 template <typename SimdType>
104 SimdType a(buffer, ex::element_aligned_tag()); in test_converting_load_ctor()
Dgenerator.pass.cpp68 template <typename SimdType>
71 SimdType a([](int i) { return i; }); in test_generator()
78 SimdType a([](int i) { return 2 * i - 1; }); in test_generator()
Dbroadcast.pass.cpp74 template <typename SimdType>
76 SimdType a(3); in test_broadcast()
/external/libcxx/test/std/experimental/simd/simd.mem/
Dload.pass.cpp50 template <typename SimdType>
54 SimdType a; in test_load()
62 SimdType a; in test_load()
70 SimdType a; in test_load()
79 SimdType a; in test_load()
87 SimdType a; in test_load()
95 SimdType a; in test_load()
104 template <typename SimdType>
107 SimdType a; in test_converting_load()
Dstore.pass.cpp24 template <typename SimdType>
26 SimdType a([](int i) { return 4 - i; }); in test_store()
78 template <typename SimdType>
81 SimdType a([](int i) { return 1 << i; }); in test_converting_store()
/external/libcxx/test/std/experimental/simd/simd.access/
Ddefault.pass.cpp24 template <typename SimdType>
27 SimdType a(42), b(4); in test_access()
184 const SimdType a(42); in test_access()
185 const SimdType b(4); in test_access()