Searched refs:TheFn (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | MatrixBuilder.h | 75 Function *TheFn = Intrinsic::getDeclaration( 78 CallInst *Call = B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name); 98 Function *TheFn = Intrinsic::getDeclaration( 101 CallInst *Call = B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name); 118 Function *TheFn = Intrinsic::getDeclaration( 121 return B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name); 139 Function *TheFn = Intrinsic::getDeclaration( 141 return B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | WholeProgramDevirt.cpp | 618 void applySingleImplDevirt(VTableSlotInfo &SlotInfo, Constant *TheFn, 694 static ValueInfo lookUpFunctionValueInfo(Function *TheFn, 1162 Constant *TheFn, bool &IsExported) { in applySingleImplDevirt() argument 1165 if (FunctionsToSkip.match(TheFn->stripPointerCasts()->getName())) in applySingleImplDevirt() 1174 TheFn->stripPointerCasts()->getName(), OREGetter); in applySingleImplDevirt() 1180 Builder.CreateBitCast(TheFn, CB.getCalledOperand()->getType()); in applySingleImplDevirt() 1283 auto *TheFn = TargetsForSlot[0].Fn; in trySingleImplDevirt() local 1285 if (TheFn != Target.Fn) in trySingleImplDevirt() 1293 applySingleImplDevirt(SlotInfo, TheFn, IsExported); in trySingleImplDevirt() 1300 if (TheFn->hasLocalLinkage()) { in trySingleImplDevirt() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | IRBuilder.cpp | 94 Function *TheFn = in CreateVScale() local 96 CallInst *CI = CreateCall(TheFn, {}, {}, Name); in CreateVScale() 145 Function *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys); in CreateMemSet() local 147 CallInst *CI = CreateCall(TheFn, Ops); in CreateMemSet() 173 Function *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset_inline, Tys); in CreateMemSetInline() local 175 CallInst *CI = CreateCall(TheFn, Ops); in CreateMemSetInline() 200 Function *TheFn = Intrinsic::getDeclaration( in CreateElementUnorderedAtomicMemSet() local 203 CallInst *CI = CreateCall(TheFn, Ops); in CreateElementUnorderedAtomicMemSet() 230 Function *TheFn = Intrinsic::getDeclaration(M, IntrID, Tys); in CreateMemTransferInst() local 232 CallInst *CI = CreateCall(TheFn, Ops); in CreateMemTransferInst() [all …]
|