Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp494 ConstantInt *ACst = dyn_cast<ConstantInt>(A); in getTypeOfMaskedICmp() local
498 bool icmp_abit = (ACst != 0 && !ACst->isZero() && in getTypeOfMaskedICmp()
499 ACst->getValue().isPowerOf2()); in getTypeOfMaskedICmp()
536 else if (ACst != 0 && CCst != 0 && in getTypeOfMaskedICmp()
537 ConstantExpr::getAnd(ACst, CCst) == CCst) { in getTypeOfMaskedICmp()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp445 ConstantInt *ACst = dyn_cast<ConstantInt>(A); in getTypeOfMaskedICmp() local
449 bool icmp_abit = (ACst && !ACst->isZero() && in getTypeOfMaskedICmp()
450 ACst->getValue().isPowerOf2()); in getTypeOfMaskedICmp()
484 } else if (ACst && CCst && in getTypeOfMaskedICmp()
485 ConstantExpr::getAnd(ACst, CCst) == CCst) { in getTypeOfMaskedICmp()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp235 ConstantInt *ACst = dyn_cast<ConstantInt>(A); in getMaskedICmpType() local
239 bool IsAPow2 = (ACst && !ACst->isZero() && ACst->getValue().isPowerOf2()); in getMaskedICmpType()
261 } else if (ACst && CCst && ConstantExpr::getAnd(ACst, CCst) == CCst) { in getMaskedICmpType()