Home | History | Annotate | Download | only in Utils

Lines Matching defs:CI

334   ConstantInt *CI = dyn_cast<ConstantInt>(V);
335 if (CI || !isa<Constant>(V) || !V->getType()->isPointerTy())
336 return CI;
349 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) {
351 if (CI->getType() == PtrTy)
352 return CI;
355 (ConstantExpr::getIntegerCast(CI, PtrTy, /*isSigned=*/false));
713 ConstantInt *CI = mdconst::extract<ConstantInt>(MD->getOperand(MD_i));
714 Weights.push_back(CI->getValue().getZExtValue());
818 ConstantInt *CI = mdconst::extract<ConstantInt>(MD->getOperand(i));
819 Weights.push_back(CI->getValue().getZExtValue());
1677 const CallInst *CI = dyn_cast<CallInst>(I);
1678 if (!CI)
1680 if (CI->cannotDuplicate())
2204 CmpInst *CI = cast<CmpInst>(NewCond);
2205 CI->setPredicate(CI->getInversePredicate());
4499 SwitchInst::CaseIt CI = SI->case_begin();
4500 ConstantInt *MinCaseVal = CI.getCaseValue();
4501 ConstantInt *MaxCaseVal = CI.getCaseValue();
4510 for (SwitchInst::CaseIt E = SI->case_end(); CI != E; ++CI) {
4511 ConstantInt *CaseVal = CI.getCaseValue();
4520 if (!GetCaseResults(SI, CaseVal, CI.getCaseSuccessor(), &CommonDest,