Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitectureSet.h35 ArchSetType ArchSet{0};
39 constexpr ArchitectureSet(ArchSetType Raw) : ArchSet(Raw) {} in ArchitectureSet()
48 ArchSet |= 1U << static_cast<int>(Arch);
52 ArchSet &= ~(1U << static_cast<int>(Arch)); in has()
53 return ArchSet; in has()
57 return ArchSet & (1U << static_cast<int>(Arch)); in contains()
61 return (ArchSet & Archs.ArchSet) == Archs.ArchSet; in empty()
66 bool empty() const { return ArchSet in hasX86()
79 Ty *ArchSet; global() variable
[all...]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDiagnosticBuilderWrappers.cpp26 const ArchitectureSet &ArchSet) { in operator <<() argument
27 DB.AddString(std::string(ArchSet)); in operator <<()
H A DDiagnosticBuilderWrappers.h35 const ArchitectureSet &ArchSet);
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp422 std::set<ArchitectureSet> ArchSet; in NormalizedTBD() local
424 ArchSet.insert(Library.getArchitectures()); in NormalizedTBD()
427 ArchSet.insert(Library.getArchitectures()); in NormalizedTBD()
433 ArchSet.insert(Architectures); in NormalizedTBD()
436 for (auto Architectures : ArchSet) { in NormalizedTBD()
494 ArchSet.clear(); in NormalizedTBD()
500 ArchSet.insert(Architectures); in NormalizedTBD()
503 for (auto Architectures : ArchSet) { in NormalizedTBD()
H A DArchitectureSet.cpp32 if (ArchSet & (1U << i)) in count()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp4466 std::set<StringRef> ArchSet; in getConflictOffloadArchCombination() local
4467 llvm::copy(Archs, std::inserter(ArchSet, ArchSet.begin())); in getConflictOffloadArchCombination()
4468 return getConflictTargetIDCombination(ArchSet); in getConflictOffloadArchCombination()