Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp1350 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1))) in visitAnd() local
1351 if (Instruction *Res = OptAndOp(Op0I, Op0CI, AndRHS, I)) in visitAnd()
2714 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1))) { in visitXor() local
2718 Constant *NegOp0CI = ConstantExpr::getNeg(Op0CI); in visitXor()
2725 Constant *C = Builder->getInt(RHS->getValue() + Op0CI->getValue()); in visitXor()
2731 if (MaskedValueIsZero(Op0I->getOperand(0), Op0CI->getValue(), in visitXor()
2733 Constant *NewRHS = ConstantExpr::getOr(Op0CI, RHS); in visitXor()
2736 Constant *CommonBits = ConstantExpr::getAnd(Op0CI, RHS); in visitXor()
2754 ConstantInt *C2 = Op0CI, *C3 = RHS; in visitXor()