Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCContext.h229 StringRef GroupName; member
233 ELFSectionKey(StringRef SectionName, StringRef GroupName, in ELFSectionKey()
235 : SectionName(SectionName), GroupName(GroupName), in ELFSectionKey()
241 if (GroupName != Other.GroupName)
242 return GroupName < Other.GroupName;
251 StringRef GroupName; member
255 COFFSectionKey(StringRef SectionName, StringRef GroupName, in COFFSectionKey()
257 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey()
263 if (GroupName != Other.GroupName)
264 return GroupName < Other.GroupName;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp116 bool parseGroup(StringRef &GroupName) { in parseGroup() argument
121 GroupName = getTok().getString(); in parseGroup()
123 } else if (Parser->parseIdentifier(GroupName)) { in parseGroup()
175 StringRef GroupName; in parseSectionDirective() local
176 if (Group && parseGroup(GroupName)) in parseSectionDirective()
184 Name, Kind.getValue(), Flags, GroupName, MCContext::GenericSectionID); in parseSectionDirective()
H A DELFAsmParser.cpp160 bool parseGroup(StringRef &GroupName, bool &IsComdat);
433 bool ELFAsmParser::parseGroup(StringRef &GroupName, bool &IsComdat) { in parseGroup() argument
439 GroupName = getTok().getString(); in parseGroup()
441 } else if (getParser().parseIdentifier(GroupName)) { in parseGroup()
513 StringRef GroupName; in ParseSectionArguments() local
587 if (parseGroup(GroupName, IsComdat)) in ParseSectionArguments()
652 GroupName = Group->getName(); in ParseSectionArguments()
659 getContext().getELFSection(SectionName, Type, Flags, Size, GroupName, in ParseSectionArguments()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp54 std::string GroupName = KV.getKey().upper(); in EmitOptRST() local
55 OS << GroupName << '\n'; in EmitOptRST()
56 OS << std::string(GroupName.size(), '-') << '\n'; in EmitOptRST()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DTimer.cpp227 Timer &get(StringRef Name, StringRef Description, StringRef GroupName, in get() argument
231 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; in get()
234 GroupEntry.first = new TimerGroup(GroupName, GroupDescription); in get()
248 StringRef GroupName, in NamedRegionTimer() argument
251 : &NamedGroupedTimers->get(Name, Description, GroupName, in NamedRegionTimer()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenAction.cpp443 #define ComputeDiagID(Severity, GroupName, DiagID) \ argument
447 DiagID = diag::err_fe_##GroupName; \
450 DiagID = diag::warn_fe_##GroupName; \
456 DiagID = diag::note_fe_##GroupName; \
461 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \ argument
465 DiagID = diag::err_fe_##GroupName; \
468 DiagID = diag::warn_fe_##GroupName; \
471 DiagID = diag::remark_fe_##GroupName; \
474 DiagID = diag::note_fe_##GroupName; \
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp166 std::string GroupName = in groupDiagnostics() local
168 DiagsInGroup[GroupName].DiagsInGroup.push_back(R); in groupDiagnostics()
297 const std::string &GroupName = in isSubGroupOfGroup() local
299 if (GName == GroupName) in isSubGroupOfGroup()
1254 const std::string &GroupName = in EmitClangDiagsDefs() local
1257 " cannot be in a warning group [" + GroupName + "]"); in EmitClangDiagsDefs()
1369 const std::string &GroupName = in emitDiagSubGroups() local
1372 DiagsInGroup.find(GroupName); in emitDiagSubGroups()
1648 std::function<void(StringRef)> Visit = [&](StringRef GroupName) { in isRemarkGroup() argument
1649 auto &GroupInfo = DiagsInGroup.find(std::string(GroupName))->second; in isRemarkGroup()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCObjectFileInfo.cpp1035 StringRef GroupName; in getStackSizesSection() local
1037 GroupName = Group->getName(); in getStackSizesSection()
1042 GroupName, true, ElfSec.getUniqueID(), in getStackSizesSection()
1053 StringRef GroupName; in getBBAddrMapSection() local
1055 GroupName = Group->getName(); in getBBAddrMapSection()
1062 Flags, 0, GroupName, true, ElfSec.getUniqueID(), in getBBAddrMapSection()
H A DMCContext.cpp445 StringRef GroupName; in renameELFSection() local
447 GroupName = Group->getName(); in renameELFSection()
453 ELFSectionKey{Section->getName(), GroupName, "", UniqueID}); in renameELFSection()
456 ELFSectionKey{Name, GroupName, "", UniqueID}, Section)) in renameELFSection()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp759 StringRef GroupName = "sdag"; in CodeGenAndEmitDAG() local
800 NamedRegionTimer T("combine1", "DAG Combining 1", GroupName, in CodeGenAndEmitDAG()
822 NamedRegionTimer T("legalize_types", "Type Legalization", GroupName, in CodeGenAndEmitDAG()
847 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG()
863 NamedRegionTimer T("legalize_vec", "Vector Legalization", GroupName, in CodeGenAndEmitDAG()
880 NamedRegionTimer T("legalize_types2", "Type Legalization 2", GroupName, in CodeGenAndEmitDAG()
901 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG()
920 NamedRegionTimer T("legalize", "DAG Legalization", GroupName, in CodeGenAndEmitDAG()
940 NamedRegionTimer T("combine2", "DAG Combining 2", GroupName, in CodeGenAndEmitDAG()
964 NamedRegionTimer T("isel", "Instruction Selection", GroupName, in CodeGenAndEmitDAG()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTimer.h168 StringRef GroupName,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnostic.td59 string GroupName = Name;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3458 StringRef GroupName; in emitXRayTable() local
3461 GroupName = F.getComdat()->getName(); in emitXRayTable()
3464 Flags, 0, GroupName, F.hasComdat(), in emitXRayTable()
3470 GroupName, F.hasComdat(), MCSection::NonUniqueID, LinkedToSym); in emitXRayTable()
3552 StringRef GroupName; in emitPatchableFunctionEntries() local
3560 GroupName = F.getComdat()->getName(); in emitPatchableFunctionEntries()
3565 "__patchable_function_entries", ELF::SHT_PROGBITS, Flags, 0, GroupName, in emitPatchableFunctionEntries()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp860 auto GroupName = TT.isOSBinFormatCOFF() ? GV->getName() : DataVarName; in getOrCreateRegionCounters() local
861 Comdat *C = M->getOrInsertComdat(GroupName); in getOrCreateRegionCounters()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp996 std::string GroupName; in getSectionForMachineBasicBlock() local
999 GroupName = F.getComdat()->getName().str(); in getSectionForMachineBasicBlock()
1002 0 /* Entry Size */, GroupName, in getSectionForMachineBasicBlock()
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Das.texi6845 .section @var{name} , "@var{flags}"G, @@@var{type}, @var{GroupName}[, @var{linkage}]
6848 The @var{GroupName} field specifies the name of the section group to which this
6862 .section @var{name} , "@var{flags}"MG, @@@var{type}, @var{entsize}, @var{GroupName}[, @var{linkage}]
6869 .section @var{name},"@var{flags}"oG,@@@var{type},@var{SymbolName},@var{GroupName}[,@var{linkage}]
6873 @code{G} symbol and the @var{GroupName} or @var{linkage} fields should not be
6876 @code{G} with those same @var{GroupName} and @var{linkage} fields implicitly.
6885 .section @var{name},"@var{flags}"G,@@@var{type},@var{GroupName},[@var{linkage}],@var{unique,@code{<…
6886 .section @var{name},"@var{flags}"MG,@@@var{type},@var{entsize},@var{GroupName}[,@var{linkage}],@var…
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Das.texi6959 .section @var{name} , "@var{flags}"G, @@@var{type}, @var{GroupName}[, @var{linkage}]
6962 The @var{GroupName} field specifies the name of the section group to which this
6976 .section @var{name} , "@var{flags}"MG, @@@var{type}, @var{entsize}, @var{GroupName}[, @var{linkage}]
6983 .section @var{name},"@var{flags}"oG,@@@var{type},@var{SymbolName},@var{GroupName}[,@var{linkage}]
6987 @code{G} symbol and the @var{GroupName} or @var{linkage} fields should not be
6990 @code{G} with those same @var{GroupName} and @var{linkage} fields implicitly.
6999 .section @var{name},"@var{flags}"G,@@@var{type},@var{GroupName},[@var{linkage}],@var{unique,@code{<…
7000 .section @var{name},"@var{flags}"MG,@@@var{type},@var{entsize},@var{GroupName}[,@var{linkage}],@var…