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

/freebsd-12-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-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp459 Function *MCJIT::FindFunctionNamedInModulePtrSet(StringRef FnName, argument
463 Function *F = (*I)->getFunction(FnName);
483 Function *MCJIT::FindFunctionNamed(StringRef FnName) { argument
485 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
487 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
490 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
H A DMCJIT.h197 Function *FindFunctionNamedInModulePtrSet(StringRef FnName,
222 /// defines FnName. This is very slow operation and shouldn't be used for
224 Function *FindFunctionNamed(StringRef FnName) override;
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1972 std::string FnName = "matchRulesFor" + Attr.getName().str();
1973 OS << "static void " << FnName << "(llvm::SmallVectorImpl<std::pair<"
1978 return FnName;
1996 return FnName;
2884 std::string *FnName,
2899 if (FnName)
2900 *FnName += Part;
2910 // those checks to the Test string. If the FnName string pointer is non-null,
2916 std::string *FnName) {
2936 if (FnName)
[all...]
/freebsd-12-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-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDeclCXX.cpp235 SmallString<256> FnName; local
237 llvm::raw_svector_ostream Out(FnName);
243 ty, FnName.str(), FI, VD.getLocation());
457 SmallString<256> FnName; local
459 llvm::raw_svector_ostream Out(FnName);
465 CreateGlobalInitOrDestructFunction(FTy, FnName.str(),
H A DCGExpr.cpp2775 StringRef FnName = CurFn->getName(); local
2776 if (FnName.startswith("\01"))
2777 FnName = FnName.substr(1);
2779 PredefinedExpr::getIdentKindName(E->getIdentKind()), FnName};
2791 auto C = CGM.GetAddrOfConstantCString(FnName, GVName.c_str());
2991 std::string FnName = "__ubsan_handle_" + CheckName.str(); local
2993 FnName += "_v" + llvm::utostr(CheckInfo.Version);
2995 FnName += "_minimal";
2997 FnName
[all...]
H A DCGOpenMPRuntime.cpp4188 StringRef FnName = ParentFunctions[CE->getOrder()]; local
4189 if (!CGM.GetGlobalValue(FnName))
4195 CGM.getDiags().Report(std::get<1>(E), DiagID) << FnName; local
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp138 StringRef FnName = Callee->getName(); local
140 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
469 StringRef FnName = Callee->getName();
471 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp519 void applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
550 void applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, bool IsOne,
558 void applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName,
1206 void DevirtModule::applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, argument
1210 "uniform-ret-val", FnName, RemarksEnabled, OREGetter,
1312 void DevirtModule::applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, argument
1321 Call.replaceAndErase("unique-ret-val", FnName, RemarksEnabled, OREGetter,
1381 void DevirtModule::applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName, argument
1392 Call.replaceAndErase("virtual-const-prop-1-bit", FnName, RemarksEnabled,
1397 Call.replaceAndErase("virtual-const-prop", FnName, RemarksEnable
[all...]
/freebsd-12-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-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h211 /// defines FnName. This is very slow operation and shouldn't be used for
213 virtual Function *FindFunctionNamed(StringRef FnName);
/freebsd-12-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-12-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp328 std::string FnName; member in class:__anon5797::ReduceCrashingFunctionAttributes
332 ReduceCrashingFunctionAttributes(BugDriver &bd, const std::string &FnName, argument
334 : BD(bd), FnName(FnName), TestFn(testFn) {}
353 Function *F = M->getFunction(FnName);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp9433 IdentifierInfo *FnName,
9446 << SizeRange << FnName; local
9448 << FnName
9698 IdentifierInfo *FnName) {
9714 if (CheckMemorySizeofForComparison(*this, LenExpr, FnName,
9764 StringRef ReadableName = FnName->getName();
9814 << FnName << SizeOfArgTy << ArgIdx
9847 << (IsCmp ? ArgIdx + 2 : ArgIdx) << FnName
9855 << ArgIdx << FnName << PointeeTy
9862 << ArgIdx << FnName << PointeeT
9432 CheckMemorySizeofForComparison(Sema &S, const Expr *E, IdentifierInfo *FnName, SourceLocation FnLoc, SourceLocation RParenLoc) argument
9696 CheckMemaccessArguments(const CallExpr *Call, unsigned BId, IdentifierInfo *FnName) argument
9924 CheckStrlcpycatArguments(const CallExpr *Call, IdentifierInfo *FnName) argument
10012 CheckStrncatArguments(const CallExpr *CE, IdentifierInfo *FnName) argument
[all...]
H A DSema.cpp2340 IdentifierInfo *FnName = D.getIdentifier(); local
2341 return checkOpenCLDisabledTypeOrDecl(&D, E.getBeginLoc(), FnName,
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp378 std::string FnName = StringRef(Die.getName(DINameKind::ShortName)); local
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp156 Function *ExecutionEngine::FindFunctionNamed(StringRef FnName) { argument
158 Function *F = Modules[i]->getFunction(FnName);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3261 StringRef FnName = CI->getCalledFunction()->getName();
3289 if (!TLI || !TLI->isFunctionVectorizable(FnName, VF) || CI->isNoBuiltin())
4342 StringRef FnName = CI->getCalledFunction()->getName();
4381 StringRef VFnName = TLI->getVectorizedFunction(FnName, VF);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11801 IdentifierInfo *FnName);
11804 IdentifierInfo *FnName);
11807 IdentifierInfo *FnName);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp1000 StdAllocatorCaller getStdAllocatorCaller(StringRef FnName) const {
1007 if (!FnII || !FnII->isStr(FnName))

Completed in 353 milliseconds