28 if (InstallName.
empty())
30 auto Client =
addEntry(AllowableClients, InstallName);
36 if (InstallName.
empty())
38 auto Lib =
addEntry(ReexportedLibraries, InstallName);
46 [](
const std::pair<Target, std::string> &
LHS,
49 if ((Iter != ParentUmbrellas.end()) && !(Target_ < Iter->first)) {
50 Iter->second = std::string(Parent);
54 ParentUmbrellas.emplace(Iter, Target_, std::string(Parent));
60 using RPathEntryT =
const std::pair<Target, std::string>;
61 RPathEntryT Entry(InputTarget, RPath);
64 [](RPathEntryT &
LHS, RPathEntryT &
RHS) {
return LHS <
RHS; });
66 if ((Iter != RPaths.end()) && (*Iter == Entry))
69 RPaths.emplace(Iter, Entry);
79 return Archs.
has(Target_.Arch);
86 [](
const std::shared_ptr<InterfaceFile> &
LHS,
87 const std::shared_ptr<InterfaceFile> &
RHS) {
88 return LHS->InstallName <
RHS->InstallName;
90 assert((Pos == Documents.end() ||
91 (*Pos)->InstallName != Document->InstallName) &&
92 "Unexpected duplicate document added");
93 Document->Parent =
this;
94 Documents.insert(Pos, Document);
99 auto AddFwk = [&](std::shared_ptr<InterfaceFile> &&Reexport) {
101 Documents, Reexport->getInstallName(),
102 [](std::shared_ptr<InterfaceFile> &Lhs,
const StringRef Rhs) {
103 return Lhs->getInstallName() < Rhs;
106 if (Overwrite && It != Documents.end() &&
107 Reexport->getInstallName() == (*It)->getInstallName()) {
108 std::replace(Documents.begin(), Documents.end(), *It,
109 std::move(Reexport));
113 if ((It != Documents.end()) &&
114 !(Reexport->getInstallName() < (*It)->getInstallName()))
117 Documents.emplace(It, std::move(Reexport));
119 for (
auto Doc : Library->documents())
120 AddFwk(std::move(Doc));
122 Library->Documents.clear();
123 AddFwk(std::move(Library));
130 return make_error<StringError>(
"install names do not match",
135 return make_error<StringError>(
"current versions do not match",
140 return make_error<StringError>(
"compatibility versions do not match",
146 return make_error<StringError>(
"swift ABI versions do not match",
151 return make_error<StringError>(
"two level namespace flags do not match",
156 return make_error<StringError>(
157 "application extension safe flags do not match",
162 IF->setFileType(std::max(
getFileType(), O->getFileType()));
169 IF->setSwiftABIVersion(O->getSwiftABIVersion());
177 if (!It.second.empty())
178 IF->addParentUmbrella(It.first, It.second);
180 for (
const auto &It : O->umbrellas()) {
181 if (!It.second.empty())
182 IF->addParentUmbrella(It.first, It.second);
185 IF->addTargets(O->targets());
189 IF->addAllowableClient(
Lib.getInstallName(),
Target);
191 for (
const auto &
Lib : O->allowableClients())
193 IF->addAllowableClient(
Lib.getInstallName(),
Target);
197 IF->addReexportedLibrary(
Lib.getInstallName(),
Target);
199 for (
const auto &
Lib : O->reexportedLibraries())
201 IF->addReexportedLibrary(
Lib.getInstallName(),
Target);
204 IF->addRPath(Path,
Target);
205 for (
const auto &[
Target, Path] : O->rpaths())
206 IF->addRPath(Path,
Target);
213 for (
const auto *
Sym : O->symbols()) {
218 return std::move(IF);
224 return make_error<StringError>(
"cannot remove last architecture slice '" +
230 for (
auto &Doc : Documents) {
231 if (Doc->getArchitectures().has(Arch)) {
252 if (It.first.Arch != Arch)
253 IF->addParentUmbrella(It.first, It.second);
258 IF->addAllowableClient(
Lib.getInstallName(),
Target);
264 IF->addReexportedLibrary(
Lib.getInstallName(),
Target);
277 for (
auto &Doc : Documents) {
280 if (Doc->getArchitectures() == Arch)
285 if (!Doc->getArchitectures().has(Arch)) {
287 IF->addDocument(std::move(NewDoc));
291 auto Result = Doc->remove(Arch);
295 IF->addDocument(std::move(Result.get()));
298 return std::move(IF);
304 return make_error<StringError>(
"file doesn't have architecture '" +
320 if (It.first.Arch == Arch)
321 IF->addParentUmbrella(It.first, It.second);
323 for (
const auto &It :
rpaths())
324 if (It.first.Arch == Arch)
325 IF->addRPath(It.second, It.first);
330 IF->addAllowableClient(
Lib.getInstallName(),
Target);
335 IF->addReexportedLibrary(
Lib.getInstallName(),
Target);
343 for (
auto &Doc : Documents) {
345 if (!Doc->getArchitectures().has(Arch))
348 auto Result = Doc->extract(Arch);
352 IF->addDocument(std::move(Result.get()));
355 return std::move(IF);
391 if (Targets != O.Targets)
393 if (InstallName != O.InstallName)
395 if ((CurrentVersion != O.CurrentVersion) ||
396 (CompatibilityVersion != O.CompatibilityVersion))
398 if (SwiftABIVersion != O.SwiftABIVersion)
400 if (IsTwoLevelNamespace != O.IsTwoLevelNamespace)
402 if (IsAppExtensionSafe != O.IsAppExtensionSafe)
404 if (IsOSLibNotForSharedCache != O.IsOSLibNotForSharedCache)
406 if (HasSimSupport != O.HasSimSupport)
408 if (ParentUmbrellas != O.ParentUmbrellas)
410 if (AllowableClients != O.AllowableClients)
412 if (ReexportedLibraries != O.ReexportedLibraries)
414 if (*SymbolsSet != *O.SymbolsSet)
419 if (RPaths != O.RPaths)
425 if (!std::equal(Documents.begin(), Documents.end(), O.Documents.begin(),
427 [](
const std::shared_ptr<InterfaceFile>
LHS,
428 const std::shared_ptr<InterfaceFile>
RHS) {
static void clear(coro::Shape &Shape)
static bool isYAMLTextStub(const FileType &Kind)
Implements the TAPI Record Collection Type.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Define TAPI specific error codes.
Tagged union holding either a T or a Error.
static ArchitectureSet All()
ArchitectureSet clear(Architecture Arch)
bool has(Architecture Arch) const
void addTarget(const Target &Target)
Defines the interface file.
void addDocument(std::shared_ptr< InterfaceFile > &&Document)
Add a library for inlining to top level library.
StringRef getPath() const
Get the path from which this file was generated (if applicable).
void addReexportedLibrary(StringRef InstallName, const Target &Target)
Add a re-exported library.
void setPath(StringRef Path_)
Set the path from which this file was generated (if applicable).
void setFromBinaryAttrs(const RecordsSlice::BinaryAttrs &BA, const Target &Targ)
Set InterfaceFile properties from pre-gathered binary attributes, if they are not set already.
void addParentUmbrella(const Target &Target_, StringRef Parent)
Set the parent umbrella frameworks.
const_target_range targets() const
void setOSLibNotForSharedCache(bool V=true)
Specify if the library is an OS library but not shared cache eligible.
bool isOSLibNotForSharedCache() const
Check if the library is an OS library that is not shared cache eligible.
llvm::Expected< std::unique_ptr< InterfaceFile > > remove(Architecture Arch) const
Remove architecture slice from Interface.
bool isTwoLevelNamespace() const
Check if the library uses two-level namespace.
bool operator==(const InterfaceFile &O) const
The equality is determined by attributes that impact linking compatibilities.
PackedVersion getCompatibilityVersion() const
Get the compatibility version of the library.
void addTarget(const Target &Target)
Set and add target.
bool isApplicationExtensionSafe() const
Check if the library is application extension safe.
const std::vector< std::pair< Target, std::string > > & rpaths() const
Get the list of runpath search paths.
const std::vector< InterfaceFileRef > & allowableClients() const
Get the list of allowable clients.
void setInstallName(StringRef InstallName_)
Set the install name of the library.
const std::vector< std::pair< Target, std::string > > & umbrellas() const
Get the list of Parent Umbrella frameworks.
const std::vector< InterfaceFileRef > & reexportedLibraries() const
Get the list of re-exported libraries.
const_symbol_range symbols() const
void setFileType(FileType Kind)
Set the file type.
uint8_t getSwiftABIVersion() const
Get the Swift ABI version of the library.
PackedVersion getCurrentVersion() const
Get the current version of the library.
void addRPath(StringRef RPath, const Target &InputTarget)
Set the runpath search paths.
void setCompatibilityVersion(PackedVersion Version)
Set the compatibility version of the library.
ArchitectureSet getArchitectures() const
Get the architectures.
StringRef getInstallName() const
Get the install name of the library.
llvm::Expected< std::unique_ptr< InterfaceFile > > merge(const InterfaceFile *O) const
Merge Interfaces for the same library.
FileType getFileType() const
Get the file type.
void setApplicationExtensionSafe(bool V=true)
Specify if the library is application extension safe (or not).
void addAllowableClient(StringRef InstallName, const Target &Target)
Add an allowable client.
void inlineLibrary(std::shared_ptr< InterfaceFile > Library, bool Overwrite=false)
Inline reexported library into Interface.
void setSwiftABIVersion(uint8_t Version)
Set the Swift ABI version of the library.
void setCurrentVersion(PackedVersion Version)
Set the current version of the library.
llvm::Expected< std::unique_ptr< InterfaceFile > > extract(Architecture Arch) const
Extract architecture slice from Interface.
void setTwoLevelNamespace(bool V=true)
Specify if the library uses two-level namespace (or flat namespace).
SymbolFlags getFlags() const
bool hasArchitecture(Architecture Arch) const
const_target_range targets() const
ArchitectureSet getArchitectures() const
StringRef getName() const
EncodeKind getKind() const
StringRef - Represent a constant reference to a string, i.e.
constexpr bool empty() const
empty - Check if the string is empty.
A range adaptor for a pair of iterators.
FileType
Defines the file type TextAPI files can represent.
@ TBD_V1
Text-based stub file (.tbd) version 1.0.
@ TBD_V5
Text-based stub file (.tbd) version 5.0.
StringRef getArchitectureName(Architecture Arch)
Convert an architecture slice to a string.
C::iterator addEntry(C &Container, StringRef InstallName)
Architecture
Defines the architecture slices that are supported by Text-based Stub files.
PlatformVersionSet mapToPlatformVersionSet(ArrayRef< Target > Targets)
This is an optimization pass for GlobalISel generic memory operations.
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
std::vector< StringRef > RexportedLibraries
std::vector< StringRef > AllowableClients
llvm::MachO::PackedVersion CompatVersion
llvm::MachO::PackedVersion CurrentVersion
bool OSLibNotForSharedCache