Searched refs:getFunctionType (Results 1 - 25 of 192) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSMEABIPass.cpp76 Builder.CreateCall(WriteIntr->getFunctionType(), WriteIntr,
119 auto *TPIDR2 = Builder.CreateCall(TPIDR2Intr->getFunctionType(), TPIDR2Intr,
133 Builder.CreateCall(EnableZAIntr->getFunctionType(), EnableZAIntr);
139 Builder.CreateCall(ZeroIntr->getFunctionType(), ZeroIntr,
146 Builder.CreateCall(ClearZT0Intr->getFunctionType(), ClearZT0Intr,
159 Builder.CreateCall(DisableZAIntr->getFunctionType(), DisableZAIntr);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp78 if (CB->getFunctionType() == F.getValueType())
121 FunctionType::param_iterator PI = F->getFunctionType()->param_begin();
122 FunctionType::param_iterator PE = F->getFunctionType()->param_end();
126 Type *ExpectedRtnType = F->getFunctionType()->getReturnType();
129 if ((F->getFunctionType()->getNumParams() != Ty->getNumParams()) ||
130 (F->getFunctionType()->isVarArg() != Ty->isVarArg()) ||
170 Type *ExpectedRtnType = F->getFunctionType()->getReturnType();
253 if (shouldFixMainFunction(F.getFunctionType(), MainTy)) {
255 << *F.getFunctionType() << "\n");
269 FunctionType *Ty = CB->getFunctionType();
[all...]
H A DWebAssemblyAddMissingPrototypes.cpp81 unsigned NumParams = F.getFunctionType()->getNumParams();
109 FunctionType *DestType = CB->getFunctionType();
132 NewType = FunctionType::get(F.getFunctionType()->getReturnType(), false);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCUtil.h36 return !CB->getFunctionType()->getReturnType()->isVoidTy() &&
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp372 Prototype->getFunctionType()->dump();
381 Prototype->getFunctionType()->dump();
400 Prototype->getFunctionType()->dump();
408 Prototype->getFunctionType()->dump();
459 Alloc->getFunctionType()->getParamType(0),
482 Dealloc->getFunctionType()->getParamType(0));
514 auto FT = F->getFunctionType();
532 I->getFunction()->getFunctionType()->getReturnType())
550 auto FT = F->getFunctionType();
565 auto FT = F->getFunctionType();
[all...]
H A DCoroInternal.h195 return RetconLowering.ResumePrototype->getFunctionType();
207 auto FTy = CoroBegin->getFunction()->getFunctionType();
222 auto FTy = RetconLowering.ResumePrototype->getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp91 const size_t ArgCount = F->getFunctionType()->getNumParams();
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerInvoke.cpp54 CallInst::Create(II->getFunctionType(), II->getCalledOperand(),
H A DCallPromotionUtils.cpp401 unsigned NumParams = Callee->getFunctionType()->getNumParams();
434 Type *FormalTy = Callee->getFunctionType()->getFunctionParamType(I);
485 if (CB.getFunctionType() == Callee->getFunctionType())
493 CB.mutateFunctionType(Callee->getFunctionType());
498 auto CalleeType = Callee->getFunctionType();
H A DInjectTLIMappings.cpp44 FunctionType *ScalarFTy = CI.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp112 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
123 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
124 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
159 Type *ArgType = F.getFunctionType()->getParamType(0);
272 FStub = Function::Create(F.getFunctionType(),
419 FunctionType *FT = CI->getFunctionType();
455 (F->getFunctionType(),
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.h355 virtual FunctionType *getFunctionType(Module &M) const = 0;
404 FunctionType *getFunctionType(Module &M) const { function in class:llvm::AMDGPULibFunc
405 return Impl->getFunctionType(M);
431 FunctionType *getFunctionType(Module &M) const override;
461 FunctionType *getFunctionType(Module &M) const override { return FuncTy; }
H A DR600OpenCLImageTypeLoweringPass.cpp257 FunctionType *FT = F->getFunctionType();
336 M.getOrInsertFunction(NewF->getName(), NewF->getFunctionType(),
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVPrepareFunctions.cpp82 if (F && F->getFunctionType() == FT)
112 M->getOrInsertFunction(FuncName, Intrinsic->getFunctionType());
161 FunctionType *FSHFuncTy = FSHIntrinsic->getFunctionType();
271 FunctionType *UMulFuncTy = UMulIntrinsic->getFunctionType();
344 FunctionType::get(RetType, ArgTypes, F->getFunctionType()->isVarArg());
375 CI->mutateFunctionType(NewF->getFunctionType());
/freebsd-current/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCGenScalarMASSEntries.cpp101 MASSEntryStr, Func.getFunctionType(), Func.getAttributes());
H A DPPCLowerMASSVEntries.cpp146 MASSVEntryName, Func.getFunctionType(), Func.getAttributes());
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h78 CallInst *Call = B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
101 CallInst *Call = B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
121 return B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
141 return B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILOpLowering.cpp37 DXILB.getOverloadTy(DXILOp, F.getFunctionType(), /*NoOpCodeParam*/ true);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DElimAvailExtern.cpp84 Function::Create(F.getFunctionType(), GlobalValue::ExternalLinkage,
H A DDeadArgumentElimination.cpp129 assert(F.getFunctionType()->isVarArg() && "Function isn't varargs!");
165 FunctionType *FTy = F.getFunctionType();
283 !F.getFunctionType()->isVarArg())
318 CB->getFunctionType() != F.getFunctionType())
452 if (ArgNo >= F->getFunctionType()->getNumParams())
567 CB->getFunctionType() != F.getFunctionType()) {
632 if (F.getFunctionType()->isVarArg() || HasMustTailCallers ||
744 FunctionType *FTy = F->getFunctionType();
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARC.cpp28 FunctionType *FTy = Func.getFunctionType();
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DInlineAsm.cpp39 cantFail(verify(getFunctionType(), constraints));
58 FunctionType *InlineAsm::getFunctionType() const { function in class:InlineAsm
H A DTypeFinder.cpp58 incorporateType(FI.getFunctionType());
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGGPUBuiltin.cpp35 assert(F->getFunctionType() == VprintfFuncType);
55 if (F->getFunctionType() != VprintfFuncType) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp136 GetASTContext().getFunctionType(GetASTContext().UnknownAnyTy, // result

Completed in 354 milliseconds

12345678