Searched refs:getFunctionType (Results 151 - 175 of 192) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp4234 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
4281 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
4347 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
4388 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
4440 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
4492 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
4581 QualType CopyFnType = Context.getFunctionType(Context.VoidTy, Args, EPI);
7631 AdjustedFnType = Context.getFunctionType(PTy->getReturnType(), Params,
19943 QualType FnTy = Context.getFunctionType(Context.VoidTy, Params, EPI);
H A DSemaOverload.cpp1815 QualType QT = Context.getFunctionType(FromFPT->getReturnType(),
3242 auto *OldPT = cast<FunctionProtoType>(OldFunction->getFunctionType());
3243 auto *NewPT = cast<FunctionProtoType>(NewFunction->getFunctionType());
16289 dyn_cast<FunctionProtoType>(Function->getFunctionType()))
16294 dyn_cast<FunctionProtoType>(Pattern->getFunctionType()))
H A DSemaChecking.cpp810 QualType BuiltinTy = S.Context.getFunctionType(
7507 const auto *FT = FDecl->getFunctionType();
7509 Proto = cast<FunctionProtoType>(FDecl->getFunctionType());
8421 QualType Pointee = Context.getFunctionType(Context.VoidTy, {}, {});
10630 if (const FunctionType *FnTy = D->getFunctionType())
H A DSemaExpr.cpp6986 QualType OverloadTy = Context.getFunctionType(FT->getReturnType(),
16985 T = Context.getFunctionType(Context.DependentTy, std::nullopt, EPI);
17138 BlockTy = Context.getFunctionType(RetTy, std::nullopt, EPI);
17152 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
17159 BlockTy = Context.getFunctionType(RetTy, std::nullopt, EPI);
21438 DestType = S.Context.getFunctionType(DestType, ParamTypes,
H A DSemaDecl.cpp4261 NewQType = Context.getFunctionType(NewFuncType->getReturnType(),
4346 New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
10102 NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
10251 NewFD->setType(Context.getFunctionType(
11971 MD->setType(Context.getFunctionType(FPT->getReturnType(),
16064 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
H A DSemaCodeComplete.cpp4004 dyn_cast_or_null<FunctionProtoType>(getFunctionType());
4024 getFunctionType()->getReturnType().getAsString(Policy)));
H A DSemaTemplateDeduction.cpp4431 return Context.getFunctionType(ArgFunctionTypeP->getReturnType(),
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3438 FunctionType *FTy = CI->getCalledFunction()->getFunctionType();
6819 VecFunc->getFunctionType()->getContext()),
8362 IntegerType::getInt1Ty(Variant->getFunctionType()->getContext())));
H A DSLPVectorizer.cpp5473 CI->getFunctionType(),
6469 auto Shape = VFShape::get(CI->getFunctionType(),
8373 CI->getFunctionType()->getReturnType(),
8374 CI->getFunctionType()->params(), CostKind);
11683 VFShape::get(CI->getFunctionType(),
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp5459 Clone = llvm::Function::Create(Fn->getFunctionType(),
5939 DI->getFunctionType(CalleeDecl, ResTy, Args),
H A DCGOpenMPRuntimeGPU.cpp3035 auto *FnType = OutlinedFn.getFunctionType();
H A DCGBlocks.cpp1460 const FunctionProtoType *fnType = blockInfo.getBlockExpr()->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1525 << ore::NV("Prototype", Fn.getFunctionType());
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp2142 (ArgVals.size() > F->arg_size() && F->getFunctionType()->isVarArg()))&&
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp3562 ACtx.getFunctionType(/*ResultTy=*/VoidPtrTy, /*Args=*/VoidPtrTy,
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp2598 FunctionType *IntrTy = IntrFn->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFastISel.cpp2309 FunctionType *FTy = CI->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1392 computeSignatureVTs(MF.getFunction().getFunctionType(), &MF.getFunction(),
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp100 Res = CallInst::Create(Fn->getFunctionType(), Fn);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1693 FunctionCallee CallTarget(Call->getFunctionType(), Call->getCalledOperand());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp3351 CalledFunction->getFunctionType());
/freebsd-current/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp614 << " with type " << *Fn->getFunctionType() << "\n");
619 << " with type " << *Fn->getFunctionType() << "\n");
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4005 assert(Func->getFunctionType() == FTy &&
6696 CI->getFunctionType()->getReturnType()));
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp319 if (!CB || (FTy && FTy != CB->getFunctionType()))
321 FTy = CB->getFunctionType();
/freebsd-current/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp4666 FD->setType(Reader.getContext().getFunctionType(

Completed in 1202 milliseconds

12345678