Lines Matching refs:ARGS
2282 for (Argument &A : F.args())
3571 #define GET_OR_DISTINCT(CLASS, ARGS) \
3572 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
5079 SmallVector<Value*, 8> Args;
5096 Args.push_back(ArgList[i].V);
5119 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
5139 bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5146 if (!Args.empty() &&
5164 Args.push_back(V);
5285 SmallVector<Value *, 8> Args;
5286 if (ParseExceptionArgs(Args, PFS))
5289 Inst = CatchPadInst::Create(CatchSwitch, Args);
5308 SmallVector<Value *, 8> Args;
5309 if (ParseExceptionArgs(Args, PFS))
5312 Inst = CleanupPadInst::Create(ParentPad, Args);
5683 SmallVector<Value*, 8> Args;
5700 Args.push_back(ArgList[i].V);
5722 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);