Lines Matching refs:CCst
447 ConstantInt *CCst = dyn_cast<ConstantInt>(C); in getTypeOfMaskedICmp() local
454 if (CCst && CCst->isZero()) { in getTypeOfMaskedICmp()
484 } else if (ACst && CCst && in getTypeOfMaskedICmp()
485 ConstantExpr::getAnd(ACst, CCst) == CCst) { in getTypeOfMaskedICmp()
499 } else if (BCst && CCst && in getTypeOfMaskedICmp()
500 ConstantExpr::getAnd(BCst, CCst) == CCst) { in getTypeOfMaskedICmp()
790 ConstantInt *CCst = dyn_cast<ConstantInt>(C); in foldLogOpOfMaskedICmps() local
791 if (!CCst) return nullptr; in foldLogOpOfMaskedICmps()
795 CCst = cast<ConstantInt>(ConstantExpr::getXor(BCst, CCst)); in foldLogOpOfMaskedICmps()
801 (CCst->getValue() ^ ECst->getValue())) != 0) in foldLogOpOfMaskedICmps()
804 Value *NewOr2 = ConstantExpr::getOr(CCst, ECst); in foldLogOpOfMaskedICmps()