Lines Matching defs:QueryTy
113 const LLT QueryTy = Query.Types[TypeIdx];
114 return QueryTy.isVector() && QueryTy.getElementType() == EltTy;
121 const LLT QueryTy = Query.Types[TypeIdx];
122 return QueryTy.isScalar() && QueryTy.getSizeInBits() < Size;
129 const LLT QueryTy = Query.Types[TypeIdx];
130 return QueryTy.isScalar() && QueryTy.getSizeInBits() > Size;
153 const LLT QueryTy = Query.Types[TypeIdx];
154 return QueryTy.getScalarSizeInBits() < Size;
161 const LLT QueryTy = Query.Types[TypeIdx];
162 return QueryTy.getScalarSizeInBits() > Size;
168 const LLT QueryTy = Query.Types[TypeIdx];
169 return !isPowerOf2_32(QueryTy.getScalarSizeInBits());
176 const LLT QueryTy = Query.Types[TypeIdx];
177 return QueryTy.isScalar() && QueryTy.getSizeInBits() % Size != 0;
183 const LLT QueryTy = Query.Types[TypeIdx];
184 return QueryTy.isScalar() &&
185 !llvm::has_single_bit<uint32_t>(QueryTy.getSizeInBits());
221 const LLT QueryTy = Query.Types[TypeIdx];
222 return QueryTy.isFixedVector() && !isPowerOf2_32(QueryTy.getNumElements());