Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/Target/SystemZ/
HDSystemZISelLowering.cpp3309 unsigned char Bytes[SystemZ::VectorBytes];
3388 for (unsigned I = 0; I < SystemZ::VectorBytes; ++I) { in matchPermute()
3394 if ((Elt ^ P.Bytes[I]) & (SystemZ::VectorBytes - 1)) in matchPermute()
3396 int ModelOpNo = P.Bytes[I] / SystemZ::VectorBytes; in matchPermute()
3397 int RealOpNo = unsigned(Elt) / SystemZ::VectorBytes; in matchPermute()
3426 for (unsigned From = 0; From < SystemZ::VectorBytes; ++From) { in matchDoublePermute()
3434 if (To == SystemZ::VectorBytes) in matchDoublePermute()
3503 int ExpectedShift = (Index - I) % SystemZ::VectorBytes; in isShlDoublePermute()
3504 int ModelOpNo = unsigned(ExpectedShift + I) / SystemZ::VectorBytes; in isShlDoublePermute()
3505 int RealOpNo = unsigned(Index) / SystemZ::VectorBytes; in isShlDoublePermute()
[all …]
HDSystemZ.h102 const unsigned VectorBytes = VectorBits / 8; variable