Home
last modified time | relevance | path

Searched refs:HiInputs (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp9412 SmallVector<int, 4> HiInputs; in lowerV8I16GeneralSingleInputVectorShuffle() local
9413 std::copy_if(HiMask.begin(), HiMask.end(), std::back_inserter(HiInputs), in lowerV8I16GeneralSingleInputVectorShuffle()
9415 std::sort(HiInputs.begin(), HiInputs.end()); in lowerV8I16GeneralSingleInputVectorShuffle()
9416 HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end()); in lowerV8I16GeneralSingleInputVectorShuffle()
9421 std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin(); in lowerV8I16GeneralSingleInputVectorShuffle()
9422 int NumHToH = HiInputs.size() - NumLToH; in lowerV8I16GeneralSingleInputVectorShuffle()
9424 MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH); in lowerV8I16GeneralSingleInputVectorShuffle()
9426 MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH); in lowerV8I16GeneralSingleInputVectorShuffle()
10155 SmallVector<int, 4> HiInputs; in lowerV16I8VectorShuffle() local
10156 std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(HiInputs), in lowerV16I8VectorShuffle()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp11851 SmallVector<int, 4> HiInputs; in lowerV8I16GeneralSingleInputVectorShuffle() local
11852 copy_if(HiMask, std::back_inserter(HiInputs), [](int M) { return M >= 0; }); in lowerV8I16GeneralSingleInputVectorShuffle()
11853 array_pod_sort(HiInputs.begin(), HiInputs.end()); in lowerV8I16GeneralSingleInputVectorShuffle()
11854 HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end()); in lowerV8I16GeneralSingleInputVectorShuffle()
11859 std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin(); in lowerV8I16GeneralSingleInputVectorShuffle()
11860 int NumHToH = HiInputs.size() - NumLToH; in lowerV8I16GeneralSingleInputVectorShuffle()
11862 MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH); in lowerV8I16GeneralSingleInputVectorShuffle()
11864 MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH); in lowerV8I16GeneralSingleInputVectorShuffle()
12659 SmallVector<int, 4> HiInputs; in lowerV16I8VectorShuffle() local
12660 copy_if(Mask, std::back_inserter(HiInputs), [](int M) { return M >= 8; }); in lowerV16I8VectorShuffle()
[all …]