Lines Matching refs:Arg
330 static Value *HandleByValArgument(Value *Arg, Instruction *TheCall,
334 Type *AggTy = cast<PointerType>(Arg->getType())->getElementType();
344 return Arg;
348 if (getOrEnforceKnownAlignment(Arg, ByValAlignment,
350 return Arg;
356 LLVMContext &Context = Arg->getContext();
372 Value *NewAlloca = new AllocaInst(AggTy, 0, Align, Arg->getName(),
380 Value *SrcCast = new BitCastInst(Arg, VoidPtrTy, "tmp", TheCall);