HomeSort by: relevance | last modified time | path
    Searched refs:StartMask (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterleavedAccessPass.cpp 263 int StartMask = 0;
266 StartMask = Mask[I];
268 // StartMask defined by the last value in lane
269 StartMask = Mask[(LaneLen - 1) * Factor + I] - J;
271 // StartMask defined by some non-zero value in the j loop
272 StartMask = SavedLaneValue - (LaneLen - 1 - SavedNoUndefs);
274 // else StartMask remains set to 0, i.e. all elements are undefs
276 if (StartMask < 0)
279 if (StartMask + LaneLen > OpNumElts*2)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 11535 unsigned StartMask = 0;
11539 StartMask = Mask[IdxJ * Factor + IdxI] - IdxJ;
11546 // Note: StartMask cannot be negative, it's checked in
11549 Op0, Op1, createSequentialMask(StartMask, LaneLen, 0)));
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 19903 unsigned StartMask = 0;
19907 StartMask = Mask[IdxJ * Factor + IdxI] - IdxJ;
19911 // Note: If all elements in a chunk are undefs, StartMask=0!
19915 // Note: StartMask cannot be negative, it's checked in
19918 Op0, Op1, createSequentialMask(StartMask, LaneLen, 0)));

Completed in 42 milliseconds