Searched defs:InitCall (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp64 CallInst *InitCall = CallInst::Create(InitFn, Args, "newargc", InsertPos); local
75 InitCall->setArgOperand(1,
76 CastInst::Create(opcode, AI, ArgVTy, "argv.cast", InitCall));
78 InitCall->setArgOperand(1, AI);
89 opcode = CastInst::getCastOpcode(InitCall, true, AI->getType(), true);
91 CastInst::Create(opcode, InitCall, AI->getType(), "", InsertPos));
95 InitCall->setArgOperand(0,
97 "argc.cast", InitCall));
99 AI->replaceAllUsesWith(InitCall);
100 InitCall
[all...]

Completed in 108 milliseconds