Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp13339 SmallVector<int, 4> HiInputs; in lowerV8I16GeneralSingleInputShuffle() local
13340 copy_if(HiMask, std::back_inserter(HiInputs), [](int M) { return M >= 0; }); in lowerV8I16GeneralSingleInputShuffle()
13341 array_pod_sort(HiInputs.begin(), HiInputs.end()); in lowerV8I16GeneralSingleInputShuffle()
13342 HiInputs.erase(llvm::unique(HiInputs), HiInputs.end()); in lowerV8I16GeneralSingleInputShuffle()
13345 int NumLToH = llvm::lower_bound(HiInputs, 4) - HiInputs.begin(); in lowerV8I16GeneralSingleInputShuffle()
13346 int NumHToH = HiInputs.size() - NumLToH; in lowerV8I16GeneralSingleInputShuffle()
13348 MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH); in lowerV8I16GeneralSingleInputShuffle()
13350 MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH); in lowerV8I16GeneralSingleInputShuffle()
14231 SmallVector<int, 4> HiInputs; in lowerV16I8Shuffle() local
14232 copy_if(Mask, std::back_inserter(HiInputs), [](int M) { return M >= 8; }); in lowerV16I8Shuffle()
[all …]