Searched refs:QueryTy (Results 1 – 4 of 4) sorted by relevance
96 const LLT QueryTy = Query.Types[TypeIdx]; in elementTypeIs() local97 return QueryTy.isVector() && QueryTy.getElementType() == EltTy; in elementTypeIs()104 const LLT QueryTy = Query.Types[TypeIdx]; in scalarNarrowerThan() local105 return QueryTy.isScalar() && QueryTy.getSizeInBits() < Size; in scalarNarrowerThan()112 const LLT QueryTy = Query.Types[TypeIdx]; in scalarWiderThan() local113 return QueryTy.isScalar() && QueryTy.getSizeInBits() > Size; in scalarWiderThan()136 const LLT QueryTy = Query.Types[TypeIdx]; in scalarOrEltNarrowerThan() local144 const LLT QueryTy = Query.Types[TypeIdx]; in scalarOrEltWiderThan() local160 return QueryTy.isScalar() && QueryTy.getSizeInBits() % Size != 0; in sizeNotMultipleOf()167 return QueryTy.isScalar() && in sizeNotPow2()[all …]
25 const LLT QueryTy = Query.Types[TypeIdx]; in isRegisterType() local26 unsigned TypeSize = QueryTy.getSizeInBits(); in isRegisterType()32 if (QueryTy.isVector()) { in isRegisterType()33 const int EltSize = QueryTy.getElementType().getSizeInBits(); in isRegisterType()
989 const LLT QueryTy = Query.Types[TypeIdx]; in minScalarIf()990 return QueryTy.isScalar() && in minScalarIf()991 QueryTy.getSizeInBits() < Ty.getSizeInBits() && in minScalarIf()1025 const LLT QueryTy = Query.Types[TypeIdx]; in maxScalarIf()1026 return QueryTy.isScalar() && in maxScalarIf()1027 QueryTy.getSizeInBits() > Ty.getSizeInBits() && in maxScalarIf()
207 const LLT QueryTy = Query.Types[TypeIdx]; in vectorSmallerThan() local208 return QueryTy.isVector() && QueryTy.getSizeInBits() < Size; in vectorSmallerThan()214 const LLT QueryTy = Query.Types[TypeIdx]; in vectorWiderThan() local215 return QueryTy.isVector() && QueryTy.getSizeInBits() > Size; in vectorWiderThan()221 const LLT QueryTy = Query.Types[TypeIdx]; in numElementsNotEven() local222 return QueryTy.isVector() && QueryTy.getNumElements() % 2 != 0; in numElementsNotEven()271 const LLT QueryTy = Query.Types[TypeIdx]; in elementTypeIsLegal() local272 if (!QueryTy.isVector()) in elementTypeIsLegal()274 const LLT EltTy = QueryTy.getElementType(); in elementTypeIsLegal()