| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | Options.td | 14 Group<grp_lld>; 17 Group<grp_lld>; 19 Group<grp_lld>; 22 Group<grp_lld>; 25 Group<grp_lld>; 28 Group<grp_lld>; 32 Group<grp_lld>; 35 Group<grp_lld>; 37 Group<grp_lld>; 39 Group<grp_lld>; [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 128 Group<CompileOnly_Group>, 133 def IncludePath_Group : OptionGroup<"<I/i group>">, Group<Preprocessor_Group>, 138 def I_Group : OptionGroup<"<I group>">, Group<IncludePath_Group>, DocFlatten; 139 def i_Group : OptionGroup<"<i group>">, Group<IncludePath_Group>, DocFlatten; 140 def clang_i_Group : OptionGroup<"<clang i group>">, Group<i_Group>, DocFlatten; 142 def M_Group : OptionGroup<"<M group>">, Group<Preprocessor_Group>, 147 def d_Group : OptionGroup<"<d group>">, Group<Preprocessor_Group>, 151 def Diag_Group : OptionGroup<"<W/R group>">, Group<CompileOnly_Group>, 162 def R_Group : OptionGroup<"<R group>">, Group<Diag_Group>, DocFlatten; 163 def R_value_Group : OptionGroup<"<R (with value) group>">, Group<R_Group>, [all …]
|
| /freebsd/contrib/llvm-project/lldb/tools/driver/ |
| H A D | Options.td | 16 Group<grp_attach>; 20 Group<grp_attach>; 26 Group<grp_attach>; 30 Group<grp_attach>; 35 Group<grp_attach>; 39 Group<grp_attach>; 47 Group<grp_scripting>; 51 Group<grp_scripting>; 55 Group<grp_scripting>; 60 Group<grp_scripting>; [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | Opts.td | 53 def dynamic_table : FF<"dynamic-table", "Display the dynamic section table">, Group<grp_elf>; 54 def elf_linker_options : FF<"elf-linker-options", "Display the .linker-options section">, Group<grp… 55 defm elf_output_style : Eq<"elf-output-style", "Specify ELF dump style: LLVM, GNU, JSON">, Group<gr… 56 def histogram : FF<"histogram", "Display bucket list histogram for hash sections">, Group<grp_elf>; 57 def section_groups : FF<"section-groups", "Display section groups">, Group<grp_elf>; 58 def gnu_hash_table : FF<"gnu-hash-table", "Display the GNU hash table for dynamic symbols">, Group<… 59 … : FF<"hash-symbols", "Display the dynamic symbols derived from the hash section">, Group<grp_elf>; 60 def hash_table : FF<"hash-table", "Display .hash section">, Group<grp_elf>; 61 …ag", "Display memory tagging metadata (modes, Android notes, global descriptors)">, Group<grp_elf>; 62 def needed_libs : FF<"needed-libs", "Display the needed libraries">, Group<grp_elf>; [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | DiagnosticIDs.cpp | 91 LLVM_PREFERRED_TYPE(diag::Group) 244 std::map<diag::Group, std::vector<unsigned>> GroupToDiags; 265 if (auto Group = D.GetGroup()) in getOrCreateDiagID() local 266 GroupToDiags[*Group].emplace_back(ID); in getOrCreateDiagID() 270 ArrayRef<unsigned> getDiagsInGroup(diag::Group G) const { in getDiagsInGroup() 304 if (auto Group = Diag.GetGroup()) { in initCustomDiagMapping() local 305 GroupInfo GroupInfo = GroupInfos[static_cast<size_t>(*Group)]; in initCustomDiagMapping() 611 StringRef DiagnosticIDs::getWarningOptionDocumentation(diag::Group Group) { in getWarningOptionDocumentation() argument 612 return OptionTable[static_cast<int>(Group)].Documentation; in getWarningOptionDocumentation() 615 StringRef DiagnosticIDs::getWarningOptionForGroup(diag::Group Group) { in getWarningOptionForGroup() argument [all …]
|
| H A D | CLWarnings.cpp | 19 std::optional<diag::Group> 22 case 4005: return diag::Group::MacroRedefined; in diagGroupFromCLWarningID() 23 case 4018: return diag::Group::SignCompare; in diagGroupFromCLWarningID() 24 case 4100: return diag::Group::UnusedParameter; in diagGroupFromCLWarningID() 25 case 4910: return diag::Group::DllexportExplicitInstantiationDecl; in diagGroupFromCLWarningID() 26 case 4996: return diag::Group::DeprecatedDeclarations; in diagGroupFromCLWarningID()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticIDs.h | 33 enum class Group; variable 207 diag::Group Group; variable 212 ShowInSystemMacro, HasGroup, Group, in get_as_tuple() 221 std::optional<diag::Group> Group = std::nullopt) 224 ShowInSystemMacro(ShowInSystemMacro), HasGroup(Group != std::nullopt), in DefaultSeverity() 225 Group(Group.value_or(diag::Group{})), in DefaultSeverity() 228 std::optional<diag::Group> GetGroup() const { in GetGroup() 230 return Group; in GetGroup() 265 static_cast<size_t>(diag::Group::NUM_GROUPS)); 266 for (size_t i = 0; i != static_cast<size_t>(diag::Group::NUM_GROUPS); ++i) [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 4 def tm_sort : Option<"sort", "s">, Group<1>, 7 def tm_smn : Option<"show-mangled-names", "m">, Group<1>, 12 def tm_json : Option<"json", "j">, Group<1>, 14 def tm_errors_only : Option<"errors-only", "e">, Group<1>, 17 Group<1>, 64 def blist_brief : Option<"brief", "b">, Group<1>, 66 def blist_full : Option<"full", "f">, Group<2>, 68 def blist_verbose : Option<"verbose", "v">, Group<3>, 77 def breakpoint_modify_ignore_count : Option<"ignore-count", "i">, Group<1>, 80 def breakpoint_modify_one_shot : Option<"one-shot", "o">, Group<1>, [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ThreadPool.h | 54 ThreadPoolTaskGroup *Group) = 0; 71 virtual void wait(ThreadPoolTaskGroup &Group) = 0; 87 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async() argument 90 return async(Group, std::move(Task)); in async() 102 auto async(ThreadPoolTaskGroup &Group, Func &&F) 105 &Group); 113 ThreadPoolTaskGroup *Group) { in asyncImpl() argument 115 asyncEnqueue([Future]() { Future.wait(); }, Group); in asyncImpl() 146 void wait(ThreadPoolTaskGroup &Group) override; 162 bool workCompletedUnlocked(ThreadPoolTaskGroup *Group) const; [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | InitHeaderSearch.cpp | 34 IncludeDirGroup Group; member 38 DirectoryLookupInfo(IncludeDirGroup Group, DirectoryLookup Lookup, in DirectoryLookupInfo() 40 : Group(Group), Lookup(Lookup), UserEntryIdx(UserEntryIdx) {} in DirectoryLookupInfo() 62 bool AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework, 68 bool AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, 104 bool InitHeaderSearch::AddPath(const Twine &Path, IncludeDirGroup Group, in AddPath() argument 113 return AddUnmappedPath(IncludeSysroot + Path, Group, isFramework, in AddPath() 118 return AddUnmappedPath(Path, Group, isFramework, UserEntryIdx); in AddPath() 121 bool InitHeaderSearch::AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, in AddUnmappedPath() argument 139 if (Group == Quoted || Group == Angled) { in AddUnmappedPath() [all …]
|
| /freebsd/usr.sbin/bsdconfig/usermgmt/include/ |
| H A D | messages.subr | 38 msg_add_group="Add Group" 46 msg_delete_group="Delete Group" 49 msg_delete_primary_group="Delete Primary Group" 54 msg_edit_group="Edit/View Group" 57 msg_enter_group_members_manually="Enter Group Members manually" 64 msg_group="Group" 65 msg_group_added="Group Added" 66 msg_group_already_used="%s: Group is already used." 67 msg_group_deleted="Group Deleted" 68 msg_group_id="Group ID" [all …]
|
| /freebsd/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | LLGSOptions.td | 18 Group<grp_connect>; 22 Group<grp_connect>; 26 Group<grp_connect>; 30 Group<grp_connect>; 36 Group<grp_general>; 40 Group<grp_general>; 43 Group<grp_general>; 45 Group<grp_general>; 48 Group<grp_general>; 50 Group<grp_general>; [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | LSUnit.h | 290 void addSuccessor(MemoryGroup *Group, bool IsDataDependent) { in addSuccessor() argument 297 Group->NumPredecessors++; in addSuccessor() 300 Group->onGroupIssued(CriticalMemoryInstruction, IsDataDependent); in addSuccessor() 303 DataSucc.emplace_back(Group); in addSuccessor() 305 OrderSucc.emplace_back(Group); in addSuccessor() 426 const MemoryGroup &Group = getGroup(GroupID); in isReady() local 427 return Group.isReady(); in isReady() 432 const MemoryGroup &Group = getGroup(GroupID); in isPending() local 433 return Group.isPending(); in isPending() 438 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86CmovConversion.cpp | 153 void convertCmovInstsToBranches(SmallVectorImpl<MachineInstr *> &Group) const; 195 for (auto &Group : AllCmovGroups) { in runOnMachineFunction() local 198 llvm::none_of(Group, [&](MachineInstr *I) { return I->mayLoad(); })) in runOnMachineFunction() 205 convertCmovInstsToBranches(Group); in runOnMachineFunction() 259 for (auto &Group : CmovInstGroups) in runOnMachineFunction() local 260 convertCmovInstsToBranches(Group); in runOnMachineFunction() 289 CmovGroup Group; in collectCmovCandidates() local 291 Group.clear(); in collectCmovCandidates() 312 if (Group.empty()) { in collectCmovCandidates() 321 Group.push_back(&I); in collectCmovCandidates() [all …]
|
| /freebsd/contrib/llvm-project/libc/src/__support/HashTable/ |
| H A D | table.h | 55 stride += sizeof(Group); in next() 65 if (8 >= sizeof(Group) && cap < 8) in capacity_to_entries() 67 if (16 >= sizeof(Group) && cap < 15) in capacity_to_entries() 69 if (cap < sizeof(Group)) in capacity_to_entries() 70 cap = sizeof(Group); in capacity_to_entries() 107 return left_align > alignof(Group) ? left_align : alignof(Group); in table_alignment() 145 size_t index2 = ((index - sizeof(Group)) & entries_mask) + sizeof(Group); in set_ctrl() 155 Group ctrls = Group::load(&control(pos)); in find() 194 Group ctrls = Group::load(&control(pos)); in unsafe_insert() 269 SafeMemSize ctrl_sizes = entries + SafeMemSize{sizeof(Group)}; in allocate() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSectionELF.h | 43 const PointerIntPair<const MCSymbolELF *, 1, bool> Group; variable 64 Group(group, IsComdat), LinkedToSym(LinkedToSym) { in MCSectionELF() 65 assert((!(Flags & ELF::SHF_GROUP) || Group.getPointer()) && in MCSectionELF() 67 if (Group.getPointer()) in MCSectionELF() 68 Group.getPointer()->setIsSignature(); in MCSectionELF() 84 const MCSymbolELF *getGroup() const { return Group.getPointer(); } in getGroup() 85 bool isComdat() const { return Group.getInt(); } in isComdat()
|
| H A D | MCSectionWasm.h | 29 const MCSymbolWasm *Group; variable 53 const MCSymbolWasm *Group, unsigned UniqueID, MCSymbol *Begin) in MCSectionWasm() argument 55 UniqueID(UniqueID), Group(Group), in MCSectionWasm() 64 const MCSymbolWasm *getGroup() const { return Group; } in getGroup()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-remarkutil/ |
| H A D | RemarkCounter.h | 63 GroupBy Group = GroupBy::TOTAL; member 65 Counter(enum GroupBy GroupBy) : Group(GroupBy) {} in Counter() 111 createArgumentCounter(GroupBy Group, ArrayRef<FilterMatcher> Arguments, in createArgumentCounter() 114 AC.Group = Group; in createArgumentCounter() 146 RemarkCounter(GroupBy Group) : Counter(Group) {} in RemarkCounter()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | ObjdumpOpts.td | 266 Group<grp_mach_o>; 270 Group<grp_mach_o>; 274 Group<grp_mach_o>; 278 Group<grp_mach_o>; 282 Group<grp_mach_o>; 286 Group<grp_mach_o>; 290 Group<grp_mach_o>; 294 Group<grp_mach_o>; 297 Group<grp_mach_o>; 301 Group<grp_mach_o>; [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
| H A D | LSUnit.cpp | 57 const MemoryGroup &Group = *GroupIt.second; in dump() local 59 << "[ #Preds = " << Group.getNumPredecessors() in dump() 60 << ", #GIssued = " << Group.getNumExecutingPredecessors() in dump() 61 << ", #GExecuted = " << Group.getNumExecutedPredecessors() in dump() 62 << ", #Inst = " << Group.getNumInstructions() in dump() 63 << ", #IIssued = " << Group.getNumExecuting() in dump() 64 << ", #IExecuted = " << Group.getNumExecuted() << '\n'; in dump() 189 MemoryGroup &Group = getGroup(CurrentLoadGroupID); in dispatch() local 190 Group.addInstruction(); in dispatch()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ThreadPool.cpp | 136 bool StdThreadPool::workCompletedUnlocked(ThreadPoolTaskGroup *Group) const { in workCompletedUnlocked() 137 if (Group == nullptr) in workCompletedUnlocked() 139 return ActiveGroups.count(Group) == 0 && in workCompletedUnlocked() 140 !llvm::is_contained(llvm::make_second_range(Tasks), Group); in workCompletedUnlocked() 151 void StdThreadPool::wait(ThreadPoolTaskGroup &Group) { in wait() argument 156 [&] { return workCompletedUnlocked(&Group); }); in wait() 161 !llvm::is_contained(*CurrentThreadTaskGroups, &Group)); in wait() 165 processTasks(&Group); in wait()
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangDiagnosticsEmitter.cpp | 47 for (const Record *Group : Records.getAllDerivedDefinitions("DiagGroup")) in DiagGroupParentMap() local 48 for (const Record *SubGroup : Group->getValueAsListOfDefs("SubGroups")) in DiagGroupParentMap() 49 Mapping[SubGroup].push_back(Group); in DiagGroupParentMap() 52 ArrayRef<const Record *> getParents(const Record *Group) { in getParents() argument 53 return Mapping[Group]; in getParents() 59 getCategoryFromDiagGroup(const Record *Group, in getCategoryFromDiagGroup() argument 62 StringRef CatName = Group->getValueAsString("CategoryName"); in getCategoryFromDiagGroup() 67 for (const Record *Parent : DiagGroupParents.getParents(Group)) { in getCategoryFromDiagGroup() 79 if (const auto *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) { in getDiagnosticCategory() local 82 getCategoryFromDiagGroup(Group->getDef(), DiagGroupParents); in getDiagnosticCategory() [all …]
|
| H A D | ClangOptionDocEmitter.cpp | 39 const Record *Group; member 97 const Record *Group = nullptr; in extractDocumentation() local 99 Group = SkipFlattened(G->getDef()); in extractDocumentation() 100 GroupsInGroup[Group].push_back(R); in extractDocumentation() 126 const Record *Group = nullptr; in extractDocumentation() local 128 Group = SkipFlattened(G->getDef()); in extractDocumentation() 129 OptionsInGroup[Group].push_back(R); in extractDocumentation() 154 D.Groups.back().Group = G; in extractDocumentation() 421 void emitGroup(int Depth, const DocumentedGroup &Group, const Record *DocInfo, in emitGroup() argument 424 getRSTStringWithTextFallback(Group.Group, "DocName", "Name"), OS); in emitGroup() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | IROutliner.cpp | 621 static DISubprogram *getSubprogramOrNull(OutlinableGroup &Group) { in getSubprogramOrNull() argument 622 for (OutlinableRegion *OS : Group.Regions) in getSubprogramOrNull() 630 Function *IROutliner::createFunction(Module &M, OutlinableGroup &Group, in createFunction() argument 632 assert(!Group.OutlinedFunction && "Function is already defined!"); in createFunction() 643 for (OutlinableRegion *R : Group.Regions) { in createFunction() 650 Group.OutlinedFunctionType = FunctionType::get( in createFunction() 651 RetTy, Group.ArgumentTypes, false); in createFunction() 655 Group.OutlinedFunction = Function::Create( in createFunction() 656 Group.OutlinedFunctionType, GlobalValue::InternalLinkage, in createFunction() 660 if (Group.SwiftErrorArgument) in createFunction() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CoverageSummaryInfo.cpp | 116 FunctionCoverageSummary::get(const InstantiationGroup &Group, in get() argument 119 if (Group.hasName()) { in get() 120 Name = std::string(Group.getName()); in get() 123 OS << "Definition at line " << Group.getLine() << ", column " in get() 124 << Group.getColumn(); in get() 127 FunctionCoverageSummary Summary(Name, Group.getTotalExecutionCount()); in get()
|