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.h36 ArchSetType ArchSet{0};
40 constexpr ArchitectureSet(ArchSetType Raw) : ArchSet(Raw) {} in ArchitectureSet()
49 ArchSet |= 1U << static_cast<int>(Arch); in set()
53 ArchSet &= ~(1U << static_cast<int>(Arch)); in clear()
54 return ArchSet; in clear()
58 return ArchSet & (1U << static_cast<int>(Arch)); in has()
62 return (ArchSet & Archs.ArchSet) == Archs.ArchSet; in contains()
67 bool empty() const { return ArchSet == 0; } in empty()
69 ArchSetType rawValue() const { return ArchSet; } in rawValue()
85 Ty *ArchSet; variable
[all …]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDiagnosticBuilderWrappers.cpp25 const ArchitectureSet &ArchSet) { in operator <<() argument
26 DB.AddString(std::string(ArchSet)); in operator <<()
H A DDiagnosticBuilderWrappers.h36 const ArchitectureSet &ArchSet);
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp421 std::set<ArchitectureSet> ArchSet; in NormalizedTBD() local
423 ArchSet.insert(Library.getArchitectures()); in NormalizedTBD()
426 ArchSet.insert(Library.getArchitectures()); in NormalizedTBD()
432 ArchSet.insert(Architectures); in NormalizedTBD()
435 for (auto Architectures : ArchSet) { in NormalizedTBD()
493 ArchSet.clear(); in NormalizedTBD()
499 ArchSet.insert(Architectures); in NormalizedTBD()
502 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.cpp4764 std::set<StringRef> ArchSet; in getConflictOffloadArchCombination() local
4765 llvm::copy(Archs, std::inserter(ArchSet, ArchSet.begin())); in getConflictOffloadArchCombination()
4766 return getConflictTargetIDCombination(ArchSet); in getConflictOffloadArchCombination()