Home
last modified time | relevance | path

Searched refs:FunctionName (Results 1 – 25 of 99) sorted by relevance

1234

/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutdebug.c244 const char *FunctionName) in AcpiUtTrimFunctionName() argument
253 return (FunctionName + 4); in AcpiUtTrimFunctionName()
260 return (FunctionName + 5); in AcpiUtTrimFunctionName()
263 return (FunctionName); in AcpiUtTrimFunctionName()
290 const char *FunctionName, in AcpiDebugPrint() argument
391 const char *FunctionName, in ACPI_EXPORT_SYMBOL()
434 const char *FunctionName, in ACPI_EXPORT_SYMBOL()
475 const char *FunctionName, in ACPI_EXPORT_SYMBOL()
515 const char *FunctionName, in AcpiUtTraceStr() argument
555 const char *FunctionName, in AcpiUtTraceU32() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp106 const auto &FunctionName = safeGetName(F); in isCtorOfRefCounted() local
108 return FunctionName == "Ref" || FunctionName == "makeRef" in isCtorOfRefCounted()
110 || FunctionName == "RefPtr" || FunctionName == "makeRefPtr" in isCtorOfRefCounted()
112 || FunctionName == "UniqueRef" || FunctionName == "makeUniqueRef" || in isCtorOfRefCounted()
115 || FunctionName == "String" || FunctionName == "AtomString" || in isCtorOfRefCounted()
116 FunctionName == "UniqueString" in isCtorOfRefCounted()
118 || FunctionName == "Identifier"; in isCtorOfRefCounted()
193 const auto FunctionName = safeGetName(F); in isPtrConversion() local
194 if (FunctionName == "getPtr" || FunctionName == "WeakPtr" || in isPtrConversion()
195 FunctionName == "dynamicDowncast" in isPtrConversion()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DXRayLists.cpp35 XRayFunctionFilter::shouldImbueFunction(StringRef FunctionName) const { in shouldImbueFunction()
39 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName, in shouldImbueFunction()
41 AttrList->inSection("always", "fun", FunctionName, "arg1")) in shouldImbueFunction()
44 FunctionName) || in shouldImbueFunction()
45 AttrList->inSection("always", "fun", FunctionName)) in shouldImbueFunction()
49 FunctionName) || in shouldImbueFunction()
50 AttrList->inSection("never", "fun", FunctionName)) in shouldImbueFunction()
H A DProfileList.cpp119 ProfileList::isFunctionExcluded(StringRef FunctionName, in isFunctionExcluded() argument
123 if (auto V = inSection(Section, "function", FunctionName)) in isFunctionExcluded()
125 if (SCL->inSection(Section, "!fun", FunctionName)) in isFunctionExcluded()
127 if (SCL->inSection(Section, "fun", FunctionName)) in isFunctionExcluded()
H A DNoSanitizeList.cpp41 StringRef FunctionName) const { in containsFunction()
42 return SSCL->inSection(Mask, "fun", FunctionName); in containsFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h38 std::string FunctionName; member
54 : FileName(BadString), FunctionName(BadString), StartFileName(BadString) { in DILineInfo()
59 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
67 return std::tie(FileName, FunctionName, StartFileName, Line, Column,
69 std::tie(RHS.FileName, RHS.FunctionName, RHS.StartFileName, RHS.Line,
79 if (FunctionName != BadString) in dump()
80 OS << "function '" << FunctionName << "', "; in dump()
129 std::string FunctionName; member
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSymbolRemappingReader.h113 Key insert(StringRef FunctionName) { in insert() argument
114 return Canonicalizer.canonicalize(FunctionName); in insert()
123 Key lookup(StringRef FunctionName) { in lookup() argument
124 return Canonicalizer.lookup(FunctionName); in lookup()
H A DSampleProfReader.h292 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); } in insert() argument
296 bool exist(StringRef FunctionName) { in exist() argument
297 return Remappings->lookup(FunctionName); in exist()
302 std::optional<StringRef> lookUpNameInProfile(StringRef FunctionName);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp122 void PlainPrinterBase::printFunctionName(StringRef FunctionName, bool Inlined) { in printFunctionName() argument
124 if (FunctionName == DILineInfo::BadString) in printFunctionName()
125 FunctionName = DILineInfo::Addr2LineBadString; in printFunctionName()
128 OS << Prefix << FunctionName << Delimiter; in printFunctionName()
174 printFunctionName(Info.FunctionName, Inlined); in print()
223 if (L.FunctionName.empty()) in print()
226 OS << L.FunctionName; in print()
298 {{"FunctionName", LineInfo.FunctionName != DILineInfo::BadString in toJSON()
299 ? LineInfo.FunctionName in toJSON()
360 {{"FunctionName", Local.FunctionName}, in print()
H A DSymbolizableObjectFile.cpp285 std::string FunctionName, FileName; in symbolizeCode() local
287 if (getNameFromSymbolTable(ModuleOffset.Address, FunctionName, Start, Size, in symbolizeCode()
289 LineInfo.FunctionName = FunctionName; in symbolizeCode()
313 std::string FunctionName, FileName; in symbolizeInlinedCode() local
315 if (getNameFromSymbolTable(ModuleOffset.Address, FunctionName, Start, Size, in symbolizeInlinedCode()
319 LI->FunctionName = FunctionName; in symbolizeInlinedCode()
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemark.h110 StringRef FunctionName; member
192 LHS.FunctionName == RHS.FunctionName && LHS.Loc == RHS.Loc &&
202 LHS.FunctionName, LHS.Loc, LHS.Hotness, LHS.Args) <
204 RHS.FunctionName, RHS.Loc, RHS.Hotness, RHS.Args);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/
H A DInvalidPtrChecker.cpp98 StringRef FunctionName) const;
118 CheckerContext &C, ProgramStateRef State, StringRef FunctionName) const { in REGISTER_SET_WITH_PROGRAMSTATE()
124 FunctionName = std::string{FunctionName}]( in REGISTER_SET_WITH_PROGRAMSTATE()
153 Out << '\'' << FunctionName << "' call may invalidate " in REGISTER_SET_WITH_PROGRAMSTATE()
170 StringRef FunctionName = Call.getCalleeIdentifier()->getName(); in EnvpInvalidatingCall() local
172 createEnvInvalidationNote(C, State, FunctionName); in EnvpInvalidatingCall()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp228 io.mapRequired("Function Name", P.FunctionName); in mapping()
334 std::optional<const char *> FunctionName; in correlateProfileDataImpl() local
356 AnnotationFormValue->getAsCString().moveInto(FunctionName)) in correlateProfileDataImpl()
366 if (!FunctionName || !CFGHash || !CounterPtr || !NumCounters) { in correlateProfileDataImpl()
369 << "Incomplete DIE for function " << FunctionName in correlateProfileDataImpl()
383 *FunctionName, *CounterPtr, CountersStart, CountersEnd); in correlateProfileDataImpl()
390 *FunctionName); in correlateProfileDataImpl()
398 P.FunctionName = *FunctionName; in correlateProfileDataImpl()
412 this->addDataProbe(IndexedInstrProf::ComputeHash(*FunctionName), *CFGHash, in correlateProfileDataImpl()
414 this->NamesVec.push_back(*FunctionName); in correlateProfileDataImpl()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacutils.h563 const char *FunctionName,
570 const char *FunctionName,
578 const char *FunctionName,
586 const char *FunctionName,
594 const char *FunctionName,
601 const char *FunctionName,
609 const char *FunctionName,
617 const char *FunctionName,
625 const char *FunctionName,
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h36 StringRef FunctionName; member
168 StringRef FunctionName; member
174 ProfileMappingRecord(CovMapVersion Version, StringRef FunctionName, in ProfileMappingRecord()
177 : Version(Version), FunctionName(FunctionName), in ProfileMappingRecord()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h363 #define AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \ argument
367 static QualType (T::*value())() const { return &T::FunctionName; } \
391 #define AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \ argument
394 static QualType (T::*value())() const { return &T::FunctionName; } \
403 #define AST_TYPELOC_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \ argument
407 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
417 AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName##Type, ReturnTypesF)
429 #define AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \ argument
432 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
440 AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName##Type, ReturnTypesF)
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h56 StringRef FunctionName; member
60 InstantiationView(StringRef FunctionName, unsigned Line, in InstantiationView()
62 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} in InstantiationView()
303 void addInstantiation(StringRef FunctionName, unsigned Line,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp237 StringRef FunctionName = *CurLine++; in printSymbolizedStackTrace() local
238 if (FunctionName.empty()) in printSymbolizedStackTrace()
241 if (!FunctionName.starts_with("??")) in printSymbolizedStackTrace()
242 OS << FunctionName << ' '; in printSymbolizedStackTrace()
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp40 if (DI.FunctionName == DILineInfo::BadString) in SymbolOrNumber()
43 F << DI.FunctionName; in SymbolOrNumber()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerSortingChecker.cpp57 decltype(auto) callsName(const char *FunctionName) { in callsName() argument
58 return callee(functionDecl(hasName(FunctionName))); in callsName()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkSerializer.cpp26 std::optional<RemarkLocation> RL, T FunctionName, in mapRemarkHeader() argument
32 io.mapRequired("Function", FunctionName); in mapRemarkHeader()
67 unsigned FunctionID = StrTab.add(Remark->FunctionName).first; in mapping()
72 Remark->FunctionName, Remark->Hotness, Remark->Args); in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DInstrumentationMap.h63 std::string FunctionName; member
125 IO.mapOptional("function-name", Entry.FunctionName);
/freebsd/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp338 std::string FunctionName = Import.substr(0, Idx); in importFunctions() local
350 Function *F = SrcModule.getFunction(FunctionName); in importFunctions()
353 << FunctionName << " from " << FileName << "\n"; in importFunctions()
360 errs() << "Ignoring import request for weak-any function " << FunctionName in importFunctions()
366 errs() << "Importing " << FunctionName << " from " << FileName << "\n"; in importFunctions()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DSourcePrinter.cpp433 bool PrintFunctionName = LineInfo.FunctionName != DILineInfo::BadString && in printLines()
434 LineInfo.FunctionName != OldLineInfo.FunctionName; in printLines()
436 OS << Delimiter << LineInfo.FunctionName; in printLines()
439 if (!StringRef(LineInfo.FunctionName).ends_with("()")) in printLines()
/freebsd/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp443 StringRef FunctionName, StringRef CrossTUDir, StringRef IndexName, in getASTUnitForFunction() argument
446 auto ASTCacheEntry = NameASTUnitMap.find(FunctionName); in getASTUnitForFunction()
456 if (!NameFileMap.count(FunctionName)) { in getASTUnitForFunction()
464 getASTUnitForFile(NameFileMap[FunctionName], DisplayCTUProgress)) { in getASTUnitForFunction()
467 NameASTUnitMap[FunctionName] = *FoundForFile; in getASTUnitForFunction()
481 StringRef FunctionName, StringRef CrossTUDir, StringRef IndexName) { in getFileForFunction() argument
484 return NameFileMap[FunctionName]; in getFileForFunction()

1234