Searched refs:getFunctionType (Results 101 - 125 of 192) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp1302 Vals.push_back(getGlobalObjectValueTypeID(F.getFunctionType(), &F));
1349 Ty = TypedPointerType::get(F->getFunctionType(), F->getAddressSpace());
2376 FunctionType *FTy = II->getFunctionType();
2519 FunctionType *FTy = CI.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp197 FunctionType *FT = F->getFunctionType();
H A DIRSimilarityIdentifier.cpp142 FunctionType *FT = II->getFunctionType();
H A DTargetTransformInfo.cpp81 FunctionType *FTy = CI.getCalledFunction()->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp2735 FunctionType *FnTy = F.getFunctionType();
2807 FunctionType *FnTy = F->getFunctionType();
3020 FunctionType *OldFnTy = OldFn->getFunctionType();
3028 << "' from " << *OldFn->getFunctionType() << " to "
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp869 if (F.getFunctionType()->isVarArg())
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp3173 Value *Shift = IRB.CreateCall(I.getFunctionType(), I.getCalledOperand(),
4248 FunctionType *FT = CB.getFunctionType();
4808 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams();
4994 llvm::drop_begin(CB.args(), CB.getFunctionType()->getNumParams())) {
5125 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams();
5336 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams();
5527 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams();
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1025 getOrCreateType(CGM.getContext().getFunctionType(F->getReturnType(),
1839 getOrCreateType(CGM.getContext().getFunctionType(
3956 QualType FnType = CGM.getContext().getFunctionType(
4200 CGDebugInfo::getFunctionType(const FunctionDecl *FD, QualType RetTy, function in class:CGDebugInfo
4209 return CGM.getContext().getFunctionType(RetTy, ArgTypes,
5065 auto *FnTy = Block.getBlockExpr()->getFunctionType();
H A DCGDeclCXX.cpp980 LocalCXXStermFinalizers.emplace_back(DtorFn.getFunctionType(),
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp958 FunctionType *FTy = CI->getFunctionType();
1106 FunctionType *FuncTy = CI->getFunctionType();
H A DStatepointLowering.cpp1147 SI.CLI.IsVarArg = Call->getFunctionType()->isVarArg();
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp1307 assert(F->getFunctionType() == T && "Function type does not match.");
1377 return TLI->isValidProtoForLibFunc(*F->getFunctionType(), TheLibFunc, *M);
H A DLocal.cpp2841 CallInst *NewCall = CallInst::Create(II->getFunctionType(),
2907 InvokeInst::Create(CI->getFunctionType(), CI->getCalledOperand(), Split,
4042 OpIdx >= CB.getFunctionType()->getNumParams()) {
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3897 FunctionType *FT = F->getFunctionType();
4313 FunctionType *FTy = CI->getFunctionType();
4354 FunctionType *FTy = II->getFunctionType();
4397 FunctionType *FTy = CBI->getFunctionType();
H A DInstructions.cpp743 auto *NewCI = CallInst::Create(CI->getFunctionType(), CI->getCalledOperand(),
867 II->getFunctionType(), II->getCalledOperand(), II->getNormalDest(),
940 CBI->getFunctionType(), CBI->getCalledOperand(), CBI->getDefaultDest(),
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp875 const FunctionType *FuncType = Decl->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp1173 FunctionType *FTy = F.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp442 EnumerateType(Call->getFunctionType());
H A DBitcodeWriter.cpp1493 Vals.push_back(VE.getTypeID(F.getFunctionType()));
2588 Record.push_back(VE.getTypeID(IA->getFunctionType()));
3030 FunctionType *FTy = II->getFunctionType();
3105 FunctionType *FTy = CBI->getFunctionType();
3270 FunctionType *FTy = CI.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1153 return TTI::TCC_Basic * (F->getFunctionType()->getNumParams() + 1);
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp7882 Context.getFunctionType(ReturnType, Type->getParamTypes(), EPI));
8833 MD->setType(Context.getFunctionType(FPT->getReturnType(),
8863 MD->setType(Context.getFunctionType(FPT->getReturnType(),
8874 MD->setType(Context.getFunctionType(FPT->getReturnType(),
9123 FD->setType(Context.getFunctionType(FPT->getReturnType(),
10894 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI);
11087 return Context.getFunctionType(Context.VoidTy, std::nullopt, EPI);
11273 R = Context.getFunctionType(ConvType, std::nullopt,
13944 auto QT = Context.getFunctionType(ResultTy, Args, EPI);
14122 DerivedCtor->setType(Context.getFunctionType(FP
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1063 T = getContext().getFunctionType(T, std::nullopt, Ext);
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1269 const FunctionType *getFunctionType(bool BlocksToo = true) const;
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp1117 const FunctionType *Decl::getFunctionType(bool BlocksToo) const { function in class:Decl
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp620 NumFixedArgs = CalleeFn->getFunctionType()->getNumParams();

Completed in 708 milliseconds

12345678