Searched refs:FnName (Results 1 - 22 of 22) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctionsDlsym.cpp23 static T GetFnPtr(const char *FnName, bool WarnIfMissing) { argument
25 void *Fn = dlsym(RTLD_DEFAULT, FnName);
29 Printf("WARNING: Failed to find function \"%s\".", FnName);
H A DFuzzerExtFunctionsWeak.cpp33 static void CheckFnPtr(void *FnPtr, const char *FnName, bool WarnIfMissing) { argument
35 Printf("WARNING: Failed to find function \"%s\".\n", FnName);
H A DFuzzerExtFunctionsWindows.cpp60 static T *GetFnPtr(T *Fun, T *FunDef, const char *FnName, bool WarnIfMissing) { argument
63 Printf("WARNING: Failed to find function \"%s\".\n", FnName);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp465 Function *MCJIT::FindFunctionNamedInModulePtrSet(StringRef FnName, argument
469 Function *F = (*I)->getFunction(FnName);
489 Function *MCJIT::FindFunctionNamed(StringRef FnName) { argument
491 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
493 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
496 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
H A DMCJIT.h196 Function *FindFunctionNamedInModulePtrSet(StringRef FnName,
221 /// defines FnName. This is very slow operation and shouldn't be used for
223 Function *FindFunctionNamed(StringRef FnName) override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp78 const char* FnName,
85 Result.method_name = const_cast<char*>(FnName);
76 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDeclCXX.cpp236 SmallString<256> FnName; local
238 llvm::raw_svector_ostream Out(FnName);
244 ty, FnName.str(), FI, VD.getLocation());
490 SmallString<256> FnName; local
492 llvm::raw_svector_ostream Out(FnName);
498 FTy, FnName.str(), getTypes().arrangeNullaryFunction(), D->getLocation());
H A DCGExpr.cpp2892 StringRef FnName = CurFn->getName(); local
2893 if (FnName.startswith("\01"))
2894 FnName = FnName.substr(1);
2896 PredefinedExpr::getIdentKindName(E->getIdentKind()), FnName};
2909 CGM.GetAddrOfConstantCString(std::string(FnName), GVName.c_str());
3110 std::string FnName = "__ubsan_handle_" + CheckName.str(); local
3112 FnName += "_v" + llvm::utostr(CheckInfo.Version);
3114 FnName += "_minimal";
3116 FnName
[all...]
H A DItaniumCXXABI.cpp4556 SmallString<256> FnName; local
4558 llvm::raw_svector_ostream Out(FnName);
4565 FTy, FnName.str(), FI, D.getLocation());
H A DCGOpenMPRuntime.cpp3173 StringRef FnName = ParentFunctions[CE->getOrder()]; local
3174 if (!CGM.GetGlobalValue(FnName))
3180 CGM.getDiags().Report(std::get<1>(E), DiagID) << FnName; local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp140 StringRef FnName = Callee->getName(); local
142 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
490 StringRef FnName = Callee->getName();
492 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp573 void applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
604 void applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, bool IsOne,
612 void applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName,
1352 void DevirtModule::applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, argument
1356 "uniform-ret-val", FnName, RemarksEnabled, OREGetter,
1459 void DevirtModule::applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, argument
1468 Call.replaceAndErase("unique-ret-val", FnName, RemarksEnabled, OREGetter,
1528 void DevirtModule::applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName, argument
1539 Call.replaceAndErase("virtual-const-prop-1-bit", FnName, RemarksEnabled,
1544 Call.replaceAndErase("virtual-const-prop", FnName, RemarksEnable
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp2978 std::string *FnName,
2993 if (FnName)
2994 *FnName += Part;
3004 // those checks to the Test string. If the FnName string pointer is non-null,
3010 std::string *FnName) {
3030 if (FnName)
3031 *FnName += Part;
3038 R, Test, FnName, "OSes", "T.getOS()", "llvm::Triple::");
3042 GenerateTargetSpecificAttrCheck(R, Test, FnName, "ObjectFormats",
3470 std::string FnName
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h175 const MachineInstrBuilder &addExternalSymbol(const char *FnName, argument
177 MI->addOperand(*MF, MachineOperand::CreateES(FnName, TargetFlags));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h213 /// defines FnName. This is very slow operation and shouldn't be used for
215 virtual Function *FindFunctionNamed(StringRef FnName);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h597 std::string FnName = mangle(SubF->getName(), SrcM.getDataLayout()); local
598 if (auto FnBodySym = BaseLayer.findSymbolIn(PartKey, FnName, false)) {
608 if (auto EC = LD.StubsMgr->updatePointer(FnName, FnBodyAddr))
/freebsd-13-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp328 std::string FnName; member in class:__anon4799::ReduceCrashingFunctionAttributes
332 ReduceCrashingFunctionAttributes(BugDriver &bd, const std::string &FnName, argument
334 : BD(bd), FnName(FnName), TestFn(testFn) {}
353 Function *F = M->getFunction(FnName);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp9308 IdentifierInfo *FnName,
9321 << SizeRange << FnName; local
9323 << FnName
9573 IdentifierInfo *FnName) {
9589 if (CheckMemorySizeofForComparison(*this, LenExpr, FnName,
9639 StringRef ReadableName = FnName->getName();
9689 << FnName << SizeOfArgTy << ArgIdx
9722 << (IsCmp ? ArgIdx + 2 : ArgIdx) << FnName
9730 << ArgIdx << FnName << PointeeTy
9737 << ArgIdx << FnName << PointeeT
9307 CheckMemorySizeofForComparison(Sema &S, const Expr *E, IdentifierInfo *FnName, SourceLocation FnLoc, SourceLocation RParenLoc) argument
9571 CheckMemaccessArguments(const CallExpr *Call, unsigned BId, IdentifierInfo *FnName) argument
9799 CheckStrlcpycatArguments(const CallExpr *Call, IdentifierInfo *FnName) argument
9887 CheckStrncatArguments(const CallExpr *CE, IdentifierInfo *FnName) argument
[all...]
H A DSema.cpp2470 IdentifierInfo *FnName = D.getIdentifier(); local
2471 return checkOpenCLDisabledTypeOrDecl(&D, E.getBeginLoc(), FnName,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp158 Function *ExecutionEngine::FindFunctionNamed(StringRef FnName) { argument
160 Function *F = Modules[i]->getFunction(FnName);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12260 IdentifierInfo *FnName);
12263 IdentifierInfo *FnName);
12266 IdentifierInfo *FnName);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp1005 StdAllocatorCaller getStdAllocatorCaller(StringRef FnName) const {
1012 if (!FnII || !FnII->isStr(FnName))

Completed in 503 milliseconds