Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DReplaceWithVeclib.cpp48 Function *TLIFunc = M->getFunction(TLIName); in replaceWithTLIFunction() local
49 if (!TLIFunc) { in replaceWithTLIFunction()
50 TLIFunc = Function::Create(OldFunc->getFunctionType(), in replaceWithTLIFunction()
52 TLIFunc->copyAttributesFrom(OldFunc); in replaceWithTLIFunction()
55 << TLIName << "` of type `" << *(TLIFunc->getType()) in replaceWithTLIFunction()
62 appendToCompilerUsed(*M, {TLIFunc}); in replaceWithTLIFunction()
76 CallInst *Replacement = IRBuilder.CreateCall(TLIFunc, Args, OpBundles); in replaceWithTLIFunction()
77 assert(OldFunc->getFunctionType() == TLIFunc->getFunctionType() && in replaceWithTLIFunction()