| /NextBSD/contrib/llvm/lib/Transforms/Utils/ |
| HD | SimplifyLibCalls.cpp | 125 FunctionType *FT = F->getFunctionType(); in checkStringCopyLibFuncSignature() 190 FunctionType *FT = Callee->getFunctionType(); in optimizeStrCat() 238 FunctionType *FT = Callee->getFunctionType(); in optimizeStrNCat() 280 FunctionType *FT = Callee->getFunctionType(); in optimizeStrChr() 325 FunctionType *FT = Callee->getFunctionType(); in optimizeStrRChr() 360 FunctionType *FT = Callee->getFunctionType(); in optimizeStrCmp() 401 FunctionType *FT = Callee->getFunctionType(); in optimizeStrNCmp() 471 FunctionType *FT = Callee->getFunctionType(); in optimizeStpCpy() 500 FunctionType *FT = Callee->getFunctionType(); in optimizeStrNCpy() 543 FunctionType *FT = Callee->getFunctionType(); in optimizeStrLen() [all …]
|
| HD | ValueMapper.cpp | 49 FunctionType *NewTy = IA->getFunctionType(); in MapValue() 53 if (NewTy != IA->getFunctionType()) in MapValue() 393 FunctionType *FTy = CS.getFunctionType(); in RemapInstruction()
|
| HD | CloneFunction.cpp | 231 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(), in CloneFunction() 232 ArgTypes, F->getFunctionType()->isVarArg()); in CloneFunction()
|
| /NextBSD/contrib/llvm/lib/Target/Mips/ |
| HD | Mips16HardFloat.cpp | 120 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID(); in whichFPParamVariantNeeded() 131 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID(); in whichFPParamVariantNeeded() 132 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID(); in whichFPParamVariantNeeded() 168 Type *ArgType = F.getFunctionType()->getParamType(0); in needsFPStubFromParams() 276 FStub = Function::Create(F.getFunctionType(), in assureFPCallStub() 463 (F->getFunctionType(), in createFPFnStub()
|
| /NextBSD/contrib/llvm/lib/Transforms/IPO/ |
| HD | DeadArgumentElimination.cpp | 194 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!"); in DeleteDeadVarargs() 222 FunctionType *FTy = Fn.getFunctionType(); in DeleteDeadVarargs() 345 if (Fn.hasLocalLinkage() && !Fn.getFunctionType()->isVarArg()) in RemoveDeadArgumentsFromCallers() 494 if (ArgNo >= F->getFunctionType()->getNumParams()) in SurveyUse() 560 != F.getFunctionType()->getReturnType()) { in SurveyFunction() 641 if (F.getFunctionType()->isVarArg()) { in SurveyFunction() 739 FunctionType *FTy = F->getFunctionType(); in RemoveDeadStuffFromFunction() 1105 if (F.getFunctionType()->isVarArg()) in runOnModule()
|
| HD | LoopExtractor.cpp | 257 assert(MF->getFunctionType() == F->getFunctionType() && "Wrong function?"); in runOnModule()
|
| HD | MergeFunctions.cpp | 1024 if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType())) in compare() 1347 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "", in writeThunk() 1354 FunctionType *FFTy = F->getFunctionType(); in writeThunk() 1401 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "", in mergeTwoFunctions()
|
| /NextBSD/contrib/llvm/tools/bugpoint/ |
| HD | Miscompilation.cpp | 390 MisCompFunctions.emplace_back(F->getName(), F->getFunctionType()); in ExtractLoops() 415 MisCompFunctions.emplace_back(I->getName(), I->getFunctionType()); in ExtractLoops() 596 MisCompFunctions.emplace_back(I->getName(), I->getFunctionType()); in ExtractBlocks() 791 Function *newMain = Function::Create(oldMain->getFunctionType(), in CleanupAndPrepareModules() 796 Function *oldMainProto = Function::Create(oldMain->getFunctionType(), in CleanupAndPrepareModules() 867 FunctionType *FuncTy = F->getFunctionType(); in CleanupAndPrepareModules() 894 PointerType::getUnqual(F->getFunctionType()), in CleanupAndPrepareModules()
|
| HD | CrashDebugger.cpp | 245 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty"); in TestFuncs()
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | InlineAsm.cpp | 46 assert(Verify(getFunctionType(), constraints) && in InlineAsm() 55 FunctionType *InlineAsm::getFunctionType() const { in getFunctionType() function in InlineAsm
|
| HD | Function.cpp | 227 FunctionType *Function::getFunctionType() const { return Ty; } in getFunctionType() function in Function 230 return getFunctionType()->isVarArg(); in isVarArg() 234 return getFunctionType()->getReturnType(); in getReturnType() 289 FunctionType *FT = getFunctionType(); in BuildLazyArguments() 302 return getFunctionType()->getNumParams(); in arg_size() 305 return getFunctionType()->getNumParams() == 0; in arg_empty()
|
| HD | Mangler.cpp | 161 FunctionType *FT = MSFunc->getFunctionType(); in getNameWithPrefix()
|
| HD | AutoUpgrade.cpp | 39 Type *Arg0Type = F->getFunctionType()->getParamType(0); in UpgradeSSE41Function() 54 Type *LastArgType = F->getFunctionType()->getParamType( in UpgradeX86IntrinsicsWith8BitMask() 55 F->getFunctionType()->getNumParams() - 1); in UpgradeX86IntrinsicsWith8BitMask()
|
| /NextBSD/contrib/llvm/lib/ExecutionEngine/Interpreter/ |
| HD | Interpreter.cpp | 89 const size_t ArgCount = F->getFunctionType()->getNumParams(); in runFunction()
|
| HD | ExternalFunctions.cpp | 94 FunctionType *FT = F->getFunctionType(); in lookupFunction() 183 FunctionType *FTy = F->getFunctionType(); in ffiInvoke() 257 return Fn(F->getFunctionType(), ArgVals); in callExternalFunction()
|
| /NextBSD/contrib/llvm/include/llvm/IR/ |
| HD | CallSite.h | 219 FunctionType *getFunctionType() const { in getFunctionType() function 220 CALLSITE_DELEGATE_GETTER(getFunctionType()); in getFunctionType()
|
| HD | InlineAsm.h | 80 FunctionType *getFunctionType() const;
|
| /NextBSD/contrib/llvm/include/llvm/Analysis/ |
| HD | TargetTransformInfoImpl.h | 369 FunctionType *FTy = F->getFunctionType(); in getCallCost() 379 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs); in getCallCost()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaLambda.cpp | 369 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(), in startLambdaDefinition() 884 Context.getFunctionType(DefaultTypeForNoTrailingReturn, None, EPI); in ActOnStartOfLambdaDefinition() 1179 S.Context.getFunctionType(CallOpProto->getReturnType(), in addFunctionPointerConversion() 1191 S.Context.getFunctionType(PtrToFunctionTy, None, ConvExtInfo); in addFunctionPointerConversion() 1350 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() 1358 QualType ConvTy = S.Context.getFunctionType(BlockPtrTy, None, ConversionEPI); in addBlockPointerConversion()
|
| /NextBSD/contrib/llvm/lib/ExecutionEngine/Orc/ |
| HD | OrcMCJITReplacement.cpp | 33 FunctionType *FTy = F->getFunctionType(); in runFunction()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ItaniumCXXABI.cpp | 67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), in getManglingNumber()
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | MemoryLocation.cpp | 99 FunctionType *MemsetType = MS->getFunctionType(); in isMemsetPattern16()
|
| HD | MemoryBuiltins.cpp | 128 FunctionType *FTy = Callee->getFunctionType(); in getAllocationData() 331 FunctionType *FTy = Callee->getFunctionType(); in isFreeCall()
|
| /NextBSD/contrib/llvm/lib/Transforms/Instrumentation/ |
| HD | DataFlowSanitizer.cpp | 524 FunctionType *FT = F->getFunctionType(); in buildWrapperFunction() 674 buildWrapperFunction(F, "", GA->getLinkage(), F->getFunctionType()); in runOnModule() 693 FunctionType *FT = F.getFunctionType(); in runOnModule() 1376 Type *RT = DFSF.F->getFunctionType()->getReturnType(); in visitReturnInst() 1433 FunctionType *FT = F->getFunctionType(); in visitCallSite()
|
| /NextBSD/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| HD | CompileOnDemandLayer.h | 205 createIRTypedAddress(*StubF->getFunctionType(), in addLogicalModule()
|