Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DReplaceWithVeclib.cpp49 Function *TLIFunc = M->getFunction(TLIName); in replaceWithTLIFunction() local
50 if (!TLIFunc) { in replaceWithTLIFunction()
51 TLIFunc = Function::Create(OldFunc->getFunctionType(), in replaceWithTLIFunction()
53 TLIFunc->copyAttributesFrom(OldFunc); in replaceWithTLIFunction()
56 << TLIName << "` of type `" << *(TLIFunc->getType()) in replaceWithTLIFunction()
63 appendToCompilerUsed(*M, {TLIFunc}); in replaceWithTLIFunction()
77 CallInst *Replacement = IRBuilder.CreateCall(TLIFunc, Args, OpBundles); in replaceWithTLIFunction()
78 assert(OldFunc->getFunctionType() == TLIFunc->getFunctionType() && in replaceWithTLIFunction()