Home
last modified time | relevance | path

Searched refs:ByValArgsToTransform (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp105 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
926 SmallPtrSet<Argument *, 8> ByValArgsToTransform; in promoteArguments() local
976 ByValArgsToTransform.insert(PtrArg); in promoteArguments()
1001 if (ArgsToPromote.empty() && ByValArgsToTransform.empty()) in promoteArguments()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DArgumentPromotion.h36 SmallPtrSetImpl<Argument *> &ByValArgsToTransform);