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

/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp76 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); local
78 return CI1->getValue().slt(CI2->getValue());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h188 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); local
190 return CI1->getValue().slt(CI2->getValue());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1697 ConstantInt *CI1 = dyn_cast<ConstantInt>(C); local
1698 if (!CI1) return 0;
1704 APInt Xor = CI1->getValue() ^ CI2->getValue();
1708 Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1);
H A DInstCombineCompares.cpp1654 /// I = icmp ugt (add (add A, B), CI2), CI1
1661 ConstantInt *CI2, ConstantInt *CI1,
1681 // Check to see that CI1 is an all-ones value with NewWidth bits.
1682 if (CI1->getBitWidth() == NewWidth ||
1683 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1689 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
1660 ProcessUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B, ConstantInt *CI2, ConstantInt *CI1, InstCombiner &IC) argument

Completed in 71 milliseconds