Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCContext.h254 StringRef GroupName; member
260 : SectionName(SectionName), GroupName(GroupName), in ELFSectionKey()
266 if (GroupName != Other.GroupName)
267 return GroupName < Other.GroupName;
276 StringRef GroupName; member
282 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey()
288 if (GroupName != Other.GroupName)
289 return GroupName < Other.GroupName;
298 StringRef GroupName; member
308 if (GroupName != Other.GroupName)
[all …]
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp123 bool parseGroup(StringRef &GroupName) { in parseGroup() argument
128 GroupName = getTok().getString(); in parseGroup()
130 } else if (Parser->parseIdentifier(GroupName)) { in parseGroup()
182 StringRef GroupName; in parseSectionDirective() local
183 if (Group && parseGroup(GroupName)) in parseSectionDirective()
191 Name, *Kind, Flags, GroupName, MCContext::GenericSectionID); in parseSectionDirective()
H A DELFAsmParser.cpp158 bool parseGroup(StringRef &GroupName, bool &IsComdat);
435 bool ELFAsmParser::parseGroup(StringRef &GroupName, bool &IsComdat) { in parseGroup() argument
441 GroupName = getTok().getString(); in parseGroup()
443 } else if (getParser().parseIdentifier(GroupName)) { in parseGroup()
533 StringRef GroupName; in ParseSectionArguments() local
606 if (parseGroup(GroupName, IsComdat)) in ParseSectionArguments()
673 GroupName = Group->getName(); in ParseSectionArguments()
680 getContext().getELFSection(SectionName, Type, Flags, Size, GroupName, in ParseSectionArguments()
/llvm-project-15.0.7/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;
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp47 std::string GroupName = KV.getKey().upper(); in EmitOptRST() local
48 OS << GroupName << '\n'; in EmitOptRST()
49 OS << std::string(GroupName.size(), '-') << '\n'; in EmitOptRST()
/llvm-project-15.0.7/llvm/lib/Support/
H A DTimer.cpp252 Timer &get(StringRef Name, StringRef Description, StringRef GroupName, in get() argument
256 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; in get()
259 GroupEntry.first = new TimerGroup(GroupName, GroupDescription); in get()
273 StringRef GroupName, in NamedRegionTimer() argument
276 : &NamedGroupedTimers->get(Name, Description, GroupName, in NamedRegionTimer()
/llvm-project-15.0.7/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp132 llvm::StringRef GroupName; member
167 std::string GroupName = in groupDiagnostics() local
169 DiagsInGroup[GroupName].DiagsInGroup.push_back(R); in groupDiagnostics()
178 GI.GroupName = Group->getName(); in groupDiagnostics()
299 const std::string &GroupName = in isSubGroupOfGroup() local
301 if (GName == GroupName) in isSubGroupOfGroup()
1256 const std::string &GroupName = in EmitClangDiagsDefs() local
1376 const std::string &GroupName = in emitDiagSubGroups() local
1379 DiagsInGroup.find(GroupName); in emitDiagSubGroups()
1502 OS << I.second.GroupName << " /* "; in emitDiagTable()
[all …]
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenAction.cpp496 #define ComputeDiagID(Severity, GroupName, DiagID) \ argument
500 DiagID = diag::err_fe_##GroupName; \
503 DiagID = diag::warn_fe_##GroupName; \
509 DiagID = diag::note_fe_##GroupName; \
514 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \ argument
518 DiagID = diag::err_fe_##GroupName; \
521 DiagID = diag::warn_fe_##GroupName; \
524 DiagID = diag::remark_fe_##GroupName; \
527 DiagID = diag::note_fe_##GroupName; \
/llvm-project-15.0.7/clang/tools/diagtool/
H A DDiagnosticNames.cpp69 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCObjectFileInfo.cpp1111 StringRef GroupName; in getStackSizesSection() local
1113 GroupName = Group->getName(); in getStackSizesSection()
1118 GroupName, true, ElfSec.getUniqueID(), in getStackSizesSection()
1129 StringRef GroupName; in getBBAddrMapSection() local
1131 GroupName = Group->getName(); in getBBAddrMapSection()
1138 Flags, 0, GroupName, true, ElfSec.getUniqueID(), in getBBAddrMapSection()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp725 StringRef GroupName = "sdag"; in CodeGenAndEmitDAG() local
766 NamedRegionTimer T("combine1", "DAG Combining 1", GroupName, in CodeGenAndEmitDAG()
788 NamedRegionTimer T("legalize_types", "Type Legalization", GroupName, in CodeGenAndEmitDAG()
813 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG()
829 NamedRegionTimer T("legalize_vec", "Vector Legalization", GroupName, in CodeGenAndEmitDAG()
867 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG()
886 NamedRegionTimer T("legalize", "DAG Legalization", GroupName, in CodeGenAndEmitDAG()
906 NamedRegionTimer T("combine2", "DAG Combining 2", GroupName, in CodeGenAndEmitDAG()
930 NamedRegionTimer T("isel", "Instruction Selection", GroupName, in CodeGenAndEmitDAG()
946 NamedRegionTimer T("sched", "Instruction Scheduling", GroupName, in CodeGenAndEmitDAG()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DTimer.h167 StringRef GroupName,
/llvm-project-15.0.7/clang/test/TableGen/
H A DDiagnosticBase.inc59 string GroupName = Name;
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3763 StringRef GroupName; in emitXRayTable() local
3766 GroupName = F.getComdat()->getName(); in emitXRayTable()
3769 Flags, 0, GroupName, F.hasComdat(), in emitXRayTable()
3775 GroupName, F.hasComdat(), MCSection::NonUniqueID, LinkedToSym); in emitXRayTable()
3857 StringRef GroupName; in emitPatchableFunctionEntries() local
3865 GroupName = F.getComdat()->getName(); in emitPatchableFunctionEntries()
3870 "__patchable_function_entries", ELF::SHT_PROGBITS, Flags, 0, GroupName, in emitPatchableFunctionEntries()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp910 StringRef GroupName = TT.isOSBinFormatCOFF() && DataReferencedByCode in getOrCreateRegionCounters() local
913 Comdat *C = M->getOrInsertComdat(GroupName); in getOrCreateRegionCounters()
/llvm-project-15.0.7/clang/lib/Basic/
H A DDiagnosticIDs.cpp622 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1031 std::string GroupName; in getSectionForMachineBasicBlock() local
1034 GroupName = F.getComdat()->getName().str(); in getSectionForMachineBasicBlock()
1037 0 /* Entry Size */, GroupName, in getSectionForMachineBasicBlock()
/llvm-project-15.0.7/polly/lib/CodeGen/
H A DPPCGCodeGeneration.cpp2119 const char *GroupName[3] = {"__gen_ocl_get_group_id0", in insertKernelCallsSPIR() local
2151 createFunc(GroupName[i], isl_id_list_get_id(Kernel->block_ids, i), SizeT); in insertKernelCallsSPIR()