Home | History | Annotate | Download | only in Utils

Lines Matching refs:CI

60   CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
61 if (!CI)
64 Function *Fn = CI->getCalledFunction();
68 Value *ArgValue = CI->getArgOperand(0);
69 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
73 LLVMContext &Context = CI->getContext();
107 CallInst *CI = dyn_cast<CallInst>(CmpI->getOperand(0));
108 if (!CI)
111 Function *Fn = CI->getCalledFunction();
115 Value *ArgValue = CI->getArgOperand(0);
116 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
120 LLVMContext &Context = CI->getContext();
156 CallInst *CI = dyn_cast<CallInst>(BI++);
157 if (!CI)
160 Function *Fn = CI->getCalledFunction();
162 Value *Exp = CI->getArgOperand(0);
163 CI->replaceAllUsesWith(Exp);
164 CI->eraseFromParent();