Home
last modified time | relevance | path

Searched refs:QueryTy (Results 1 – 1 of 1) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
DLegalityPredicates.cpp63 const LLT &QueryTy = Query.Types[TypeIdx]; in narrowerThan() local
64 return QueryTy.isScalar() && QueryTy.getSizeInBits() < Size; in narrowerThan()
71 const LLT &QueryTy = Query.Types[TypeIdx]; in widerThan() local
72 return QueryTy.isScalar() && QueryTy.getSizeInBits() > Size; in widerThan()
78 const LLT &QueryTy = Query.Types[TypeIdx]; in sizeNotPow2() local
79 return QueryTy.isScalar() && !isPowerOf2_32(QueryTy.getSizeInBits()); in sizeNotPow2()
91 const LLT &QueryTy = Query.Types[TypeIdx]; in numElementsNotPow2() local
92 return QueryTy.isVector() && isPowerOf2_32(QueryTy.getNumElements()); in numElementsNotPow2()