Searched refs:SimdType (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/compiler/ |
D | simd-scalar-lowering.h | 36 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 …]
|
D | simd-scalar-lowering.cc | 81 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/ |
D | load.pass.cpp | 53 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()
|
D | generator.pass.cpp | 68 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()
|
D | broadcast.pass.cpp | 74 template <typename SimdType> 76 SimdType a(3); in test_broadcast()
|
/external/libcxx/test/std/experimental/simd/simd.mem/ |
D | load.pass.cpp | 50 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()
|
D | store.pass.cpp | 24 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/ |
D | default.pass.cpp | 24 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()
|