Lines Matching refs:OpndIdx
450 void copyByValueOperandIntoLocalTemp(CallInst *CI, int OpndIdx);
452 void copyLocalTempOfByValueOperandIntoArguments(CallInst *CI, int OpndIdx);
594 int OpndIdx) { in copyByValueOperandIntoLocalTemp() argument
595 Type *AggTy = CI->getParamByValType(OpndIdx); in copyByValueOperandIntoLocalTemp()
600 Align Alignment(CI->getParamAlign(OpndIdx).valueOrOne()); in copyByValueOperandIntoLocalTemp()
606 CI->getArgOperand(OpndIdx)->getName(), F.getEntryBlock().begin()); in copyByValueOperandIntoLocalTemp()
613 CI->getArgOperand(OpndIdx), in copyByValueOperandIntoLocalTemp()
615 CI->setArgOperand(OpndIdx, NewAlloca); in copyByValueOperandIntoLocalTemp()
621 CallInst *CI, int OpndIdx) { in copyLocalTempOfByValueOperandIntoArguments() argument
622 Type *AggTy = CI->getParamByValType(OpndIdx); in copyLocalTempOfByValueOperandIntoArguments()
627 Align Alignment(CI->getParamAlign(OpndIdx).valueOrOne()); in copyLocalTempOfByValueOperandIntoArguments()
634 Builder.CreateMemCpy(F.getArg(OpndIdx), /*DstAlign*/ Alignment, in copyLocalTempOfByValueOperandIntoArguments()
635 CI->getArgOperand(OpndIdx), in copyLocalTempOfByValueOperandIntoArguments()