Searched defs:CI1 (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1701 ConstantInt *CI1 = dyn_cast<ConstantInt>(C); local
1702 if (!CI1) return 0;
1708 APInt Xor = CI1->getValue() ^ CI2->getValue();
1712 Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1);
H A DInstCombineCompares.cpp1655 /// I = icmp ugt (add (add A, B), CI2), CI1
1662 ConstantInt *CI2, ConstantInt *CI1,
1682 // Check to see that CI1 is an all-ones value with NewWidth bits.
1683 if (CI1->getBitWidth() == NewWidth ||
1684 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1690 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
1661 ProcessUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B, ConstantInt *CI2, ConstantInt *CI1, InstCombiner &IC) argument

Completed in 76 milliseconds