Searched refs:StartMask (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedAccessPass.cpp253 int StartMask = 0; local
256 StartMask = Mask[I];
258 // StartMask defined by the last value in lane
259 StartMask = Mask[(LaneLen - 1) * Factor + I] - J;
261 // StartMask defined by some non-zero value in the j loop
262 StartMask = SavedLaneValue - (LaneLen - 1 - SavedNoUndefs);
264 // else StartMask remains set to 0, i.e. all elements are undefs
266 if (StartMask < 0)
269 if (StartMask + LaneLen > OpNumElts*2)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9338 unsigned StartMask = 0; local
9342 StartMask = Mask[IdxJ * Factor + IdxI] - IdxJ;
9349 // Note: StartMask cannot be negative, it's checked in
9352 Op0, Op1, createSequentialMask(Builder, StartMask, LaneLen, 0)));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp17314 unsigned StartMask = 0; local
17318 StartMask = Mask[IdxJ * Factor + IdxI] - IdxJ;
17322 // Note: If all elements in a chunk are undefs, StartMask=0!
17326 // Note: StartMask cannot be negative, it's checked in
17329 Op0, Op1, createSequentialMask(Builder, StartMask, LaneLen, 0)));

Completed in 234 milliseconds