/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCContext.h | 252 StringRef GroupName; member 256 COFFSectionKey(StringRef SectionName, StringRef GroupName, int SelectionKey, in COFFSectionKey() 258 : SectionName(SectionName), GroupName(GroupName), in COFFSectionKey() 264 if (GroupName != Other.GroupName) 265 return GroupName < Other.GroupName; 274 StringRef GroupName; member 277 WasmSectionKey(StringRef SectionName, StringRef GroupName, in WasmSectionKey() 279 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {} in WasmSectionKey() 284 if (GroupName != Other.GroupName) 285 return GroupName < Other.GroupName;
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | WasmAsmParser.cpp | 128 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, 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() 688 GroupName = Group->getName(); in ParseSectionArguments() 695 getContext().getELFSection(SectionName, Type, Flags, Size, GroupName, in ParseSectionArguments()
|
/freebsd/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/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/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCObjectFileInfo.cpp | 1087 StringRef GroupName; in getStackSizesSection() local 1089 GroupName = Group->getName(); in getStackSizesSection() 1094 GroupName, true, ElfSec.getUniqueID(), in getStackSizesSection() 1105 StringRef GroupName; in getBBAddrMapSection() local 1107 GroupName = Group->getName(); in getBBAddrMapSection() 1114 Flags, 0, GroupName, true, ElfSec.getUniqueID(), in getBBAddrMapSection() 1125 StringRef GroupName; in getKCFITrapSection() local 1127 GroupName = Group->getName(); in getKCFITrapSection() 1132 GroupName, in getKCFITrapSection() 1144 StringRef GroupName; in getPseudoProbeSection() local [all …]
|
/freebsd/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/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() 1448 const std::string &GroupName = in EmitClangDiagsDefs() local 1451 " cannot be in a warning group [" + GroupName + "]"); in EmitClangDiagsDefs() 1571 const std::string &GroupName = in emitDiagSubGroups() local 1574 DiagsInGroup.find(GroupName); in emitDiagSubGroups() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenAction.cpp | 429 #define ComputeDiagID(Severity, GroupName, DiagID) \ argument 433 DiagID = diag::err_fe_##GroupName; \ 436 DiagID = diag::warn_fe_##GroupName; \ 442 DiagID = diag::note_fe_##GroupName; \ 447 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \ argument 451 DiagID = diag::err_fe_##GroupName; \ 454 DiagID = diag::warn_fe_##GroupName; \ 457 DiagID = diag::remark_fe_##GroupName; \ 460 DiagID = diag::note_fe_##GroupName; \
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGISel.cpp | 891 StringRef GroupName = "sdag"; in CodeGenAndEmitDAG() local 929 NamedRegionTimer T("combine1", "DAG Combining 1", GroupName, in CodeGenAndEmitDAG() 951 NamedRegionTimer T("legalize_types", "Type Legalization", GroupName, in CodeGenAndEmitDAG() 976 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG() 992 NamedRegionTimer T("legalize_vec", "Vector Legalization", GroupName, in CodeGenAndEmitDAG() 1009 NamedRegionTimer T("legalize_types2", "Type Legalization 2", GroupName, in CodeGenAndEmitDAG() 1030 GroupName, GroupDescription, TimePassesIsEnabled); in CodeGenAndEmitDAG() 1049 NamedRegionTimer T("legalize", "DAG Legalization", GroupName, in CodeGenAndEmitDAG() 1069 NamedRegionTimer T("combine2", "DAG Combining 2", GroupName, in CodeGenAndEmitDAG() 1093 NamedRegionTimer T("isel", "Instruction Selection", GroupName, in CodeGenAndEmitDAG() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Timer.h | 165 StringRef GroupName,
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 4214 StringRef GroupName; in emitXRayTable() local 4217 GroupName = F.getComdat()->getName(); in emitXRayTable() 4220 Flags, 0, GroupName, F.hasComdat(), in emitXRayTable() 4225 "xray_fn_idx", ELF::SHT_PROGBITS, Flags, 0, GroupName, F.hasComdat(), in emitXRayTable() 4321 StringRef GroupName; in emitPatchableFunctionEntries() local 4329 GroupName = F.getComdat()->getName(); in emitPatchableFunctionEntries() 4334 "__patchable_function_entries", ELF::SHT_PROGBITS, Flags, 0, GroupName, in emitPatchableFunctionEntries()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | DiagnosticIDs.cpp | 621 #define DIAG_ENTRY(GroupName, FlagNameOffset, Members, SubGroups, Docs) \ argument
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetLoweringObjectFileImpl.cpp | 1068 std::string GroupName; in getSectionForMachineBasicBlock() local 1071 GroupName = F.getComdat()->getName().str(); in getSectionForMachineBasicBlock() 1074 0 /* Entry Size */, GroupName, in getSectionForMachineBasicBlock()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | InstrProfiling.cpp | 1459 StringRef GroupName = TT.isOSBinFormatCOFF() && DataReferencedByCode in maybeSetComdat() local 1462 Comdat *C = M.getOrInsertComdat(GroupName); in maybeSetComdat()
|