Home
last modified time | relevance | path

Searched refs:ArchSet (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitectureSet.h35 ArchSetType ArchSet{0};
56 return (ArchSet & Archs.ArchSet) == Archs.ArchSet; in contains()
79 Ty *ArchSet; variable
94 : Index(Index), ArchSet(ArchSet) { in Index()
113 return std::tie(Index, ArchSet) == std::tie(o.Index, o.ArchSet);
120 return {ArchSet & o.ArchSet};
124 return {ArchSet | o.ArchSet};
128 ArchSet |= o.ArchSet;
138 return ArchSet == o.ArchSet;
142 return ArchSet != o.ArchSet;
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp461 std::set<ArchitectureSet> ArchSet; in NormalizedTBD() local
463 ArchSet.insert(Library.getArchitectures()); in NormalizedTBD()
466 ArchSet.insert(Library.getArchitectures()); in NormalizedTBD()
472 ArchSet.insert(Architectures); in NormalizedTBD()
475 for (auto Architectures : ArchSet) { in NormalizedTBD()
533 ArchSet.clear(); in NormalizedTBD()
539 ArchSet.insert(Architectures); in NormalizedTBD()
542 for (auto Architectures : ArchSet) { in NormalizedTBD()
H A DArchitectureSet.cpp32 if (ArchSet & (1U << i)) in count()