Lines Matching refs:ByValArgsToTransform
105 SmallPtrSetImpl<Argument *> &ByValArgsToTransform, in doPromotion() argument
140 if (ByValArgsToTransform.count(&*I)) { in doPromotion()
258 if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) { in doPromotion()
261 } else if (ByValArgsToTransform.count(&*I)) { in doPromotion()
375 if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) { in doPromotion()
384 if (ByValArgsToTransform.count(&*I)) { in doPromotion()
840 SmallPtrSetImpl<Argument *> &ByValArgsToTransform) { in areFunctionArgsABICompatible() argument
848 !TTI.areFunctionArgsABICompatible(Caller, Callee, ByValArgsToTransform)) in areFunctionArgsABICompatible()
926 SmallPtrSet<Argument *, 8> ByValArgsToTransform; in promoteArguments() local
976 ByValArgsToTransform.insert(PtrArg); in promoteArguments()
1001 if (ArgsToPromote.empty() && ByValArgsToTransform.empty()) in promoteArguments()
1005 *F, TTI, ArgsToPromote, ByValArgsToTransform)) in promoteArguments()
1008 return doPromotion(F, ArgsToPromote, ByValArgsToTransform, ReplaceCallSite); in promoteArguments()