Searched refs:QueryTy (Results 1 – 4 of 4) sorted by relevance
113 const LLT QueryTy = Query.Types[TypeIdx]; in elementTypeIs() local114 return QueryTy.isVector() && QueryTy.getElementType() == EltTy; in elementTypeIs()121 const LLT QueryTy = Query.Types[TypeIdx]; in scalarNarrowerThan() local122 return QueryTy.isScalar() && QueryTy.getSizeInBits() < Size; in scalarNarrowerThan()129 const LLT QueryTy = Query.Types[TypeIdx]; in scalarWiderThan() local130 return QueryTy.isScalar() && QueryTy.getSizeInBits() > Size; in scalarWiderThan()153 const LLT QueryTy = Query.Types[TypeIdx]; in scalarOrEltNarrowerThan() local154 return QueryTy.getScalarSizeInBits() < Size; in scalarOrEltNarrowerThan()161 const LLT QueryTy = Query.Types[TypeIdx]; in scalarOrEltWiderThan() local162 return QueryTy.getScalarSizeInBits() > Size; in scalarOrEltWiderThan()[all …]
23 const LLT QueryTy = Query.Types[TypeIdx]; in isRegisterType() local24 unsigned TypeSize = QueryTy.getSizeInBits(); in isRegisterType()30 if (QueryTy.isVector()) { in isRegisterType()31 const int EltSize = QueryTy.getElementType().getSizeInBits(); in isRegisterType()
1078 const LLT QueryTy = Query.Types[TypeIdx]; in minScalarIf()1079 return QueryTy.isScalar() && in minScalarIf()1080 QueryTy.getSizeInBits() < Ty.getSizeInBits() && in minScalarIf()1114 const LLT QueryTy = Query.Types[TypeIdx]; in maxScalarIf()1115 return QueryTy.isScalar() && in maxScalarIf()1116 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()277 const LLT QueryTy = Query.Types[TypeIdx]; in elementTypeIsLegal() local278 if (!QueryTy.isVector()) in elementTypeIsLegal()280 const LLT EltTy = QueryTy.getElementType(); in elementTypeIsLegal()