Searched refs:Groups (Results 1 - 25 of 25) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Support/Windows/
H A DThreading.inc170 std::vector<USHORT> Groups;
171 Groups.resize(Count);
172 if (!::GetProcessGroupAffinity(GetCurrentProcess(), &Count, Groups.data()))
175 return Groups;
180 SmallVector<ProcessorGroup, 4> Groups;
186 G.ID = Groups.size();
191 Groups.push_back(G);
206 Groups[I].ThreadsPerCore = NumHyperThreads;
226 return std::vector<ProcessorGroup>(Groups.begin(), Groups
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DNamespaceEndCommentsFixer.cpp180 SmallVector<StringRef, 8> Groups; local
182 NamespaceMacroCommentPattern.match(Comment->TokenText, &Groups)) {
183 StringRef NamespaceTokenText = Groups.size() > 4 ? Groups[4] : "";
188 !NamespaceCommentPattern.match(Comment->TokenText, &Groups)) {
192 StringRef NamespaceNameInComment = Groups.size() > 5 ? Groups[5].rtrim() : "";
196 StringRef AnonymousInComment = Groups.size() > 3 ? Groups[3] : "";
213 if (!CommentPattern.match(Comment->Next->TokenText, &Groups))
[all...]
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp28 const std::vector<Record *> &Groups = local
30 for (unsigned i = 0, e = Groups.size(); i != e; ++i) {
31 const Record &R = *Groups[i];
H A DCodeGenSchedule.h382 std::vector<OpcodeGroup> Groups; member in class:llvm::STIPredicateFunction
397 if (Groups.empty() ||
398 Groups.back().getOpcodeInfo().getPredicates() != Info.getPredicates())
399 Groups.emplace_back(std::move(Info));
400 Groups.back().addOpcode(OpcodeRec);
412 ArrayRef<OpcodeGroup> getGroups() const { return Groups; }
H A DOptParserEmitter.cpp199 const std::vector<Record*> &Groups = local
279 OS << "// Groups\n\n";
281 for (const Record &R : llvm::make_pointee_range(Groups)) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h218 DenseMap<unsigned, std::unique_ptr<MemoryGroup>> Groups; member in class:llvm::mca::LSUnitBase
269 return Index && Groups.contains(Index);
303 return *Groups.find(Index)->second;
308 return *Groups.find(Index)->second;
312 Groups.insert(
327 Groups[GroupID]->onInstructionIssued(IR);
/freebsd-current/contrib/llvm-project/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp32 std::vector<DocumentedGroup> Groups; member in struct:__anon1085::Documentation
36 return Groups.empty() && Options.empty();
147 auto &Groups = GroupsInGroup[R];
148 llvm::sort(Groups, CompareByLocation);
149 for (Record *G : Groups) {
150 D.Groups.emplace_back();
151 D.Groups.back().Group = G;
152 Documentation &Base = D.Groups.back();
155 D.Groups.pop_back();
410 for (auto &G : Doc.Groups)
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DLSUnit.cpp45 for (const std::pair<unsigned, std::unique_ptr<MemoryGroup>> &G : Groups)
56 for (const auto &GroupIt : Groups) {
207 auto It = Groups.find(GroupID);
208 assert(It != Groups.end() && "Instruction not dispatched to the LS unit");
211 Groups.erase(It);
/freebsd-current/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp39 if (Option->getValue("Groups")) {
41 auto Groups = Option->getValueAsListOfInts("Groups"); local
42 for (int Group : Groups)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.cpp73 static const X86InstrFMA3Group Groups[] = { variable
131 assert(llvm::is_sorted(Groups) && llvm::is_sorted(RoundGroups) &&
165 Table = ArrayRef(Groups);
/freebsd-current/contrib/llvm-project/clang/lib/Driver/
H A DMultilib.cpp199 std::vector<MultilibGroupSerialization> Groups; member in struct:__anon572::MultilibSetSerialization
252 io.mapOptional("Groups", M.Groups);
267 for (const MultilibGroupSerialization &Group : M.Groups)
303 // we'll have to look up the group name in MS.Groups, check its type, and
/freebsd-current/stand/efi/include/
H A Defiudp.h151 EFI_UDP4_GROUPS Groups; member in struct:_EFI_UDP4
265 EFI_UDP6_GROUPS Groups; member in struct:_EFI_UDP6
H A Defiip.h202 EFI_IP4_GROUPS Groups; member in struct:_EFI_IP4
450 EFI_IP6_GROUPS Groups; member in struct:_EFI_IP6
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp174 CsectGroups Groups; member in struct:__anon2105::CsectSectionEntry
177 CsectGroups Groups)
178 : SectionEntry(N, Flags), IsVirtual(IsVirtual), Groups(Groups) {
186 for (auto *Group : Groups)
1090 for (const auto *Group : Section->Groups) {
1157 for (const auto *Group : Section->Groups) {
1244 for (const auto *Group : Section->Groups) {
1381 llvm::all_of(Section->Groups,
1402 for (auto *Group : Section->Groups) {
176 CsectSectionEntry(StringRef N, XCOFF::SectionTypeFlags Flags, bool IsVirtual, CsectGroups Groups) argument
[all...]
H A DELFObjectWriter.cpp1112 std::vector<MCSectionELF *> Groups; local
1139 Groups.push_back(Group);
1157 for (MCSectionELF *Group : Groups) {
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp2618 const std::vector<VarGrpTy> Groups;
2624 const std::vector<VarGrpTy> &Groups,
2627 : Groups(Groups), VarGrpMap(VarGrpMap),
2643 return Groups[It->second];
2835 // `Groups` stores the set of Connected Components in the graph.
2836 std::vector<VarGrpTy> Groups;
2838 // variables belong to. Group indexes refer to the elements in `Groups`.
2841 // The union group over the ones in "Groups" that contain parameters of `D`:
2850 VarGrpTy &VarGroup = Groups
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp717 SmallVector<StringRef, 2> Groups; local
718 if (vstRegex.match(Name, &Groups)) {
729 if (Groups[1].size() == 1)
1085 SmallVector<StringRef, 2> Groups; local
1087 if (R.match(Name, &Groups))
1088 ID = StringSwitch<Intrinsic::ID>(Groups[1])
1105 Groups.clear();
1107 if (R2.match(Name, &Groups))
1108 ID = StringSwitch<Intrinsic::ID>(Groups[1])
5288 SmallVector<StringRef, 4> Groups; local
5303 SmallVector<StringRef, 4> Groups; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp532 SmallVector<RuntimeCheckingPtrGroup, 2> Groups; local
552 for (RuntimeCheckingPtrGroup &Group : Groups) {
572 Groups.push_back(RuntimeCheckingPtrGroup(Pointer, *this));
578 llvm::copy(Groups, std::back_inserter(CheckingGroups));
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVModuleAnalysis.cpp558 Capability::Groups, Capability::GenericPointer,
891 Reqs.addCapability(SPIRV::Capability::Groups);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1763 DenseMap<unsigned, SmallVector<MemOpInfo, 32>> &Groups);
1930 DenseMap<unsigned, SmallVector<MemOpInfo, 32>> &Groups) {
1953 Groups[ChainPredID].push_back(MemOp);
1970 DenseMap<unsigned, SmallVector<MemOpInfo, 32>> Groups;
1971 bool FastCluster = groupMemOps(MemOpRecords, DAG, Groups);
1973 for (auto &Group : Groups) {
1928 groupMemOps( ArrayRef<MemOpInfo> MemOps, ScheduleDAGInstrs *DAG, DenseMap<unsigned, SmallVector<MemOpInfo, 32>> &Groups) argument
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp3240 InstrGroupList Groups;
3281 Groups.push_back(G);
3285 for (unsigned i = 0, n = Groups.size(); i < n; ++i) {
3286 InstrGroup &G = Groups[i];
3295 for (InstrGroup &G : Groups) {
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp2915 SmallVector<MethodGroup, 10> Groups; local
2925 std::make_pair(ND->getDeclName(), Groups.size()));
2927 Groups.push_back(MethodGroup());
2930 Groups[J->second].push_back(MD->getCanonicalDecl());
2933 for (const MethodGroup &Group : Groups)
/freebsd-current/crypto/openssl/ssl/
H A Dssl_conf.c716 SSL_CONF_CMD_STRING(Groups, "groups", 0),
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp3045 llvm::ArrayRef<frontend::IncludeDirGroup> Groups,
3048 return llvm::is_contained(Groups, Entry.Group) &&
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp3789 mapSectionsToGroups(ArrayRef<GroupSection> Groups) { argument
3791 for (const GroupSection &G : Groups)
6983 DictScope Lists(W, "Groups");

Completed in 497 milliseconds