| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCContext.h | 253 StringRef GroupName; member 259 : SectionName(SectionName), GroupName(GroupName), in ELFSectionKey() 265 if (GroupName != Other.GroupName) 266 return GroupName < Other.GroupName; 275 StringRef GroupName; member 281 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey() 287 if (GroupName != Other.GroupName) 288 return GroupName < Other.GroupName; 297 StringRef GroupName; member 307 if (GroupName != Other.GroupName) [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | WasmAsmParser.cpp | 125 bool parseGroup(StringRef &GroupName) { in parseGroup() argument 130 GroupName = getTok().getString(); in parseGroup() 132 } else if (Parser->parseIdentifier(GroupName)) { in parseGroup() 184 StringRef GroupName; in parseSectionDirective() local 185 if (Group && parseGroup(GroupName)) in parseSectionDirective() 193 Name, *Kind, Flags, GroupName, MCContext::GenericSectionID); in parseSectionDirective()
|
| H A D | ELFAsmParser.cpp | 159 bool parseGroup(StringRef &GroupName, bool &IsComdat); 449 bool ELFAsmParser::parseGroup(StringRef &GroupName, bool &IsComdat) { in parseGroup() argument 455 GroupName = getTok().getString(); in parseGroup() 457 } else if (getParser().parseIdentifier(GroupName)) { in parseGroup() 547 StringRef GroupName; in ParseSectionArguments() local 623 if (parseGroup(GroupName, IsComdat)) in ParseSectionArguments() 689 GroupName = Group->getName(); in ParseSectionArguments() 696 getContext().getELFSection(SectionName, Type, Flags, Size, GroupName, in ParseSectionArguments()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticCategories.h | 24 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument 25 GroupName,
|
| H A D | Diagnostic.td | 59 string GroupName = Name;
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | OptRSTEmitter.cpp | 47 std::string GroupName = KV.getKey().upper(); in EmitOptRST() local 48 OS << GroupName << '\n'; in EmitOptRST() 49 OS << std::string(GroupName.size(), '-') << '\n'; in EmitOptRST()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCObjectFileInfo.cpp | 1138 StringRef GroupName; in getStackSizesSection() local 1140 GroupName = Group->getName(); in getStackSizesSection() 1156 StringRef GroupName; in getBBAddrMapSection() local 1158 GroupName = Group->getName(); in getBBAddrMapSection() 1176 StringRef GroupName; in getKCFITrapSection() local 1178 GroupName = Group->getName(); in getKCFITrapSection() 1183 GroupName, in getKCFITrapSection() 1195 StringRef GroupName; in getPseudoProbeSection() local 1197 GroupName = Group->getName(); in getPseudoProbeSection() 1245 StringRef GroupName; in getPCSection() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Timer.cpp | 252 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()
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangDiagnosticsEmitter.cpp | 132 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() 300 const std::string &GroupName = in isSubGroupOfGroup() local 302 if (GName == GroupName) in isSubGroupOfGroup() 1262 const std::string &GroupName = in EmitClangDiagsDefs() local 1382 const std::string &GroupName = in emitDiagSubGroups() local 1385 DiagsInGroup.find(GroupName); in emitDiagSubGroups() 1508 OS << I.second.GroupName << " /* "; in emitDiagTable() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 454 #define ComputeDiagID(Severity, GroupName, DiagID) \ argument 458 DiagID = diag::err_fe_##GroupName; \ 461 DiagID = diag::warn_fe_##GroupName; \ 467 DiagID = diag::note_fe_##GroupName; \ 472 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \ argument 476 DiagID = diag::err_fe_##GroupName; \ 479 DiagID = diag::warn_fe_##GroupName; \ 482 DiagID = diag::remark_fe_##GroupName; \ 485 DiagID = diag::note_fe_##GroupName; \
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGISel.cpp | 779 StringRef GroupName = "sdag"; in CodeGenAndEmitDAG() local 820 NamedRegionTimer T("combine1", "DAG Combining 1", GroupName, in CodeGenAndEmitDAG() 842 NamedRegionTimer T("legalize_types", "Type Legalization", GroupName, in CodeGenAndEmitDAG() 867 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG() 883 NamedRegionTimer T("legalize_vec", "Vector Legalization", GroupName, in CodeGenAndEmitDAG() 921 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG() 940 NamedRegionTimer T("legalize", "DAG Legalization", GroupName, in CodeGenAndEmitDAG() 960 NamedRegionTimer T("combine2", "DAG Combining 2", GroupName, in CodeGenAndEmitDAG() 984 NamedRegionTimer T("isel", "Instruction Selection", GroupName, in CodeGenAndEmitDAG() 1000 NamedRegionTimer T("sched", "Instruction Scheduling", GroupName, in CodeGenAndEmitDAG() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Timer.h | 165 StringRef GroupName,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 4180 StringRef GroupName; in emitXRayTable() local 4183 GroupName = F.getComdat()->getName(); in emitXRayTable() 4186 Flags, 0, GroupName, F.hasComdat(), in emitXRayTable() 4191 "xray_fn_idx", ELF::SHT_PROGBITS, Flags, 0, GroupName, F.hasComdat(), in emitXRayTable() 4287 StringRef GroupName; in emitPatchableFunctionEntries() local 4295 GroupName = F.getComdat()->getName(); in emitPatchableFunctionEntries() 4300 "__patchable_function_entries", ELF::SHT_PROGBITS, Flags, 0, GroupName, in emitPatchableFunctionEntries()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | DiagnosticIDs.cpp | 608 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 1210 StringRef GroupName = in maybeSetComdat() local 1212 Comdat *C = M.getOrInsertComdat(GroupName); in maybeSetComdat()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringObjectFileImpl.cpp | 1065 std::string GroupName; in getSectionForMachineBasicBlock() local 1068 GroupName = F.getComdat()->getName().str(); in getSectionForMachineBasicBlock() 1071 0 /* Entry Size */, GroupName, in getSectionForMachineBasicBlock()
|