Home
last modified time | relevance | path

Searched refs:GroupName (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp220 Timer &get(StringRef Name, StringRef Description, StringRef GroupName, in get() argument
225 getGroupEntry(GroupName, GroupDescription); in get()
232 TimerGroup &getTimerGroup(StringRef GroupName, StringRef GroupDescription) { in getTimerGroup() argument
234 return *getGroupEntry(GroupName, GroupDescription).first; in getTimerGroup()
239 getGroupEntry(StringRef GroupName, StringRef GroupDescription) { in getGroupEntry() argument
240 std::pair<TimerGroup *, Name2TimerMap> &GroupEntry = Map[GroupName]; in getGroupEntry()
242 GroupEntry.first = new TimerGroup(GroupName, GroupDescription); in getGroupEntry()
251 StringRef GroupName, in NamedRegionTimer() argument
255 : &namedGroupedTimers().get(Name, Description, GroupName, in NamedRegionTimer()
258 TimerGroup &NamedRegionTimer::getNamedTimerGroup(StringRef GroupName, in getNamedTimerGroup() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp128 bool parseGroup(StringRef &GroupName) { in parseGroup() argument
133 GroupName = getTok().getString(); in parseGroup()
135 } else if (Parser->parseIdentifier(GroupName)) { in parseGroup()
187 StringRef GroupName; in parseSectionDirective() local
188 if (Group && parseGroup(GroupName)) in parseSectionDirective()
196 Name, *Kind, Flags, GroupName, MCSection::NonUniqueID); in parseSectionDirective()
H A DELFAsmParser.cpp137 bool parseGroup(StringRef &GroupName, bool &IsComdat);
428 bool ELFAsmParser::parseGroup(StringRef &GroupName, bool &IsComdat) { in parseGroup() argument
434 GroupName = getTok().getString(); in parseGroup()
436 } else if (getParser().parseIdentifier(GroupName)) { in parseGroup()
504 StringRef GroupName; in parseSectionArguments() local
580 if (parseGroup(GroupName, IsComdat)) in parseSectionArguments()
647 GroupName = Group->getName(); in parseSectionArguments()
654 getContext().getELFSection(SectionName, Type, Flags, Size, GroupName, in parseSectionArguments()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h253 StringRef GroupName; member
257 COFFSectionKey(StringRef SectionName, StringRef GroupName, int SelectionKey, in COFFSectionKey()
259 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey()
263 return std::tie(SectionName, GroupName, SelectionKey, UniqueID) <
264 std::tie(Other.SectionName, Other.GroupName, Other.SelectionKey,
271 StringRef GroupName; member
274 WasmSectionKey(StringRef SectionName, StringRef GroupName, in WasmSectionKey()
276 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {} in WasmSectionKey()
279 return std::tie(SectionName, GroupName, UniqueID) <
280 std::tie(Other.SectionName, Other.GroupName, Other.UniqueID);
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DOptionRSTEmitter.cpp40 std::string GroupName = KV.getKey().upper(); in emitOptionRst() local
41 OS << GroupName << '\n'; in emitOptionRst()
42 OS << std::string(GroupName.size(), '-') << '\n'; in emitOptionRst()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticCategories.h24 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument
25 GroupName,
H A DDiagnostic.td59 string GroupName = Name;
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp1131 StringRef GroupName; in getStackSizesSection() local
1133 GroupName = Group->getName(); in getStackSizesSection()
1138 GroupName, true, ElfSec.getUniqueID(), in getStackSizesSection()
1149 StringRef GroupName; in getBBAddrMapSection() local
1151 GroupName = Group->getName(); in getBBAddrMapSection()
1158 Flags, 0, GroupName, true, ElfSec.getUniqueID(), in getBBAddrMapSection()
1169 StringRef GroupName; in getKCFITrapSection() local
1171 GroupName = Group->getName(); in getKCFITrapSection()
1176 GroupName, in getKCFITrapSection()
1188 StringRef GroupName; in getPseudoProbeSection() local
[all …]
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp127 StringRef GroupName; member
162 StringRef GroupName = DI->getDef()->getValueAsString("GroupName"); in groupDiagnostics() local
163 DiagsInGroup[GroupName].DiagsInGroup.push_back(R); in groupDiagnostics()
170 GI.GroupName = Group->getName(); in groupDiagnostics()
283 StringRef GroupName = Group->getValueAsString("GroupName"); in isSubGroupOfGroup() local
284 if (GName == GroupName) in isSubGroupOfGroup()
1714 StringRef GroupName = GroupRec->getValueAsString("GroupName"); in EmitClangDiagsDefs() local
1716 " cannot be in a warning group [" + GroupName + "]"); in EmitClangDiagsDefs()
1832 StringRef GroupName = Group->getValueAsString("GroupName"); in emitDiagSubGroups() local
1833 auto RI = DiagsInGroup.find(GroupName); in emitDiagSubGroups()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp391 #define ComputeDiagID(Severity, GroupName, DiagID) \ argument
395 DiagID = diag::err_fe_##GroupName; \
398 DiagID = diag::warn_fe_##GroupName; \
404 DiagID = diag::note_fe_##GroupName; \
409 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \ argument
413 DiagID = diag::err_fe_##GroupName; \
416 DiagID = diag::warn_fe_##GroupName; \
419 DiagID = diag::remark_fe_##GroupName; \
422 DiagID = diag::note_fe_##GroupName; \
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h172 StringRef GroupName,
178 LLVM_ABI static TimerGroup &getNamedTimerGroup(StringRef GroupName,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp907 StringRef GroupName = "sdag"; in CodeGenAndEmitDAG() local
945 NamedRegionTimer T("combine1", "DAG Combining 1", GroupName, in CodeGenAndEmitDAG()
967 NamedRegionTimer T("legalize_types", "Type Legalization", GroupName, in CodeGenAndEmitDAG()
992 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG()
1008 NamedRegionTimer T("legalize_vec", "Vector Legalization", GroupName, in CodeGenAndEmitDAG()
1025 NamedRegionTimer T("legalize_types2", "Type Legalization 2", GroupName, in CodeGenAndEmitDAG()
1046 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG()
1065 NamedRegionTimer T("legalize", "DAG Legalization", GroupName, in CodeGenAndEmitDAG()
1085 NamedRegionTimer T("combine2", "DAG Combining 2", GroupName, in CodeGenAndEmitDAG()
1109 NamedRegionTimer T("isel", "Instruction Selection", GroupName, in CodeGenAndEmitDAG()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3077 StringRef GroupName = F.hasComdat() ? F.getComdat()->getName() : ""; in emitJumpTableSizesSection() local
3092 sectionName, ELF::SHT_LLVM_JT_SIZES, Flags, 0, GroupName, F.hasComdat(), in emitJumpTableSizesSection()
4597 StringRef GroupName; in emitXRayTable() local
4600 GroupName = F.getComdat()->getName(); in emitXRayTable()
4603 Flags, 0, GroupName, F.hasComdat(), in emitXRayTable()
4608 "xray_fn_idx", ELF::SHT_PROGBITS, Flags, 0, GroupName, F.hasComdat(), in emitXRayTable()
4702 StringRef GroupName, SectionName; in emitPatchableFunctionEntries() local
4716 GroupName = F.getComdat()->getName(); in emitPatchableFunctionEntries()
4721 SectionName, ELF::SHT_PROGBITS, Flags, 0, GroupName, F.hasComdat(), in emitPatchableFunctionEntries()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp1393 constexpr llvm::StringLiteral GroupName = "nullability"; variable
1402 Mgr.getAnalyzerOptions().getCheckerBooleanOption(GroupName, \
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp604 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1131 std::string GroupName; in getSectionForMachineBasicBlock() local
1134 GroupName = F.getComdat()->getName().str(); in getSectionForMachineBasicBlock()
1137 0 /* Entry Size */, GroupName, in getSectionForMachineBasicBlock()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp1458 StringRef GroupName = TT.isOSBinFormatCOFF() && DataReferencedByCode in maybeSetComdat() local
1461 Comdat *C = M.getOrInsertComdat(GroupName); in maybeSetComdat()