Searched refs:getFunctionType (Results 76 - 100 of 192) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp400 if (!std::empty(ResolvedFunction->getFunctionType()->params())) {
H A DCloneFunction.cpp333 FunctionType::get(F->getFunctionType()->getReturnType(), ArgTypes,
334 F->getFunctionType()->isVarArg());
H A DSimplifyLibCalls.cpp477 FunctionType *FT = Callee->getFunctionType();
736 Type *PT = Callee->getFunctionType()->getParamType(0);
807 Type *PT = Callee->getFunctionType()->getParamType(0);
907 Type *PT = Callee->getFunctionType()->getParamType(0);
3012 FunctionType *FT = Callee->getFunctionType();
3133 FunctionType *FT = Callee->getFunctionType();
3359 FunctionType *FT = Callee->getFunctionType();
H A DInlineFunction.cpp2443 for (unsigned i = CalledFunc->getFunctionType()->getNumParams();
2477 ArgNo < CI->getFunctionType()->getNumParams(); ++ArgNo)
2489 CI->getFunctionType(), CI->getCalledOperand(), Params, "", CI);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp187 if (!F.isDeclaration() || F.getFunctionType() == EmptyFT ||
H A DLowerTypeTests.cpp1066 Function *RealF = Function::Create(F->getFunctionType(),
1080 FDecl = Function::Create(F->getFunctionType(), GlobalValue::ExternalLinkage,
1086 FDecl = Function::Create(F->getFunctionType(), GlobalValue::ExternalLinkage,
1097 F->getFunctionType(), GlobalValue::ExternalLinkage,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h227 TypeIndex getFunctionType() const { return FunctionType; } function in class:llvm::codeview::MemberFuncIdRecord
619 TypeIndex getFunctionType() const { return FunctionType; } function in class:llvm::codeview::FuncIdRecord
/freebsd-current/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp376 TypedPointerType::get(F.getFunctionType(), F.getAddressSpace()));
480 EnumerateType(Call->getFunctionType());
/freebsd-current/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp266 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTables.cpp469 EmitCallAndReturnForThunk(llvm::FunctionCallee(Fn->getFunctionType(), Callee),
525 if (ThunkFn->getFunctionType() != ThunkFnTy) {
H A DCodeGenModule.h1144 CXXGlobalDtorsOrStermFinalizers.emplace_back(DtorFn.getFunctionType(),
1150 CXXGlobalDtorsOrStermFinalizers.emplace_back(DtorFn.getFunctionType(),
H A DCGDebugInfo.h454 QualType getFunctionType(const FunctionDecl *FD, QualType RetTy,
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp207 FunctionType *FTy = Callee->getFunctionType();
547 FunctionType *FTy = F->getFunctionType();
H A DInlineCost.cpp1676 Type *RT = CB.getFunctionType()->getReturnType();
2273 if (!F || F->getFunctionType() != Call.getFunctionType()) {
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp367 New->setType(Context.getFunctionType(
394 New->setType(Context.getFunctionType(
H A DSemaDeclAttr.cpp71 return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D);
92 if (const FunctionType *FnTy = D->getFunctionType())
101 if (const FunctionType *FnTy = D->getFunctionType())
120 if (const FunctionType *FnTy = D->getFunctionType())
135 if (const FunctionType *FnTy = D->getFunctionType())
149 if (const FunctionType *FnTy = D->getFunctionType())
1640 if (D->getFunctionType()) {
3128 ? D->getFunctionType()
3153 if (D->getFunctionType() &&
3154 D->getFunctionType()
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h1178 return CreateInvoke(Callee.getFunctionType(), Callee.getCallee(),
1186 return CreateInvoke(Callee.getFunctionType(), Callee.getCallee(),
1214 return CreateCallBr(Callee.getFunctionType(), Callee.getCallee(),
1222 return CreateCallBr(Callee.getFunctionType(), Callee.getCallee(),
2420 return CreateCall(Callee.getFunctionType(), Callee.getCallee(), Args, Name,
2427 return CreateCall(Callee.getFunctionType(), Callee.getCallee(), Args,
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp956 Check(isa<PointerType>(Resolver->getFunctionType()->getReturnType()),
2617 FunctionType *FT = F.getFunctionType();
2856 FunctionType *FT = F.getFunctionType();
2865 FunctionType *FT = F.getFunctionType();
3351 FunctionType *FTy = Call.getFunctionType();
3697 FunctionType *CallerTy = F->getFunctionType();
3698 FunctionType *CalleeTy = CI.getFunctionType();
5103 FunctionType *IFTy = IF->getFunctionType();
6612 FunctionType *FTy = Call.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp605 printTypeIndex("Type", Func.getFunctionType(), StreamTPI);
2125 printTypeIndex("FunctionType", Func.getFunctionType(), StreamTPI);
2130 // The TypeIndex (LF_PROCEDURE) returned by 'getFunctionType' is the
2151 TypeIndex TIFunctionType = Func.getFunctionType();
2180 printTypeIndex("FunctionType", Id.getFunctionType(), StreamTPI);
2196 TypeIndex TIFunctionType = Id.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp873 auto *CallerContext = Builder.CreateCall(ProjectionFunc->getFunctionType(),
1425 FunctionType *CalleeTy = CI.getFunctionType();
1753 auto *FnTy = MustTailCallFn->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp431 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
432 FunctionType *FTy = Fn->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp757 Call->getFunctionType()->isVarArg())
771 FunctionType *FuncTy = Call->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp107 bool IsVarArg = CB.getFunctionType()->isVarArg();
129 unsigned NumFixedArgs = CB.getFunctionType()->getNumParams();
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp978 func_ti = mfr.getFunctionType();
987 func_ti = fir.getFunctionType();
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DAMDGPU.cpp536 auto *InvokeFT = Invoke->getFunctionType();

Completed in 528 milliseconds

12345678