Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dsimd-scalar-lowering.h36 enum class SimdType : uint8_t { enum
54 SimdType type; // represents output type
72 int NumLanes(SimdType type);
87 Node** GetReplacementsWithType(Node* node, SimdType type);
88 SimdType ReplacementType(Node* node);
91 void GetIndexNodes(Node* index, Node** new_indices, SimdType type);
92 void LowerLoadOp(Node* node, SimdType type);
93 void LowerLoadTransformOp(Node* node, SimdType type);
95 void LowerBinaryOp(Node* node, SimdType input_rep_type, const Operator* op,
97 Node* ConstructPhiForComparison(Diamond d, SimdType rep_type, int true_value,
[all …]
Dsimd-scalar-lowering.cc81 replacements_[graph()->end()->id()].type = SimdType::kInt32x4; in LowerGraph()
310 MachineType SimdScalarLowering::MachineTypeFrom(SimdType simdType) { in MachineTypeFrom()
312 case SimdType::kFloat64x2: in MachineTypeFrom()
314 case SimdType::kFloat32x4: in MachineTypeFrom()
316 case SimdType::kInt64x2: in MachineTypeFrom()
318 case SimdType::kInt32x4: in MachineTypeFrom()
320 case SimdType::kInt16x8: in MachineTypeFrom()
322 case SimdType::kInt8x16: in MachineTypeFrom()
332 replacements_[node->id()].type = SimdType::kFloat64x2; in SetLoweredType()
336 replacements_[node->id()].type = SimdType::kInt64x2; 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()