Files
swift-mirror/include/swift/SIL/SILLinkage.h
2015-12-31 23:28:40 +00:00

217 lines
6.9 KiB
C++

//===--- SILLinkage.h - Defines the SILLinkage type -------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SIL_SILLINKAGE_H
#define SWIFT_SIL_SILLINKAGE_H
namespace swift {
/// Linkage for a SIL object. This concept combines the notions
/// of symbol linkage and visibility.
///
/// Note that a Swift module is not the same thing as a SILModule.
/// A SILModule is just a collection of objects.
///
/// Semantic equivalence does not imply exact operational equivalence.
/// For example, a function definition might be semantically
/// equivalent to a second definition which uses a parameter that the
/// first does not, perhaps by reading a value out of it (and then
/// ignoring the result) or retaining it (and then releasing it
/// later).
enum class SILLinkage : unsigned char {
/// This object definition is visible to multiple Swift modules (and
/// thus potentially across linkage-unit boundaries). There are no
/// other object definitions with this name in the program.
Public,
/// This object definition is visible only to the current Swift
/// module (and thus should not be visible across linkage-unit
/// boundaries). There are no other object definitions with this
/// name in the module.
Hidden,
/// This object definition is visible only within a single Swift
/// module. There may be other object definitions with this name in
/// the module; those definitions are all guaranteed to be
/// semantically equivalent to this one.
Shared,
/// This object definition is visible only within a single Swift
/// file.
Private,
/// A Public definition with the same name as this object will be
/// available to the current Swift module at runtime. If this
/// object is a definition, it is semantically equivalent to that
/// definition.
PublicExternal,
/// A Public or Hidden definition with the same name as this object
/// will be defined by the current Swift module at runtime. If this
/// object is a definition, it is semantically equivalent to that
/// definition.
HiddenExternal,
/// This Shared definition was imported from another module. It is not
/// necessary to serialize it since it can be deserialized from the original
/// module. Besides that caveat this should be treated exactly the same as
/// shared.
SharedExternal,
/// The same as SharedExternal, except that the definition is private in the
/// other module. This can only occur if an inlined fragile function from
/// another module references a private definition in the other module.
PrivateExternal,
/// The default linkage for a definition.
DefaultForDefinition = Public,
/// The default linkage for an external declaration.
DefaultForDeclaration = PublicExternal,
};
enum {
/// The number of bits required to store a SILLinkage value.
NumSILLinkageBits = 3
};
/// Related to linkage: flag if a function or global variable is fragile.
enum IsFragile_t {
IsNotFragile,
IsFragile
};
/// True if we have an inline body generated by Clang.
enum HasForeignBody_t {
DoesNotHaveForeignBody,
HasForeignBody
};
/// Strip external from public_external, hidden_external. Otherwise just return
/// the linkage.
inline SILLinkage stripExternalFromLinkage(SILLinkage linkage) {
if (linkage == SILLinkage::PublicExternal)
return SILLinkage::Public;
if (linkage == SILLinkage::HiddenExternal)
return SILLinkage::Hidden;
if (linkage == SILLinkage::SharedExternal)
return SILLinkage::Shared;
if (linkage == SILLinkage::PrivateExternal)
return SILLinkage::Private;
return linkage;
}
/// Add the 'external' attribute to \p linkage.
inline SILLinkage addExternalToLinkage(SILLinkage linkage) {
if (linkage == SILLinkage::Public)
return SILLinkage::PublicExternal;
if (linkage == SILLinkage::Hidden)
return SILLinkage::HiddenExternal;
if (linkage == SILLinkage::Shared)
return SILLinkage::SharedExternal;
if (linkage == SILLinkage::Private)
return SILLinkage::PrivateExternal;
return linkage;
}
/// Return whether the linkage indicates that an object has a
/// definition outside the current SILModule.
inline bool isAvailableExternally(SILLinkage linkage) {
return linkage >= SILLinkage::PublicExternal;
}
/// Return whether the given linkage indicates that an object's
/// definition might be required outside the current SILModule.
/// If \p is true then we are in whole-module compilation.
inline bool isPossiblyUsedExternally(SILLinkage linkage, bool wholeModule) {
if (wholeModule) {
return linkage <= SILLinkage::Public;
}
return linkage <= SILLinkage::Hidden;
}
inline bool hasPublicVisibility(SILLinkage linkage) {
switch (linkage) {
case SILLinkage::Public:
case SILLinkage::PublicExternal:
return true;
case SILLinkage::Hidden:
case SILLinkage::Shared:
case SILLinkage::SharedExternal:
case SILLinkage::Private:
case SILLinkage::PrivateExternal:
case SILLinkage::HiddenExternal:
return false;
}
}
inline bool hasSharedVisibility(SILLinkage linkage) {
switch (linkage) {
case SILLinkage::Shared:
case SILLinkage::SharedExternal:
return true;
case SILLinkage::Public:
case SILLinkage::PublicExternal:
case SILLinkage::Hidden:
case SILLinkage::HiddenExternal:
case SILLinkage::Private:
case SILLinkage::PrivateExternal:
return false;
}
}
inline bool hasPrivateVisibility(SILLinkage linkage) {
switch (linkage) {
case SILLinkage::Private:
case SILLinkage::PrivateExternal:
return true;
case SILLinkage::Public:
case SILLinkage::PublicExternal:
case SILLinkage::Hidden:
case SILLinkage::HiddenExternal:
case SILLinkage::Shared:
case SILLinkage::SharedExternal:
return false;
}
}
/// Returns true if l1 is less visible than l2.
inline bool isLessVisibleThan(SILLinkage l1, SILLinkage l2) {
if (l1 == SILLinkage::PublicExternal)
l1 = SILLinkage::Public;
else if (l1 == SILLinkage::HiddenExternal)
l1 = SILLinkage::Hidden;
else if (l1 == SILLinkage::Shared)
l1 = SILLinkage::Public;
else if (l1 == SILLinkage::SharedExternal)
l1 = SILLinkage::Public;
else if (l1 == SILLinkage::PrivateExternal)
l1 = SILLinkage::Private;
if (l2 == SILLinkage::PublicExternal)
l2 = SILLinkage::Public;
else if (l2 == SILLinkage::HiddenExternal)
l2 = SILLinkage::Hidden;
else if (l2 == SILLinkage::Shared)
l2 = SILLinkage::Public;
else if (l2 == SILLinkage::SharedExternal)
l2 = SILLinkage::Public;
else if (l2 == SILLinkage::PrivateExternal)
l2 = SILLinkage::Private;
return unsigned(l1) > unsigned(l2);
}
} // end swift namespace
#endif