Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp3133 CallInst *CustomCI = IRB.CreateCall(CustomF, Args); in visitWrappedCallBase() local
3134 CustomCI->setCallingConv(CI->getCallingConv()); in visitWrappedCallBase()
3135 CustomCI->setAttributes(transformFunctionAttributes( in visitWrappedCallBase()
3143 if (CustomCI->getArgOperand(ArgNo)->getType() == in visitWrappedCallBase()
3145 CustomCI->addParamAttr(ArgNo, Attribute::ZExt); in visitWrappedCallBase()
3148 if (CustomCI->getArgOperand(OriginArgNo)->getType() == in visitWrappedCallBase()
3150 CustomCI->addParamAttr(OriginArgNo, Attribute::ZExt); in visitWrappedCallBase()
3158 DFSF.setShadow(CustomCI, DFSF.expandFromPrimitiveShadow( in visitWrappedCallBase()
3163 DFSF.setOrigin(CustomCI, OriginLoad); in visitWrappedCallBase()
3167 CI->replaceAllUsesWith(CustomCI); in visitWrappedCallBase()