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.cpp815 for (; I < SystemZ::VectorBytes; ++I) { in isVectorConstantLegal()
822 if (I == SystemZ::VectorBytes) { in isVectorConstantLegal()
4934 unsigned char Bytes[SystemZ::VectorBytes];
5013 for (unsigned I = 0; I < SystemZ::VectorBytes; ++I) { in matchPermute()
5019 if ((Elt ^ P.Bytes[I]) & (SystemZ::VectorBytes - 1)) in matchPermute()
5021 int ModelOpNo = P.Bytes[I] / SystemZ::VectorBytes; in matchPermute()
5022 int RealOpNo = unsigned(Elt) / SystemZ::VectorBytes; in matchPermute()
5051 for (unsigned From = 0; From < SystemZ::VectorBytes; ++From) { in matchDoublePermute()
5059 if (To == SystemZ::VectorBytes) in matchDoublePermute()
5142 int ExpectedShift = (Index - I) % SystemZ::VectorBytes; in isShlDoublePermute()
[all …]
H A DSystemZ.h158 const unsigned VectorBytes = VectorBits / 8; variable