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() local137 return QueryTy.getScalarSizeInBits() < Size; in scalarOrEltNarrowerThan()144 const LLT QueryTy = Query.Types[TypeIdx]; in scalarOrEltWiderThan() local145 return QueryTy.getScalarSizeInBits() > Size; in scalarOrEltWiderThan()[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()
1002 const LLT QueryTy = Query.Types[TypeIdx]; in minScalarIf()1003 return QueryTy.isScalar() && in minScalarIf()1004 QueryTy.getSizeInBits() < Ty.getSizeInBits() && in minScalarIf()1038 const LLT QueryTy = Query.Types[TypeIdx]; in maxScalarIf()1039 return QueryTy.isScalar() && in maxScalarIf()1040 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()274 const LLT QueryTy = Query.Types[TypeIdx]; in elementTypeIsLegal() local275 if (!QueryTy.isVector()) in elementTypeIsLegal()277 const LLT EltTy = QueryTy.getElementType(); in elementTypeIsLegal()