Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp881 for (; I < SystemZ::VectorBytes; ++I) { in isVectorConstantLegal()
888 if (I == SystemZ::VectorBytes) { in isVectorConstantLegal()
5518 unsigned char Bytes[SystemZ::VectorBytes];
5597 for (unsigned I = 0; I < SystemZ::VectorBytes; ++I) { in matchPermute()
5603 if ((Elt ^ P.Bytes[I]) & (SystemZ::VectorBytes - 1)) in matchPermute()
5605 int ModelOpNo = P.Bytes[I] / SystemZ::VectorBytes; in matchPermute()
5606 int RealOpNo = unsigned(Elt) / SystemZ::VectorBytes; in matchPermute()
5635 for (unsigned From = 0; From < SystemZ::VectorBytes; ++From) { in matchDoublePermute()
5643 if (To == SystemZ::VectorBytes) in matchDoublePermute()
5726 int ExpectedShift = (Index - I) % SystemZ::VectorBytes; in isShlDoublePermute()
[all …]
H A DSystemZ.h158 const unsigned VectorBytes = VectorBits / 8; variable