2006-10-15 22:34:45 +00:00
|
|
|
//===--- Decl.cpp - Declaration AST Node Implementation -------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:25 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-10-15 22:34:45 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-06-04 13:04:04 +00:00
|
|
|
// This file implements the Decl subclasses.
|
2006-10-15 22:34:45 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/Decl.h"
|
2008-03-15 06:12:44 +00:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2012-12-01 15:09:41 +00:00
|
|
|
#include "clang/AST/ASTMutationListener.h"
|
|
|
|
#include "clang/AST/Attr.h"
|
2012-12-04 09:13:33 +00:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
|
|
|
#include "clang/AST/DeclObjC.h"
|
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2008-12-17 23:39:55 +00:00
|
|
|
#include "clang/AST/Expr.h"
|
2009-12-15 19:16:31 +00:00
|
|
|
#include "clang/AST/ExprCXX.h"
|
2009-05-29 20:38:28 +00:00
|
|
|
#include "clang/AST/PrettyPrinter.h"
|
2012-12-01 15:09:41 +00:00
|
|
|
#include "clang/AST/Stmt.h"
|
|
|
|
#include "clang/AST/TypeLoc.h"
|
2009-06-14 01:54:56 +00:00
|
|
|
#include "clang/Basic/Builtins.h"
|
2008-08-11 04:54:23 +00:00
|
|
|
#include "clang/Basic/IdentifierTable.h"
|
2011-12-02 23:23:56 +00:00
|
|
|
#include "clang/Basic/Module.h"
|
2010-05-11 21:36:43 +00:00
|
|
|
#include "clang/Basic/Specifiers.h"
|
2011-03-26 12:10:19 +00:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2009-09-04 01:14:41 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2013-02-21 23:42:58 +00:00
|
|
|
#include "llvm/Support/type_traits.h"
|
2011-09-21 18:16:56 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2006-10-25 05:11:20 +00:00
|
|
|
using namespace clang;
|
2006-10-15 22:34:45 +00:00
|
|
|
|
2008-03-31 00:36:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-01-20 01:17:11 +00:00
|
|
|
// NamedDecl Implementation
|
2008-11-09 23:41:00 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
// Visibility rules aren't rigorously externally specified, but here
|
|
|
|
// are the basic principles behind what we implement:
|
|
|
|
//
|
|
|
|
// 1. An explicit visibility attribute is generally a direct expression
|
|
|
|
// of the user's intent and should be honored. Only the innermost
|
|
|
|
// visibility attribute applies. If no visibility attribute applies,
|
|
|
|
// global visibility settings are considered.
|
|
|
|
//
|
|
|
|
// 2. There is one caveat to the above: on or in a template pattern,
|
|
|
|
// an explicit visibility attribute is just a default rule, and
|
|
|
|
// visibility can be decreased by the visibility of template
|
|
|
|
// arguments. But this, too, has an exception: an attribute on an
|
|
|
|
// explicit specialization or instantiation causes all the visibility
|
|
|
|
// restrictions of the template arguments to be ignored.
|
|
|
|
//
|
|
|
|
// 3. A variable that does not otherwise have explicit visibility can
|
|
|
|
// be restricted by the visibility of its type.
|
|
|
|
//
|
|
|
|
// 4. A visibility restriction is explicit if it comes from an
|
|
|
|
// attribute (or something like it), not a global visibility setting.
|
|
|
|
// When emitting a reference to an external symbol, visibility
|
|
|
|
// restrictions are ignored unless they are explicit.
|
2013-02-20 01:54:26 +00:00
|
|
|
//
|
|
|
|
// 5. When computing the visibility of a non-type, including a
|
|
|
|
// non-type member of a class, only non-type visibility restrictions
|
|
|
|
// are considered: the 'visibility' attribute, global value-visibility
|
|
|
|
// settings, and a few special cases like __private_extern.
|
|
|
|
//
|
|
|
|
// 6. When computing the visibility of a type, including a type member
|
|
|
|
// of a class, only type visibility restrictions are considered:
|
|
|
|
// the 'type_visibility' attribute and global type-visibility settings.
|
|
|
|
// However, a 'visibility' attribute counts as a 'type_visibility'
|
|
|
|
// attribute on any declaration that only has the former.
|
|
|
|
//
|
|
|
|
// The visibility of a "secondary" entity, like a template argument,
|
|
|
|
// is computed using the kind of that entity, not the kind of the
|
|
|
|
// primary entity for which we are computing visibility. For example,
|
|
|
|
// the visibility of a specialization of either of these templates:
|
|
|
|
// template <class T, bool (&compare)(T, X)> bool has_match(list<T>, X);
|
|
|
|
// template <class T, bool (&compare)(T, X)> class matcher;
|
|
|
|
// is restricted according to the type visibility of the argument 'T',
|
|
|
|
// the type visibility of 'bool(&)(T,X)', and the value visibility of
|
|
|
|
// the argument function 'compare'. That 'has_match' is a value
|
|
|
|
// and 'matcher' is a type only matters when looking for attributes
|
|
|
|
// and settings from the immediate context.
|
2013-02-16 00:17:33 +00:00
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
const unsigned IgnoreExplicitVisibilityBit = 2;
|
2013-05-28 19:43:11 +00:00
|
|
|
const unsigned IgnoreAllVisibilityBit = 4;
|
2013-02-21 23:42:58 +00:00
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
/// Kinds of LV computation. The linkage side of the computation is
|
|
|
|
/// always the same, but different things can change how visibility is
|
|
|
|
/// computed.
|
|
|
|
enum LVComputationKind {
|
2013-02-21 23:42:58 +00:00
|
|
|
/// Do an LV computation for, ultimately, a type.
|
|
|
|
/// Visibility may be restricted by type visibility settings and
|
|
|
|
/// the visibility of template arguments.
|
2013-02-20 01:54:26 +00:00
|
|
|
LVForType = NamedDecl::VisibilityForType,
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
/// Do an LV computation for, ultimately, a non-type declaration.
|
|
|
|
/// Visibility may be restricted by value visibility settings and
|
|
|
|
/// the visibility of template arguments.
|
2013-02-20 01:54:26 +00:00
|
|
|
LVForValue = NamedDecl::VisibilityForValue,
|
2013-02-16 00:17:33 +00:00
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
/// Do an LV computation for, ultimately, a type that already has
|
|
|
|
/// some sort of explicit visibility. Visibility may only be
|
|
|
|
/// restricted by the visibility of template arguments.
|
|
|
|
LVForExplicitType = (LVForType | IgnoreExplicitVisibilityBit),
|
2013-02-20 01:54:26 +00:00
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
/// Do an LV computation for, ultimately, a non-type declaration
|
|
|
|
/// that already has some sort of explicit visibility. Visibility
|
|
|
|
/// may only be restricted by the visibility of template arguments.
|
2013-05-28 19:43:11 +00:00
|
|
|
LVForExplicitValue = (LVForValue | IgnoreExplicitVisibilityBit),
|
|
|
|
|
|
|
|
/// Do an LV computation when we only care about the linkage.
|
|
|
|
LVForLinkageOnly =
|
|
|
|
LVForValue | IgnoreExplicitVisibilityBit | IgnoreAllVisibilityBit
|
2013-02-16 00:17:33 +00:00
|
|
|
};
|
|
|
|
|
2013-02-20 01:54:26 +00:00
|
|
|
/// Does this computation kind permit us to consider additional
|
|
|
|
/// visibility settings from attributes and the like?
|
|
|
|
static bool hasExplicitVisibilityAlready(LVComputationKind computation) {
|
2013-02-21 23:42:58 +00:00
|
|
|
return ((unsigned(computation) & IgnoreExplicitVisibilityBit) != 0);
|
2013-02-20 01:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Given an LVComputationKind, return one of the same type/value sort
|
|
|
|
/// that records that it already has explicit visibility.
|
|
|
|
static LVComputationKind
|
|
|
|
withExplicitVisibilityAlready(LVComputationKind oldKind) {
|
|
|
|
LVComputationKind newKind =
|
2013-02-21 23:42:58 +00:00
|
|
|
static_cast<LVComputationKind>(unsigned(oldKind) |
|
|
|
|
IgnoreExplicitVisibilityBit);
|
2013-02-20 01:54:26 +00:00
|
|
|
assert(oldKind != LVForType || newKind == LVForExplicitType);
|
|
|
|
assert(oldKind != LVForValue || newKind == LVForExplicitValue);
|
|
|
|
assert(oldKind != LVForExplicitType || newKind == LVForExplicitType);
|
|
|
|
assert(oldKind != LVForExplicitValue || newKind == LVForExplicitValue);
|
|
|
|
return newKind;
|
|
|
|
}
|
|
|
|
|
2013-02-20 22:23:23 +00:00
|
|
|
static Optional<Visibility> getExplicitVisibility(const NamedDecl *D,
|
|
|
|
LVComputationKind kind) {
|
2013-02-20 01:54:26 +00:00
|
|
|
assert(!hasExplicitVisibilityAlready(kind) &&
|
|
|
|
"asking for explicit visibility when we shouldn't be");
|
|
|
|
return D->getExplicitVisibility((NamedDecl::ExplicitVisibilityKind) kind);
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
/// Is the given declaration a "type" or a "value" for the purposes of
|
|
|
|
/// visibility computation?
|
|
|
|
static bool usesTypeVisibility(const NamedDecl *D) {
|
2013-02-19 01:57:35 +00:00
|
|
|
return isa<TypeDecl>(D) ||
|
|
|
|
isa<ClassTemplateDecl>(D) ||
|
|
|
|
isa<ObjCInterfaceDecl>(D);
|
2013-02-16 00:17:33 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
/// Does the given declaration have member specialization information,
|
|
|
|
/// and if so, is it an explicit specialization?
|
|
|
|
template <class T> static typename
|
|
|
|
llvm::enable_if_c<!llvm::is_base_of<RedeclarableTemplateDecl, T>::value,
|
|
|
|
bool>::type
|
|
|
|
isExplicitMemberSpecialization(const T *D) {
|
|
|
|
if (const MemberSpecializationInfo *member =
|
|
|
|
D->getMemberSpecializationInfo()) {
|
|
|
|
return member->isExplicitSpecialization();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// For templates, this question is easier: a member template can't be
|
|
|
|
/// explicitly instantiated, so there's a single bit indicating whether
|
|
|
|
/// or not this is an explicit member specialization.
|
|
|
|
static bool isExplicitMemberSpecialization(const RedeclarableTemplateDecl *D) {
|
|
|
|
return D->isMemberSpecialization();
|
|
|
|
}
|
|
|
|
|
2013-02-20 01:54:26 +00:00
|
|
|
/// Given a visibility attribute, return the explicit visibility
|
|
|
|
/// associated with it.
|
|
|
|
template <class T>
|
|
|
|
static Visibility getVisibilityFromAttr(const T *attr) {
|
|
|
|
switch (attr->getVisibility()) {
|
|
|
|
case T::Default:
|
|
|
|
return DefaultVisibility;
|
|
|
|
case T::Hidden:
|
|
|
|
return HiddenVisibility;
|
|
|
|
case T::Protected:
|
|
|
|
return ProtectedVisibility;
|
|
|
|
}
|
|
|
|
llvm_unreachable("bad visibility kind");
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
/// Return the explicit visibility of the given declaration.
|
2013-02-20 22:23:23 +00:00
|
|
|
static Optional<Visibility> getVisibilityOf(const NamedDecl *D,
|
2013-02-20 01:54:26 +00:00
|
|
|
NamedDecl::ExplicitVisibilityKind kind) {
|
|
|
|
// If we're ultimately computing the visibility of a type, look for
|
|
|
|
// a 'type_visibility' attribute before looking for 'visibility'.
|
|
|
|
if (kind == NamedDecl::VisibilityForType) {
|
|
|
|
if (const TypeVisibilityAttr *A = D->getAttr<TypeVisibilityAttr>()) {
|
|
|
|
return getVisibilityFromAttr(A);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-26 12:10:19 +00:00
|
|
|
// If this declaration has an explicit visibility attribute, use it.
|
|
|
|
if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) {
|
2013-02-20 01:54:26 +00:00
|
|
|
return getVisibilityFromAttr(A);
|
2010-10-28 04:18:25 +00:00
|
|
|
}
|
2010-12-18 03:30:47 +00:00
|
|
|
|
2011-03-26 12:10:19 +00:00
|
|
|
// If we're on Mac OS X, an 'availability' for Mac OS X attribute
|
|
|
|
// implies visibility(default).
|
2011-09-02 00:18:52 +00:00
|
|
|
if (D->getASTContext().getTargetInfo().getTriple().isOSDarwin()) {
|
2011-03-26 12:10:19 +00:00
|
|
|
for (specific_attr_iterator<AvailabilityAttr>
|
|
|
|
A = D->specific_attr_begin<AvailabilityAttr>(),
|
|
|
|
AEnd = D->specific_attr_end<AvailabilityAttr>();
|
|
|
|
A != AEnd; ++A)
|
|
|
|
if ((*A)->getPlatform()->getName().equals("macosx"))
|
|
|
|
return DefaultVisibility;
|
2010-10-22 21:05:15 +00:00
|
|
|
}
|
2011-03-26 12:10:19 +00:00
|
|
|
|
2013-02-21 01:47:18 +00:00
|
|
|
return None;
|
2010-10-22 21:05:15 +00:00
|
|
|
}
|
|
|
|
|
2013-05-29 04:55:30 +00:00
|
|
|
static LinkageInfo
|
|
|
|
getLVForType(const Type &T, LVComputationKind computation) {
|
|
|
|
if (computation == LVForLinkageOnly)
|
|
|
|
return LinkageInfo(T.getLinkage(), DefaultVisibility, true);
|
|
|
|
return T.getLinkageAndVisibility();
|
|
|
|
}
|
|
|
|
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
/// \brief Get the most restrictive linkage for the types in the given
|
2013-02-16 00:17:33 +00:00
|
|
|
/// template parameter list. For visibility purposes, template
|
|
|
|
/// parameters are part of the signature of a template.
|
2012-01-14 00:30:36 +00:00
|
|
|
static LinkageInfo
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateParameterList(const TemplateParameterList *params,
|
|
|
|
LVComputationKind computation) {
|
2013-02-16 00:17:33 +00:00
|
|
|
LinkageInfo LV;
|
|
|
|
for (TemplateParameterList::const_iterator P = params->begin(),
|
|
|
|
PEnd = params->end();
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
P != PEnd; ++P) {
|
2013-02-16 00:17:33 +00:00
|
|
|
|
|
|
|
// Template type parameters are the most common and never
|
|
|
|
// contribute to visibility, pack or not.
|
|
|
|
if (isa<TemplateTypeParmDecl>(*P))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Non-type template parameters can be restricted by the value type, e.g.
|
|
|
|
// template <enum X> class A { ... };
|
|
|
|
// We have to be careful here, though, because we can be dealing with
|
|
|
|
// dependent types.
|
2011-01-19 20:10:05 +00:00
|
|
|
if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
|
2013-02-16 00:17:33 +00:00
|
|
|
// Handle the non-pack case first.
|
|
|
|
if (!NTTP->isExpandedParameterPack()) {
|
|
|
|
if (!NTTP->getType()->isDependentType()) {
|
2013-05-29 04:55:30 +00:00
|
|
|
LV.merge(getLVForType(*NTTP->getType(), computation));
|
2011-01-19 20:10:05 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2012-01-02 06:26:22 +00:00
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
// Look at all the types in an expanded pack.
|
|
|
|
for (unsigned i = 0, n = NTTP->getNumExpansionTypes(); i != n; ++i) {
|
|
|
|
QualType type = NTTP->getExpansionType(i);
|
|
|
|
if (!type->isDependentType())
|
2013-02-27 02:27:19 +00:00
|
|
|
LV.merge(type->getLinkageAndVisibility());
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
2011-01-19 20:10:05 +00:00
|
|
|
}
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
// Template template parameters can be restricted by their
|
|
|
|
// template parameters, recursively.
|
|
|
|
TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
|
|
|
|
|
|
|
|
// Handle the non-pack case first.
|
|
|
|
if (!TTP->isExpandedParameterPack()) {
|
2013-05-29 04:55:30 +00:00
|
|
|
LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters(),
|
|
|
|
computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look at all expansions in an expanded pack.
|
|
|
|
for (unsigned i = 0, n = TTP->getNumExpansionTemplateParameters();
|
|
|
|
i != n; ++i) {
|
|
|
|
LV.merge(getLVForTemplateParameterList(
|
2013-05-29 04:55:30 +00:00
|
|
|
TTP->getExpansionTemplateParameters(i), computation));
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-22 21:05:15 +00:00
|
|
|
return LV;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 06:42:30 +00:00
|
|
|
/// getLVForDecl - Get the linkage and visibility for the given declaration.
|
2013-02-16 00:17:33 +00:00
|
|
|
static LinkageInfo getLVForDecl(const NamedDecl *D,
|
|
|
|
LVComputationKind computation);
|
2010-12-06 18:36:25 +00:00
|
|
|
|
2013-07-01 20:22:57 +00:00
|
|
|
static const Decl *getOutermostFuncOrBlockContext(const Decl *D) {
|
|
|
|
const Decl *Ret = NULL;
|
2013-05-16 04:30:21 +00:00
|
|
|
const DeclContext *DC = D->getDeclContext();
|
|
|
|
while (DC->getDeclKind() != Decl::TranslationUnit) {
|
2013-07-01 20:22:57 +00:00
|
|
|
if (isa<FunctionDecl>(DC) || isa<BlockDecl>(DC))
|
|
|
|
Ret = cast<Decl>(DC);
|
2013-05-16 04:30:21 +00:00
|
|
|
DC = DC->getParent();
|
|
|
|
}
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
/// \brief Get the most restrictive linkage for the types and
|
|
|
|
/// declarations in the given template argument list.
|
2013-02-16 00:17:33 +00:00
|
|
|
///
|
|
|
|
/// Note that we don't take an LVComputationKind because we always
|
|
|
|
/// want to honor the visibility of template arguments in the same way.
|
|
|
|
static LinkageInfo
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateArgumentList(ArrayRef<TemplateArgument> args,
|
|
|
|
LVComputationKind computation) {
|
2013-02-16 00:17:33 +00:00
|
|
|
LinkageInfo LV;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
for (unsigned i = 0, e = args.size(); i != e; ++i) {
|
|
|
|
const TemplateArgument &arg = args[i];
|
|
|
|
switch (arg.getKind()) {
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
case TemplateArgument::Null:
|
|
|
|
case TemplateArgument::Integral:
|
|
|
|
case TemplateArgument::Expression:
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
2012-01-02 06:26:22 +00:00
|
|
|
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
case TemplateArgument::Type:
|
2013-05-29 04:55:30 +00:00
|
|
|
LV.merge(getLVForType(*arg.getAsType(), computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
|
|
|
|
case TemplateArgument::Declaration:
|
2013-02-16 00:17:33 +00:00
|
|
|
if (NamedDecl *ND = dyn_cast<NamedDecl>(arg.getAsDecl())) {
|
|
|
|
assert(!usesTypeVisibility(ND));
|
2013-05-29 04:55:30 +00:00
|
|
|
LV.merge(getLVForDecl(ND, computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
}
|
|
|
|
continue;
|
2012-09-26 02:36:12 +00:00
|
|
|
|
|
|
|
case TemplateArgument::NullPtr:
|
2013-02-27 02:27:19 +00:00
|
|
|
LV.merge(arg.getNullPtrType()->getLinkageAndVisibility());
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
|
|
|
|
case TemplateArgument::Template:
|
2011-01-05 18:58:31 +00:00
|
|
|
case TemplateArgument::TemplateExpansion:
|
2012-01-02 06:26:22 +00:00
|
|
|
if (TemplateDecl *Template
|
2013-02-16 00:17:33 +00:00
|
|
|
= arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl())
|
2013-05-29 04:55:30 +00:00
|
|
|
LV.merge(getLVForDecl(Template, computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
|
|
|
|
case TemplateArgument::Pack:
|
2013-05-29 04:55:30 +00:00
|
|
|
LV.merge(getLVForTemplateArgumentList(arg.getPackAsArray(), computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
continue;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
2013-02-16 00:17:33 +00:00
|
|
|
llvm_unreachable("bad template argument kind");
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
|
|
|
|
2010-10-22 21:05:15 +00:00
|
|
|
return LV;
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
|
|
|
|
2012-01-14 00:30:36 +00:00
|
|
|
static LinkageInfo
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
return getLVForTemplateArgumentList(TArgs.asArray(), computation);
|
2010-08-13 08:35:10 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
static bool shouldConsiderTemplateVisibility(const FunctionDecl *fn,
|
|
|
|
const FunctionTemplateSpecializationInfo *specInfo) {
|
|
|
|
// Include visibility from the template parameters and arguments
|
|
|
|
// only if this is not an explicit instantiation or specialization
|
|
|
|
// with direct explicit visibility. (Implicit instantiations won't
|
|
|
|
// have a direct attribute.)
|
|
|
|
if (!specInfo->isExplicitInstantiationOrSpecialization())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return !fn->hasAttr<VisibilityAttr>();
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
/// Merge in template-related linkage and visibility for the given
|
|
|
|
/// function template specialization.
|
|
|
|
///
|
|
|
|
/// We don't need a computation kind here because we can assume
|
|
|
|
/// LVForValue.
|
2013-02-21 23:42:58 +00:00
|
|
|
///
|
2013-02-22 04:06:28 +00:00
|
|
|
/// \param[out] LV the computation to use for the parent
|
2013-02-21 23:42:58 +00:00
|
|
|
static void
|
|
|
|
mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn,
|
2013-05-29 04:55:30 +00:00
|
|
|
const FunctionTemplateSpecializationInfo *specInfo,
|
|
|
|
LVComputationKind computation) {
|
2013-02-21 23:42:58 +00:00
|
|
|
bool considerVisibility =
|
|
|
|
shouldConsiderTemplateVisibility(fn, specInfo);
|
2013-02-16 00:17:33 +00:00
|
|
|
|
|
|
|
// Merge information from the template parameters.
|
2013-02-21 23:42:58 +00:00
|
|
|
FunctionTemplateDecl *temp = specInfo->getTemplate();
|
2013-02-16 00:17:33 +00:00
|
|
|
LinkageInfo tempLV =
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
|
|
|
|
|
|
|
|
// Merge information from the template arguments.
|
|
|
|
const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
|
2013-05-29 04:55:30 +00:00
|
|
|
LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeMaybeWithVisibility(argsLV, considerVisibility);
|
2011-06-27 23:06:04 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
/// Does the given declaration have a direct visibility attribute
|
|
|
|
/// that would match the given rules?
|
|
|
|
static bool hasDirectVisibilityAttribute(const NamedDecl *D,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
switch (computation) {
|
|
|
|
case LVForType:
|
|
|
|
case LVForExplicitType:
|
|
|
|
if (D->hasAttr<TypeVisibilityAttr>())
|
|
|
|
return true;
|
|
|
|
// fallthrough
|
|
|
|
case LVForValue:
|
|
|
|
case LVForExplicitValue:
|
|
|
|
if (D->hasAttr<VisibilityAttr>())
|
|
|
|
return true;
|
|
|
|
return false;
|
2013-05-28 19:43:11 +00:00
|
|
|
case LVForLinkageOnly:
|
|
|
|
return false;
|
2013-02-21 23:42:58 +00:00
|
|
|
}
|
|
|
|
llvm_unreachable("bad visibility computation kind");
|
|
|
|
}
|
|
|
|
|
2013-02-20 01:54:26 +00:00
|
|
|
/// Should we consider visibility associated with the template
|
|
|
|
/// arguments and parameters of the given class template specialization?
|
|
|
|
static bool shouldConsiderTemplateVisibility(
|
|
|
|
const ClassTemplateSpecializationDecl *spec,
|
|
|
|
LVComputationKind computation) {
|
2013-02-16 00:17:33 +00:00
|
|
|
// Include visibility from the template parameters and arguments
|
|
|
|
// only if this is not an explicit instantiation or specialization
|
|
|
|
// with direct explicit visibility (and note that implicit
|
|
|
|
// instantiations won't have a direct attribute).
|
|
|
|
//
|
|
|
|
// Furthermore, we want to ignore template parameters and arguments
|
2013-02-20 01:54:26 +00:00
|
|
|
// for an explicit specialization when computing the visibility of a
|
|
|
|
// member thereof with explicit visibility.
|
2013-02-16 00:17:33 +00:00
|
|
|
//
|
|
|
|
// This is a bit complex; let's unpack it.
|
|
|
|
//
|
|
|
|
// An explicit class specialization is an independent, top-level
|
|
|
|
// declaration. As such, if it or any of its members has an
|
|
|
|
// explicit visibility attribute, that must directly express the
|
|
|
|
// user's intent, and we should honor it. The same logic applies to
|
|
|
|
// an explicit instantiation of a member of such a thing.
|
2013-02-20 01:54:26 +00:00
|
|
|
|
|
|
|
// Fast path: if this is not an explicit instantiation or
|
|
|
|
// specialization, we always want to consider template-related
|
|
|
|
// visibility restrictions.
|
|
|
|
if (!spec->isExplicitInstantiationOrSpecialization())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// This is the 'member thereof' check.
|
|
|
|
if (spec->isExplicitSpecialization() &&
|
|
|
|
hasExplicitVisibilityAlready(computation))
|
|
|
|
return false;
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
return !hasDirectVisibilityAttribute(spec, computation);
|
2013-02-20 01:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Merge in template-related linkage and visibility for the given
|
|
|
|
/// class template specialization.
|
|
|
|
static void mergeTemplateLV(LinkageInfo &LV,
|
|
|
|
const ClassTemplateSpecializationDecl *spec,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
|
|
|
|
// Merge information from the template parameters, but ignore
|
|
|
|
// visibility if we're only considering template arguments.
|
|
|
|
|
2013-02-20 01:54:26 +00:00
|
|
|
ClassTemplateDecl *temp = spec->getSpecializedTemplate();
|
2013-02-16 00:17:33 +00:00
|
|
|
LinkageInfo tempLV =
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeMaybeWithVisibility(tempLV,
|
2013-02-20 01:54:26 +00:00
|
|
|
considerVisibility && !hasExplicitVisibilityAlready(computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
|
|
|
|
// Merge information from the template arguments. We ignore
|
|
|
|
// template-argument visibility if we've got an explicit
|
|
|
|
// instantiation with a visibility attribute.
|
|
|
|
const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
|
2013-05-29 04:55:30 +00:00
|
|
|
LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
|
2013-05-30 21:23:15 +00:00
|
|
|
if (considerVisibility)
|
|
|
|
LV.mergeVisibility(argsLV);
|
|
|
|
LV.mergeExternalVisibility(argsLV);
|
2011-06-27 23:06:04 +00:00
|
|
|
}
|
|
|
|
|
2012-07-13 14:25:36 +00:00
|
|
|
static bool useInlineVisibilityHidden(const NamedDecl *D) {
|
|
|
|
// FIXME: we should warn if -fvisibility-inlines-hidden is used with c.
|
2012-07-13 23:26:43 +00:00
|
|
|
const LangOptions &Opts = D->getASTContext().getLangOpts();
|
|
|
|
if (!Opts.CPlusPlus || !Opts.InlineVisibilityHidden)
|
2012-07-13 14:25:36 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
|
|
|
|
if (!FD)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
TemplateSpecializationKind TSK = TSK_Undeclared;
|
|
|
|
if (FunctionTemplateSpecializationInfo *spec
|
|
|
|
= FD->getTemplateSpecializationInfo()) {
|
|
|
|
TSK = spec->getTemplateSpecializationKind();
|
|
|
|
} else if (MemberSpecializationInfo *MSI =
|
|
|
|
FD->getMemberSpecializationInfo()) {
|
|
|
|
TSK = MSI->getTemplateSpecializationKind();
|
|
|
|
}
|
|
|
|
|
|
|
|
const FunctionDecl *Def = 0;
|
|
|
|
// InlineVisibilityHidden only applies to definitions, and
|
|
|
|
// isInlined() only gives meaningful answers on definitions
|
|
|
|
// anyway.
|
|
|
|
return TSK != TSK_ExplicitInstantiationDeclaration &&
|
|
|
|
TSK != TSK_ExplicitInstantiationDefinition &&
|
2012-10-11 16:32:25 +00:00
|
|
|
FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
|
2012-07-13 14:25:36 +00:00
|
|
|
}
|
|
|
|
|
2013-05-05 20:15:21 +00:00
|
|
|
template <typename T> static bool isFirstInExternCContext(T *D) {
|
2013-02-14 01:18:37 +00:00
|
|
|
const T *First = D->getFirstDeclaration();
|
2013-05-05 20:15:21 +00:00
|
|
|
return First->isInExternCContext();
|
2013-02-14 01:18:37 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 01:30:23 +00:00
|
|
|
static bool isSingleLineExternC(const Decl &D) {
|
|
|
|
if (const LinkageSpecDecl *SD = dyn_cast<LinkageSpecDecl>(D.getDeclContext()))
|
|
|
|
if (SD->getLanguage() == LinkageSpecDecl::lang_c && !SD->hasBraces())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-04-21 23:28:21 +00:00
|
|
|
static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D,
|
2013-02-16 00:17:33 +00:00
|
|
|
LVComputationKind computation) {
|
2010-08-31 00:36:30 +00:00
|
|
|
assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
|
2009-11-25 22:24:25 +00:00
|
|
|
"Not a name having namespace scope");
|
|
|
|
ASTContext &Context = D->getASTContext();
|
|
|
|
|
|
|
|
// C++ [basic.link]p3:
|
|
|
|
// A name having namespace scope (3.3.6) has internal linkage if it
|
|
|
|
// is the name of
|
|
|
|
// - an object, reference, function or function template that is
|
|
|
|
// explicitly declared static; or,
|
|
|
|
// (This bullet corresponds to C99 6.2.2p3.)
|
|
|
|
if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
|
|
|
|
// Explicitly declared static.
|
2010-08-26 03:08:43 +00:00
|
|
|
if (Var->getStorageClass() == SC_Static)
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::internal();
|
2009-11-25 22:24:25 +00:00
|
|
|
|
2012-10-19 06:37:48 +00:00
|
|
|
// - a non-volatile object or reference that is explicitly declared const
|
|
|
|
// or constexpr and neither explicitly declared extern nor previously
|
|
|
|
// declared to have external linkage; or (there is no equivalent in C99)
|
2012-03-11 07:00:24 +00:00
|
|
|
if (Context.getLangOpts().CPlusPlus &&
|
2012-10-19 06:37:48 +00:00
|
|
|
Var->getType().isConstQualified() &&
|
2013-04-03 19:27:57 +00:00
|
|
|
!Var->getType().isVolatileQualified()) {
|
2013-04-03 19:22:20 +00:00
|
|
|
const VarDecl *PrevVar = Var->getPreviousDecl();
|
|
|
|
if (PrevVar)
|
2013-05-29 04:55:30 +00:00
|
|
|
return getLVForDecl(PrevVar, computation);
|
2013-04-03 19:27:57 +00:00
|
|
|
|
|
|
|
if (Var->getStorageClass() != SC_Extern &&
|
2013-04-26 01:30:23 +00:00
|
|
|
Var->getStorageClass() != SC_PrivateExtern &&
|
|
|
|
!isSingleLineExternC(*Var))
|
2013-04-03 19:27:57 +00:00
|
|
|
return LinkageInfo::internal();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar;
|
|
|
|
PrevVar = PrevVar->getPreviousDecl()) {
|
|
|
|
if (PrevVar->getStorageClass() == SC_PrivateExtern &&
|
|
|
|
Var->getStorageClass() == SC_None)
|
|
|
|
return PrevVar->getLinkageAndVisibility();
|
|
|
|
// Explicitly declared static.
|
|
|
|
if (PrevVar->getStorageClass() == SC_Static)
|
|
|
|
return LinkageInfo::internal();
|
2011-06-16 20:14:50 +00:00
|
|
|
}
|
2009-11-25 22:24:25 +00:00
|
|
|
} else if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) {
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
// C++ [temp]p4:
|
|
|
|
// A non-member function template can have internal linkage; any
|
|
|
|
// other template name shall have external linkage.
|
2009-11-25 22:24:25 +00:00
|
|
|
const FunctionDecl *Function = 0;
|
|
|
|
if (const FunctionTemplateDecl *FunTmpl
|
|
|
|
= dyn_cast<FunctionTemplateDecl>(D))
|
|
|
|
Function = FunTmpl->getTemplatedDecl();
|
|
|
|
else
|
|
|
|
Function = cast<FunctionDecl>(D);
|
|
|
|
|
|
|
|
// Explicitly declared static.
|
2013-04-03 19:27:57 +00:00
|
|
|
if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo(InternalLinkage, DefaultVisibility, false);
|
2009-11-25 22:24:25 +00:00
|
|
|
} else if (const FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
|
|
|
|
// - a data member of an anonymous union.
|
|
|
|
if (cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion())
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::internal();
|
2009-11-25 22:24:25 +00:00
|
|
|
}
|
|
|
|
|
2011-02-24 19:03:39 +00:00
|
|
|
if (D->isInAnonymousNamespace()) {
|
|
|
|
const VarDecl *Var = dyn_cast<VarDecl>(D);
|
|
|
|
const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
|
2013-05-05 20:15:21 +00:00
|
|
|
if ((!Var || !isFirstInExternCContext(Var)) &&
|
|
|
|
(!Func || !isFirstInExternCContext(Func)))
|
2011-02-24 19:03:39 +00:00
|
|
|
return LinkageInfo::uniqueExternal();
|
|
|
|
}
|
2010-10-28 04:18:25 +00:00
|
|
|
|
2010-10-22 21:05:15 +00:00
|
|
|
// Set up the defaults.
|
|
|
|
|
|
|
|
// C99 6.2.2p5:
|
|
|
|
// If the declaration of an identifier for an object has file
|
|
|
|
// scope and no storage-class specifier, its linkage is
|
|
|
|
// external.
|
2010-10-30 11:50:40 +00:00
|
|
|
LinkageInfo LV;
|
|
|
|
|
2013-02-20 01:54:26 +00:00
|
|
|
if (!hasExplicitVisibilityAlready(computation)) {
|
2013-02-20 22:23:23 +00:00
|
|
|
if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) {
|
2012-04-19 02:22:07 +00:00
|
|
|
LV.mergeVisibility(*Vis, true);
|
2012-04-16 18:46:26 +00:00
|
|
|
} else {
|
|
|
|
// If we're declared in a namespace with a visibility attribute,
|
2013-02-16 00:17:33 +00:00
|
|
|
// use that namespace's visibility, and it still counts as explicit.
|
2012-04-16 18:46:26 +00:00
|
|
|
for (const DeclContext *DC = D->getDeclContext();
|
|
|
|
!isa<TranslationUnitDecl>(DC);
|
|
|
|
DC = DC->getParent()) {
|
|
|
|
const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC);
|
|
|
|
if (!ND) continue;
|
2013-02-20 22:23:23 +00:00
|
|
|
if (Optional<Visibility> Vis = getExplicitVisibility(ND, computation)) {
|
2012-04-19 02:22:07 +00:00
|
|
|
LV.mergeVisibility(*Vis, true);
|
2012-04-16 18:46:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
// Add in global settings if the above didn't give us direct visibility.
|
2013-02-27 02:56:45 +00:00
|
|
|
if (!LV.isVisibilityExplicit()) {
|
2013-02-19 01:57:35 +00:00
|
|
|
// Use global type/value visibility as appropriate.
|
|
|
|
Visibility globalVisibility;
|
|
|
|
if (computation == LVForValue) {
|
|
|
|
globalVisibility = Context.getLangOpts().getValueVisibilityMode();
|
|
|
|
} else {
|
|
|
|
assert(computation == LVForType);
|
|
|
|
globalVisibility = Context.getLangOpts().getTypeVisibilityMode();
|
|
|
|
}
|
|
|
|
LV.mergeVisibility(globalVisibility, /*explicit*/ false);
|
2013-02-16 00:17:33 +00:00
|
|
|
|
|
|
|
// If we're paying attention to global visibility, apply
|
|
|
|
// -finline-visibility-hidden if this is an inline method.
|
|
|
|
if (useInlineVisibilityHidden(D))
|
|
|
|
LV.mergeVisibility(HiddenVisibility, true);
|
|
|
|
}
|
2012-07-13 14:25:36 +00:00
|
|
|
}
|
2012-04-19 02:55:01 +00:00
|
|
|
|
2009-11-25 22:24:25 +00:00
|
|
|
// C++ [basic.link]p4:
|
2010-10-22 21:05:15 +00:00
|
|
|
|
2009-11-25 22:24:25 +00:00
|
|
|
// A name having namespace scope has external linkage if it is the
|
|
|
|
// name of
|
|
|
|
//
|
|
|
|
// - an object or reference, unless it has internal linkage; or
|
|
|
|
if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
|
2010-10-29 22:22:43 +00:00
|
|
|
// GCC applies the following optimization to variables and static
|
|
|
|
// data members, but not to functions:
|
|
|
|
//
|
2010-10-22 21:05:15 +00:00
|
|
|
// Modify the variable's LV by the LV of its type unless this is
|
|
|
|
// C or extern "C". This follows from [basic.link]p9:
|
|
|
|
// A type without linkage shall not be used as the type of a
|
|
|
|
// variable or function with external linkage unless
|
|
|
|
// - the entity has C language linkage, or
|
|
|
|
// - the entity is declared within an unnamed namespace, or
|
|
|
|
// - the entity is not used or is defined in the same
|
|
|
|
// translation unit.
|
|
|
|
// and [basic.link]p10:
|
|
|
|
// ...the types specified by all declarations referring to a
|
|
|
|
// given variable or function shall be identical...
|
|
|
|
// C does not have an equivalent rule.
|
|
|
|
//
|
2010-10-26 04:59:26 +00:00
|
|
|
// Ignore this if we've got an explicit attribute; the user
|
|
|
|
// probably knows what they're doing.
|
|
|
|
//
|
2010-10-22 21:05:15 +00:00
|
|
|
// Note that we don't want to make the variable non-external
|
|
|
|
// because of this, but unique-external linkage suits us.
|
2013-05-05 20:15:21 +00:00
|
|
|
if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Var)) {
|
2013-05-29 04:55:30 +00:00
|
|
|
LinkageInfo TypeLV = getLVForType(*Var->getType(), computation);
|
2013-02-27 02:56:45 +00:00
|
|
|
if (TypeLV.getLinkage() != ExternalLinkage)
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::uniqueExternal();
|
2013-02-27 02:56:45 +00:00
|
|
|
if (!LV.isVisibilityExplicit())
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeVisibility(TypeLV);
|
2010-10-29 22:22:43 +00:00
|
|
|
}
|
|
|
|
|
2010-11-02 18:38:13 +00:00
|
|
|
if (Var->getStorageClass() == SC_PrivateExtern)
|
2012-04-19 02:22:07 +00:00
|
|
|
LV.mergeVisibility(HiddenVisibility, true);
|
2010-11-02 18:38:13 +00:00
|
|
|
|
2012-11-12 04:10:23 +00:00
|
|
|
// Note that Sema::MergeVarDecl already takes care of implementing
|
|
|
|
// C99 6.2.2p4 and propagating the visibility attribute, so we don't have
|
|
|
|
// to do it here.
|
2009-11-25 22:24:25 +00:00
|
|
|
|
|
|
|
// - a function, unless it has internal linkage; or
|
2010-10-22 21:05:15 +00:00
|
|
|
} else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
|
2010-10-28 07:07:52 +00:00
|
|
|
// In theory, we can modify the function's LV by the LV of its
|
|
|
|
// type unless it has C linkage (see comment above about variables
|
|
|
|
// for justification). In practice, GCC doesn't do this, so it's
|
|
|
|
// just too painful to make work.
|
2010-10-22 21:05:15 +00:00
|
|
|
|
2010-11-02 18:38:13 +00:00
|
|
|
if (Function->getStorageClass() == SC_PrivateExtern)
|
2012-04-19 02:22:07 +00:00
|
|
|
LV.mergeVisibility(HiddenVisibility, true);
|
2010-11-02 18:38:13 +00:00
|
|
|
|
2012-11-21 02:47:19 +00:00
|
|
|
// Note that Sema::MergeCompatibleFunctionDecls already takes care of
|
|
|
|
// merging storage classes and visibility attributes, so we don't have to
|
|
|
|
// look at previous decls in here.
|
2009-11-25 22:24:25 +00:00
|
|
|
|
2011-02-10 06:50:24 +00:00
|
|
|
// In C++, then if the type of the function uses a type with
|
|
|
|
// unique-external linkage, it's not legally usable from outside
|
|
|
|
// this translation unit. However, we should use the C linkage
|
|
|
|
// rules instead for extern "C" declarations.
|
2012-03-11 07:00:24 +00:00
|
|
|
if (Context.getLangOpts().CPlusPlus &&
|
2013-05-12 23:17:59 +00:00
|
|
|
!Function->isInExternCContext()) {
|
|
|
|
// Only look at the type-as-written. If this function has an auto-deduced
|
|
|
|
// return type, we can't compute the linkage of that type because it could
|
|
|
|
// require looking at the linkage of this function, and we don't need this
|
|
|
|
// for correctness because the type is not part of the function's
|
|
|
|
// signature.
|
|
|
|
// FIXME: This is a hack. We should be able to solve this circularity some
|
|
|
|
// other way.
|
|
|
|
QualType TypeAsWritten = Function->getType();
|
|
|
|
if (TypeSourceInfo *TSI = Function->getTypeSourceInfo())
|
|
|
|
TypeAsWritten = TSI->getType();
|
|
|
|
if (TypeAsWritten->getLinkage() == UniqueExternalLinkage)
|
|
|
|
return LinkageInfo::uniqueExternal();
|
|
|
|
}
|
2011-02-10 06:50:24 +00:00
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
// Consider LV from the template and the template arguments.
|
|
|
|
// We're at file scope, so we do not need to worry about nested
|
|
|
|
// specializations.
|
2011-06-27 23:06:04 +00:00
|
|
|
if (FunctionTemplateSpecializationInfo *specInfo
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
= Function->getTemplateSpecializationInfo()) {
|
2013-05-29 04:55:30 +00:00
|
|
|
mergeTemplateLV(LV, Function, specInfo, computation);
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
|
|
|
|
2009-11-25 22:24:25 +00:00
|
|
|
// - a named class (Clause 9), or an unnamed class defined in a
|
|
|
|
// typedef declaration in which the class has the typedef name
|
|
|
|
// for linkage purposes (7.1.3); or
|
|
|
|
// - a named enumeration (7.2), or an unnamed enumeration
|
|
|
|
// defined in a typedef declaration in which the enumeration
|
|
|
|
// has the typedef name for linkage purposes (7.1.3); or
|
2010-10-22 21:05:15 +00:00
|
|
|
} else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
|
|
|
|
// Unnamed tags have no linkage.
|
2013-03-09 00:54:27 +00:00
|
|
|
if (!Tag->hasNameForLinkage())
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::none();
|
2010-10-22 21:05:15 +00:00
|
|
|
|
|
|
|
// If this is a class template specialization, consider the
|
2013-02-21 23:42:58 +00:00
|
|
|
// linkage of the template and template arguments. We're at file
|
|
|
|
// scope, so we do not need to worry about nested specializations.
|
2011-06-27 23:06:04 +00:00
|
|
|
if (const ClassTemplateSpecializationDecl *spec
|
2010-10-22 21:05:15 +00:00
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
|
2013-02-16 00:17:33 +00:00
|
|
|
mergeTemplateLV(LV, spec, computation);
|
When a function or variable somehow depends on a type or declaration
that is in an anonymous namespace, give that function or variable
internal linkage.
This change models an oddity of the C++ standard, where names declared
in an anonymous namespace have external linkage but, because anonymous
namespace are really "uniquely-named" namespaces, the names cannot be
referenced from other translation units. That means that they have
external linkage for semantic analysis, but the only sensible
implementation for code generation is to give them internal
linkage. We now model this notion via the UniqueExternalLinkage
linkage type. There are several changes here:
- Extended NamedDecl::getLinkage() to produce UniqueExternalLinkage
when the declaration is in an anonymous namespace.
- Added Type::getLinkage() to determine the linkage of a type, which
is defined as the minimum linkage of the types (when we're dealing
with a compound type that is not a struct/class/union).
- Extended NamedDecl::getLinkage() to consider the linkage of the
template arguments and template parameters of function template
specializations and class template specializations.
- Taught code generation to rely on NamedDecl::getLinkage() when
determining the linkage of variables and functions, also
considering the linkage of the types of those variables and
functions (C++ only). Map UniqueExternalLinkage to internal
linkage, taking out the explicit checks for
isInAnonymousNamespace().
This fixes much of PR5792, which, as discovered by Anders Carlsson, is
actually the reason behind the pass-manager assertion that causes the
majority of clang-on-clang regression test failures. With this fix,
Clang-built-Clang+LLVM passes 88% of its regression tests (up from
67%). The specific numbers are:
LLVM:
Expected Passes : 4006
Expected Failures : 32
Unsupported Tests : 40
Unexpected Failures: 736
Clang:
Expected Passes : 1903
Expected Failures : 14
Unexpected Failures: 75
Overall:
Expected Passes : 5909
Expected Failures : 46
Unsupported Tests : 40
Unexpected Failures: 811
Still to do:
- Improve testing
- Check whether we should allow the presence of types with
InternalLinkage (in addition to UniqueExternalLinkage) given
variables/functions internal linkage in C++, as mentioned in
PR5792.
- Determine how expensive the getLinkage() calls are in practice;
consider caching the result in NamedDecl.
- Assess the feasibility of Chris's idea in comment #1 of PR5792.
llvm-svn: 95216
2010-02-03 09:33:45 +00:00
|
|
|
}
|
2009-11-25 22:24:25 +00:00
|
|
|
|
|
|
|
// - an enumerator belonging to an enumeration with external linkage;
|
2010-10-22 21:05:15 +00:00
|
|
|
} else if (isa<EnumConstantDecl>(D)) {
|
2012-04-21 23:28:21 +00:00
|
|
|
LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()),
|
2013-02-16 00:17:33 +00:00
|
|
|
computation);
|
2013-05-27 14:14:42 +00:00
|
|
|
if (!isExternalFormalLinkage(EnumLV.getLinkage()))
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::none();
|
|
|
|
LV.merge(EnumLV);
|
2009-11-25 22:24:25 +00:00
|
|
|
|
|
|
|
// - a template, unless it is a function template that has
|
|
|
|
// internal linkage (Clause 14);
|
2011-03-04 10:39:25 +00:00
|
|
|
} else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
|
2013-02-20 01:54:26 +00:00
|
|
|
bool considerVisibility = !hasExplicitVisibilityAlready(computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
LinkageInfo tempLV =
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
|
|
|
|
|
2009-11-25 22:24:25 +00:00
|
|
|
// - a namespace (7.3), unless it is declared within an unnamed
|
|
|
|
// namespace.
|
2010-10-22 21:05:15 +00:00
|
|
|
} else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
|
|
|
|
return LV;
|
|
|
|
|
|
|
|
// By extension, we assign external linkage to Objective-C
|
|
|
|
// interfaces.
|
|
|
|
} else if (isa<ObjCInterfaceDecl>(D)) {
|
|
|
|
// fallout
|
|
|
|
|
|
|
|
// Everything not covered here has no linkage.
|
|
|
|
} else {
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::none();
|
2010-10-22 21:05:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we ended up with non-external linkage, visibility should
|
|
|
|
// always be default.
|
2013-02-27 02:56:45 +00:00
|
|
|
if (LV.getLinkage() != ExternalLinkage)
|
|
|
|
return LinkageInfo(LV.getLinkage(), DefaultVisibility, false);
|
2010-10-22 21:05:15 +00:00
|
|
|
|
|
|
|
return LV;
|
2009-11-25 22:24:25 +00:00
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
static LinkageInfo getLVForClassMember(const NamedDecl *D,
|
|
|
|
LVComputationKind computation) {
|
2010-10-22 21:05:15 +00:00
|
|
|
// Only certain class members have linkage. Note that fields don't
|
|
|
|
// really have linkage, but it's convenient to say they do for the
|
|
|
|
// purposes of calculating linkage of pointer-to-data-member
|
|
|
|
// template arguments.
|
2010-08-13 08:35:10 +00:00
|
|
|
if (!(isa<CXXMethodDecl>(D) ||
|
|
|
|
isa<VarDecl>(D) ||
|
2010-10-22 21:05:15 +00:00
|
|
|
isa<FieldDecl>(D) ||
|
2012-11-14 01:52:05 +00:00
|
|
|
isa<TagDecl>(D)))
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::none();
|
2010-08-13 08:35:10 +00:00
|
|
|
|
2010-11-02 01:45:15 +00:00
|
|
|
LinkageInfo LV;
|
|
|
|
|
|
|
|
// If we have an explicit visibility attribute, merge that in.
|
2013-02-20 01:54:26 +00:00
|
|
|
if (!hasExplicitVisibilityAlready(computation)) {
|
2013-02-20 22:23:23 +00:00
|
|
|
if (Optional<Visibility> Vis = getExplicitVisibility(D, computation))
|
2011-03-26 12:10:19 +00:00
|
|
|
LV.mergeVisibility(*Vis, true);
|
2012-07-13 14:25:36 +00:00
|
|
|
// If we're paying attention to global visibility, apply
|
|
|
|
// -finline-visibility-hidden if this is an inline method.
|
|
|
|
//
|
|
|
|
// Note that we do this before merging information about
|
|
|
|
// the class visibility.
|
2013-02-27 02:56:45 +00:00
|
|
|
if (!LV.isVisibilityExplicit() && useInlineVisibilityHidden(D))
|
2012-07-13 14:25:36 +00:00
|
|
|
LV.mergeVisibility(HiddenVisibility, true);
|
2012-04-16 18:25:01 +00:00
|
|
|
}
|
2012-04-19 05:50:08 +00:00
|
|
|
|
|
|
|
// If this class member has an explicit visibility attribute, the only
|
|
|
|
// thing that can change its visibility is the template arguments, so
|
2012-07-23 08:59:39 +00:00
|
|
|
// only look for them when processing the class.
|
2013-02-20 01:54:26 +00:00
|
|
|
LVComputationKind classComputation = computation;
|
2013-02-27 02:56:45 +00:00
|
|
|
if (LV.isVisibilityExplicit())
|
2013-02-20 01:54:26 +00:00
|
|
|
classComputation = withExplicitVisibilityAlready(computation);
|
2010-11-02 01:45:15 +00:00
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
LinkageInfo classLV =
|
|
|
|
getLVForDecl(cast<RecordDecl>(D->getDeclContext()), classComputation);
|
2010-08-13 08:35:10 +00:00
|
|
|
// If the class already has unique-external linkage, we can't improve.
|
2013-02-27 02:56:45 +00:00
|
|
|
if (classLV.getLinkage() == UniqueExternalLinkage)
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::uniqueExternal();
|
2010-10-22 21:05:15 +00:00
|
|
|
|
2013-05-28 02:22:10 +00:00
|
|
|
if (!isExternallyVisible(classLV.getLinkage()))
|
|
|
|
return LinkageInfo::none();
|
|
|
|
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
// Otherwise, don't merge in classLV yet, because in certain cases
|
|
|
|
// we need to completely ignore the visibility from it.
|
|
|
|
|
|
|
|
// Specifically, if this decl exists and has an explicit attribute.
|
|
|
|
const NamedDecl *explicitSpecSuppressor = 0;
|
|
|
|
|
2010-08-13 08:35:10 +00:00
|
|
|
if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
|
2011-02-10 06:50:24 +00:00
|
|
|
// If the type of the function uses a type with unique-external
|
|
|
|
// linkage, it's not legally usable from outside this translation unit.
|
|
|
|
if (MD->getType()->getLinkage() == UniqueExternalLinkage)
|
|
|
|
return LinkageInfo::uniqueExternal();
|
|
|
|
|
2010-10-22 21:05:15 +00:00
|
|
|
// If this is a method template specialization, use the linkage for
|
|
|
|
// the template parameters and arguments.
|
2011-06-27 23:06:04 +00:00
|
|
|
if (FunctionTemplateSpecializationInfo *spec
|
2010-08-13 08:35:10 +00:00
|
|
|
= MD->getTemplateSpecializationInfo()) {
|
2013-05-29 04:55:30 +00:00
|
|
|
mergeTemplateLV(LV, MD, spec, computation);
|
2013-02-21 23:42:58 +00:00
|
|
|
if (spec->isExplicitSpecialization()) {
|
|
|
|
explicitSpecSuppressor = MD;
|
|
|
|
} else if (isExplicitMemberSpecialization(spec->getTemplate())) {
|
|
|
|
explicitSpecSuppressor = spec->getTemplate()->getTemplatedDecl();
|
|
|
|
}
|
|
|
|
} else if (isExplicitMemberSpecialization(MD)) {
|
|
|
|
explicitSpecSuppressor = MD;
|
2010-11-01 01:29:57 +00:00
|
|
|
}
|
2010-10-22 21:05:15 +00:00
|
|
|
|
2010-10-29 22:22:43 +00:00
|
|
|
} else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
|
2011-06-27 23:06:04 +00:00
|
|
|
if (const ClassTemplateSpecializationDecl *spec
|
2010-10-29 22:22:43 +00:00
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
|
2013-02-16 00:17:33 +00:00
|
|
|
mergeTemplateLV(LV, spec, computation);
|
2013-02-21 23:42:58 +00:00
|
|
|
if (spec->isExplicitSpecialization()) {
|
|
|
|
explicitSpecSuppressor = spec;
|
|
|
|
} else {
|
|
|
|
const ClassTemplateDecl *temp = spec->getSpecializedTemplate();
|
|
|
|
if (isExplicitMemberSpecialization(temp)) {
|
|
|
|
explicitSpecSuppressor = temp->getTemplatedDecl();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (isExplicitMemberSpecialization(RD)) {
|
|
|
|
explicitSpecSuppressor = RD;
|
2010-10-29 22:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Static data members.
|
|
|
|
} else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
|
2010-10-30 09:18:49 +00:00
|
|
|
// Modify the variable's linkage by its type, but ignore the
|
|
|
|
// type's visibility unless it's a definition.
|
2013-05-29 04:55:30 +00:00
|
|
|
LinkageInfo typeLV = getLVForType(*VD->getType(), computation);
|
2013-05-30 21:23:15 +00:00
|
|
|
if (!LV.isVisibilityExplicit() && !classLV.isVisibilityExplicit())
|
|
|
|
LV.mergeVisibility(typeLV);
|
|
|
|
LV.mergeExternalVisibility(typeLV);
|
2013-02-21 23:42:58 +00:00
|
|
|
|
|
|
|
if (isExplicitMemberSpecialization(VD)) {
|
|
|
|
explicitSpecSuppressor = VD;
|
|
|
|
}
|
2013-02-16 00:17:33 +00:00
|
|
|
|
|
|
|
// Template members.
|
|
|
|
} else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
|
|
|
|
bool considerVisibility =
|
2013-02-27 02:56:45 +00:00
|
|
|
(!LV.isVisibilityExplicit() &&
|
|
|
|
!classLV.isVisibilityExplicit() &&
|
2013-02-20 01:54:26 +00:00
|
|
|
!hasExplicitVisibilityAlready(computation));
|
2013-02-16 00:17:33 +00:00
|
|
|
LinkageInfo tempLV =
|
2013-05-29 04:55:30 +00:00
|
|
|
getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
|
2013-02-21 23:42:58 +00:00
|
|
|
|
|
|
|
if (const RedeclarableTemplateDecl *redeclTemp =
|
|
|
|
dyn_cast<RedeclarableTemplateDecl>(temp)) {
|
|
|
|
if (isExplicitMemberSpecialization(redeclTemp)) {
|
|
|
|
explicitSpecSuppressor = temp->getTemplatedDecl();
|
|
|
|
}
|
|
|
|
}
|
2010-10-29 22:22:43 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 23:42:58 +00:00
|
|
|
// We should never be looking for an attribute directly on a template.
|
|
|
|
assert(!explicitSpecSuppressor || !isa<TemplateDecl>(explicitSpecSuppressor));
|
|
|
|
|
|
|
|
// If this member is an explicit member specialization, and it has
|
|
|
|
// an explicit attribute, ignore visibility from the parent.
|
|
|
|
bool considerClassVisibility = true;
|
|
|
|
if (explicitSpecSuppressor &&
|
2013-02-27 02:56:45 +00:00
|
|
|
// optimization: hasDVA() is true only with explicit visibility.
|
|
|
|
LV.isVisibilityExplicit() &&
|
|
|
|
classLV.getVisibility() != DefaultVisibility &&
|
2013-02-21 23:42:58 +00:00
|
|
|
hasDirectVisibilityAttribute(explicitSpecSuppressor, computation)) {
|
|
|
|
considerClassVisibility = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, merge in information from the class.
|
|
|
|
LV.mergeMaybeWithVisibility(classLV, considerClassVisibility);
|
2010-10-22 21:05:15 +00:00
|
|
|
return LV;
|
2010-08-13 08:35:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void NamedDecl::anchor() { }
|
|
|
|
|
2013-05-29 04:55:30 +00:00
|
|
|
static LinkageInfo computeLVForDecl(const NamedDecl *D,
|
|
|
|
LVComputationKind computation);
|
|
|
|
|
2013-03-14 03:07:35 +00:00
|
|
|
bool NamedDecl::isLinkageValid() const {
|
2013-05-25 17:16:20 +00:00
|
|
|
if (!hasCachedLinkage())
|
2013-03-14 03:07:35 +00:00
|
|
|
return true;
|
2011-02-19 02:53:41 +00:00
|
|
|
|
2013-05-29 04:55:30 +00:00
|
|
|
return computeLVForDecl(this, LVForLinkageOnly).getLinkage() ==
|
2013-05-25 17:16:20 +00:00
|
|
|
getCachedLinkage();
|
2011-02-08 19:01:05 +00:00
|
|
|
}
|
|
|
|
|
2013-05-13 00:12:11 +00:00
|
|
|
Linkage NamedDecl::getLinkageInternal() const {
|
2013-02-20 01:54:26 +00:00
|
|
|
// We don't care about visibility here, so ask for the cheapest
|
|
|
|
// possible visibility analysis.
|
2013-05-28 19:43:11 +00:00
|
|
|
return getLVForDecl(this, LVForLinkageOnly).getLinkage();
|
2010-12-06 18:36:25 +00:00
|
|
|
}
|
|
|
|
|
2010-10-30 11:50:40 +00:00
|
|
|
LinkageInfo NamedDecl::getLinkageAndVisibility() const {
|
2013-02-16 00:17:33 +00:00
|
|
|
LVComputationKind computation =
|
|
|
|
(usesTypeVisibility(this) ? LVForType : LVForValue);
|
2013-05-28 19:43:11 +00:00
|
|
|
return getLVForDecl(this, computation);
|
2010-10-29 00:29:13 +00:00
|
|
|
}
|
2010-04-20 23:15:35 +00:00
|
|
|
|
2013-02-20 22:23:23 +00:00
|
|
|
Optional<Visibility>
|
2013-02-20 01:54:26 +00:00
|
|
|
NamedDecl::getExplicitVisibility(ExplicitVisibilityKind kind) const {
|
2013-02-26 19:33:14 +00:00
|
|
|
// Check the declaration itself first.
|
|
|
|
if (Optional<Visibility> V = getVisibilityOf(this, kind))
|
|
|
|
return V;
|
|
|
|
|
|
|
|
// If this is a member class of a specialization of a class template
|
|
|
|
// and the corresponding decl has explicit visibility, use that.
|
|
|
|
if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(this)) {
|
|
|
|
CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass();
|
|
|
|
if (InstantiatedFrom)
|
|
|
|
return getVisibilityOf(InstantiatedFrom, kind);
|
|
|
|
}
|
2012-05-16 02:10:38 +00:00
|
|
|
|
2013-02-26 19:33:14 +00:00
|
|
|
// If there wasn't explicit visibility there, and this is a
|
|
|
|
// specialization of a class template, check for visibility
|
|
|
|
// on the pattern.
|
|
|
|
if (const ClassTemplateSpecializationDecl *spec
|
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(this))
|
|
|
|
return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl(),
|
|
|
|
kind);
|
|
|
|
|
|
|
|
// Use the most recent declaration.
|
|
|
|
const NamedDecl *MostRecent = cast<NamedDecl>(this->getMostRecentDecl());
|
|
|
|
if (MostRecent != this)
|
|
|
|
return MostRecent->getExplicitVisibility(kind);
|
|
|
|
|
|
|
|
if (const VarDecl *Var = dyn_cast<VarDecl>(this)) {
|
2012-05-16 02:10:38 +00:00
|
|
|
if (Var->isStaticDataMember()) {
|
|
|
|
VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember();
|
|
|
|
if (InstantiatedFrom)
|
2013-02-20 01:54:26 +00:00
|
|
|
return getVisibilityOf(InstantiatedFrom, kind);
|
2012-05-16 02:10:38 +00:00
|
|
|
}
|
2011-03-26 12:10:19 +00:00
|
|
|
|
2013-02-21 01:47:18 +00:00
|
|
|
return None;
|
2012-05-16 02:10:38 +00:00
|
|
|
}
|
2013-02-26 19:33:14 +00:00
|
|
|
// Also handle function template specializations.
|
2011-03-26 12:10:19 +00:00
|
|
|
if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(this)) {
|
|
|
|
// If the function is a specialization of a template with an
|
|
|
|
// explicit visibility attribute, use that.
|
|
|
|
if (FunctionTemplateSpecializationInfo *templateInfo
|
|
|
|
= fn->getTemplateSpecializationInfo())
|
2013-02-20 01:54:26 +00:00
|
|
|
return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl(),
|
|
|
|
kind);
|
2011-03-26 12:10:19 +00:00
|
|
|
|
2012-02-23 04:17:32 +00:00
|
|
|
// If the function is a member of a specialization of a class template
|
|
|
|
// and the corresponding decl has explicit visibility, use that.
|
|
|
|
FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction();
|
|
|
|
if (InstantiatedFrom)
|
2013-02-20 01:54:26 +00:00
|
|
|
return getVisibilityOf(InstantiatedFrom, kind);
|
2012-02-23 04:17:32 +00:00
|
|
|
|
2013-02-21 01:47:18 +00:00
|
|
|
return None;
|
2011-03-26 12:10:19 +00:00
|
|
|
}
|
|
|
|
|
2012-07-31 19:02:02 +00:00
|
|
|
// The visibility of a template is stored in the templated decl.
|
|
|
|
if (const TemplateDecl *TD = dyn_cast<TemplateDecl>(this))
|
2013-02-20 01:54:26 +00:00
|
|
|
return getVisibilityOf(TD->getTemplatedDecl(), kind);
|
2012-07-31 19:02:02 +00:00
|
|
|
|
2013-02-21 01:47:18 +00:00
|
|
|
return None;
|
2011-03-26 12:10:19 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 20:22:57 +00:00
|
|
|
static LinkageInfo getLVForClosure(const DeclContext *DC, Decl *ContextDecl,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
// This lambda has its linkage/visibility determined by its owner.
|
|
|
|
if (ContextDecl) {
|
|
|
|
if (isa<ParmVarDecl>(ContextDecl))
|
|
|
|
DC = ContextDecl->getDeclContext()->getRedeclContext();
|
|
|
|
else
|
|
|
|
return getLVForDecl(cast<NamedDecl>(ContextDecl), computation);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC))
|
|
|
|
return getLVForDecl(ND, computation);
|
|
|
|
|
|
|
|
return LinkageInfo::external();
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
static LinkageInfo getLVForLocalDecl(const NamedDecl *D,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
|
|
|
|
if (Function->isInAnonymousNamespace() &&
|
2013-05-05 20:15:21 +00:00
|
|
|
!Function->isInExternCContext())
|
2013-02-16 00:17:33 +00:00
|
|
|
return LinkageInfo::uniqueExternal();
|
|
|
|
|
|
|
|
// This is a "void f();" which got merged with a file static.
|
2013-04-03 19:27:57 +00:00
|
|
|
if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
|
2013-02-16 00:17:33 +00:00
|
|
|
return LinkageInfo::internal();
|
|
|
|
|
|
|
|
LinkageInfo LV;
|
2013-02-20 01:54:26 +00:00
|
|
|
if (!hasExplicitVisibilityAlready(computation)) {
|
2013-02-20 22:23:23 +00:00
|
|
|
if (Optional<Visibility> Vis =
|
|
|
|
getExplicitVisibility(Function, computation))
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeVisibility(*Vis, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that Sema::MergeCompatibleFunctionDecls already takes care of
|
|
|
|
// merging storage classes and visibility attributes, so we don't have to
|
|
|
|
// look at previous decls in here.
|
|
|
|
|
|
|
|
return LV;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
|
2013-04-03 19:27:57 +00:00
|
|
|
if (Var->hasExternalStorage()) {
|
2013-05-05 20:15:21 +00:00
|
|
|
if (Var->isInAnonymousNamespace() && !Var->isInExternCContext())
|
2013-02-16 00:17:33 +00:00
|
|
|
return LinkageInfo::uniqueExternal();
|
|
|
|
|
|
|
|
LinkageInfo LV;
|
|
|
|
if (Var->getStorageClass() == SC_PrivateExtern)
|
|
|
|
LV.mergeVisibility(HiddenVisibility, true);
|
2013-02-20 01:54:26 +00:00
|
|
|
else if (!hasExplicitVisibilityAlready(computation)) {
|
2013-02-20 22:23:23 +00:00
|
|
|
if (Optional<Visibility> Vis = getExplicitVisibility(Var, computation))
|
2013-02-16 00:17:33 +00:00
|
|
|
LV.mergeVisibility(*Vis, true);
|
|
|
|
}
|
|
|
|
|
2013-04-03 19:27:57 +00:00
|
|
|
if (const VarDecl *Prev = Var->getPreviousDecl()) {
|
|
|
|
LinkageInfo PrevLV = getLVForDecl(Prev, computation);
|
|
|
|
if (PrevLV.getLinkage())
|
|
|
|
LV.setLinkage(PrevLV.getLinkage());
|
|
|
|
LV.mergeVisibility(PrevLV);
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:17:33 +00:00
|
|
|
return LV;
|
|
|
|
}
|
2013-06-17 20:04:51 +00:00
|
|
|
|
|
|
|
if (!Var->isStaticLocal())
|
|
|
|
return LinkageInfo::none();
|
2013-02-16 00:17:33 +00:00
|
|
|
}
|
|
|
|
|
2013-06-17 20:04:51 +00:00
|
|
|
ASTContext &Context = D->getASTContext();
|
|
|
|
if (!Context.getLangOpts().CPlusPlus)
|
2013-05-25 17:16:20 +00:00
|
|
|
return LinkageInfo::none();
|
|
|
|
|
2013-07-01 20:22:57 +00:00
|
|
|
const Decl *OuterD = getOutermostFuncOrBlockContext(D);
|
|
|
|
if (!OuterD)
|
2013-06-04 13:43:35 +00:00
|
|
|
return LinkageInfo::none();
|
|
|
|
|
2013-07-01 20:22:57 +00:00
|
|
|
LinkageInfo LV;
|
|
|
|
if (const BlockDecl *BD = dyn_cast<BlockDecl>(OuterD)) {
|
|
|
|
if (!BD->getBlockManglingNumber())
|
|
|
|
return LinkageInfo::none();
|
|
|
|
|
|
|
|
LV = getLVForClosure(BD->getDeclContext()->getRedeclContext(),
|
|
|
|
BD->getBlockManglingContextDecl(), computation);
|
|
|
|
} else {
|
|
|
|
const FunctionDecl *FD = cast<FunctionDecl>(OuterD);
|
|
|
|
if (!FD->isInlined() &&
|
|
|
|
FD->getTemplateSpecializationKind() == TSK_Undeclared)
|
|
|
|
return LinkageInfo::none();
|
2013-06-04 13:43:35 +00:00
|
|
|
|
2013-07-01 20:22:57 +00:00
|
|
|
LV = getLVForDecl(FD, computation);
|
|
|
|
}
|
2013-05-27 14:50:21 +00:00
|
|
|
if (!isExternallyVisible(LV.getLinkage()))
|
2013-05-25 17:16:20 +00:00
|
|
|
return LinkageInfo::none();
|
|
|
|
return LinkageInfo(VisibleNoLinkage, LV.getVisibility(),
|
|
|
|
LV.isVisibilityExplicit());
|
2013-02-16 00:17:33 +00:00
|
|
|
}
|
|
|
|
|
2013-05-28 19:43:11 +00:00
|
|
|
static LinkageInfo computeLVForDecl(const NamedDecl *D,
|
|
|
|
LVComputationKind computation) {
|
2010-04-20 23:15:35 +00:00
|
|
|
// Objective-C: treat all Objective-C declarations as having external
|
|
|
|
// linkage.
|
2010-10-29 00:29:13 +00:00
|
|
|
switch (D->getKind()) {
|
2010-04-20 23:15:35 +00:00
|
|
|
default:
|
|
|
|
break;
|
2011-12-01 01:28:21 +00:00
|
|
|
case Decl::ParmVar:
|
|
|
|
return LinkageInfo::none();
|
2010-10-22 21:05:15 +00:00
|
|
|
case Decl::TemplateTemplateParm: // count these as external
|
|
|
|
case Decl::NonTypeTemplateParm:
|
2010-04-20 23:15:35 +00:00
|
|
|
case Decl::ObjCAtDefsField:
|
|
|
|
case Decl::ObjCCategory:
|
|
|
|
case Decl::ObjCCategoryImpl:
|
|
|
|
case Decl::ObjCCompatibleAlias:
|
|
|
|
case Decl::ObjCImplementation:
|
|
|
|
case Decl::ObjCMethod:
|
|
|
|
case Decl::ObjCProperty:
|
|
|
|
case Decl::ObjCPropertyImpl:
|
|
|
|
case Decl::ObjCProtocol:
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::external();
|
2012-02-21 04:17:39 +00:00
|
|
|
|
|
|
|
case Decl::CXXRecord: {
|
|
|
|
const CXXRecordDecl *Record = cast<CXXRecordDecl>(D);
|
|
|
|
if (Record->isLambda()) {
|
|
|
|
if (!Record->getLambdaManglingNumber()) {
|
|
|
|
// This lambda has no mangling number, so it's internal.
|
|
|
|
return LinkageInfo::internal();
|
|
|
|
}
|
|
|
|
|
2013-07-01 20:22:57 +00:00
|
|
|
// This lambda has its linkage/visibility determined by its owner.
|
|
|
|
return getLVForClosure(D->getDeclContext()->getRedeclContext(),
|
|
|
|
Record->getLambdaContextDecl(), computation);
|
2012-02-21 04:17:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2010-04-20 23:15:35 +00:00
|
|
|
}
|
|
|
|
|
2009-11-25 22:24:25 +00:00
|
|
|
// Handle linkage for namespace-scope names.
|
2010-10-29 00:29:13 +00:00
|
|
|
if (D->getDeclContext()->getRedeclContext()->isFileContext())
|
2013-02-16 00:17:33 +00:00
|
|
|
return getLVForNamespaceScopeDecl(D, computation);
|
2009-11-25 22:24:25 +00:00
|
|
|
|
|
|
|
// C++ [basic.link]p5:
|
|
|
|
// In addition, a member function, static data member, a named
|
|
|
|
// class or enumeration of class scope, or an unnamed class or
|
|
|
|
// enumeration defined in a class-scope typedef declaration such
|
|
|
|
// that the class or enumeration has the typedef name for linkage
|
|
|
|
// purposes (7.1.3), has external linkage if the name of the class
|
|
|
|
// has external linkage.
|
2010-10-29 00:29:13 +00:00
|
|
|
if (D->getDeclContext()->isRecord())
|
2013-02-16 00:17:33 +00:00
|
|
|
return getLVForClassMember(D, computation);
|
2009-11-25 22:24:25 +00:00
|
|
|
|
|
|
|
// C++ [basic.link]p6:
|
|
|
|
// The name of a function declared in block scope and the name of
|
|
|
|
// an object declared by a block scope extern declaration have
|
|
|
|
// linkage. If there is a visible declaration of an entity with
|
|
|
|
// linkage having the same name and type, ignoring entities
|
|
|
|
// declared outside the innermost enclosing namespace scope, the
|
|
|
|
// block scope declaration declares that same entity and receives
|
|
|
|
// the linkage of the previous declaration. If there is more than
|
|
|
|
// one such matching entity, the program is ill-formed. Otherwise,
|
|
|
|
// if no matching entity is found, the block scope entity receives
|
|
|
|
// external linkage.
|
2013-02-16 00:17:33 +00:00
|
|
|
if (D->getDeclContext()->isFunctionOrMethod())
|
|
|
|
return getLVForLocalDecl(D, computation);
|
2009-11-25 22:24:25 +00:00
|
|
|
|
|
|
|
// C++ [basic.link]p6:
|
|
|
|
// Names not covered by these rules have no linkage.
|
2010-10-30 11:50:40 +00:00
|
|
|
return LinkageInfo::none();
|
2010-10-22 21:05:15 +00:00
|
|
|
}
|
2009-11-25 22:24:25 +00:00
|
|
|
|
2013-05-28 19:43:11 +00:00
|
|
|
namespace clang {
|
|
|
|
class LinkageComputer {
|
|
|
|
public:
|
|
|
|
static LinkageInfo getLVForDecl(const NamedDecl *D,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
if (computation == LVForLinkageOnly && D->hasCachedLinkage())
|
|
|
|
return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false);
|
|
|
|
|
|
|
|
LinkageInfo LV = computeLVForDecl(D, computation);
|
|
|
|
if (D->hasCachedLinkage())
|
|
|
|
assert(D->getCachedLinkage() == LV.getLinkage());
|
|
|
|
|
|
|
|
D->setCachedLinkage(LV.getLinkage());
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// In C (because of gnu inline) and in c++ with microsoft extensions an
|
|
|
|
// static can follow an extern, so we can have two decls with different
|
|
|
|
// linkages.
|
|
|
|
const LangOptions &Opts = D->getASTContext().getLangOpts();
|
|
|
|
if (!Opts.CPlusPlus || Opts.MicrosoftExt)
|
|
|
|
return LV;
|
|
|
|
|
|
|
|
// We have just computed the linkage for this decl. By induction we know
|
|
|
|
// that all other computed linkages match, check that the one we just
|
|
|
|
// computed
|
|
|
|
// also does.
|
|
|
|
NamedDecl *Old = NULL;
|
|
|
|
for (NamedDecl::redecl_iterator I = D->redecls_begin(),
|
|
|
|
E = D->redecls_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
NamedDecl *T = cast<NamedDecl>(*I);
|
|
|
|
if (T == D)
|
|
|
|
continue;
|
|
|
|
if (T->hasCachedLinkage()) {
|
|
|
|
Old = T;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return LV;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static LinkageInfo getLVForDecl(const NamedDecl *D,
|
|
|
|
LVComputationKind computation) {
|
|
|
|
return clang::LinkageComputer::getLVForDecl(D, computation);
|
|
|
|
}
|
|
|
|
|
2009-02-04 17:27:36 +00:00
|
|
|
std::string NamedDecl::getQualifiedNameAsString() const {
|
2012-03-27 23:34:16 +00:00
|
|
|
return getQualifiedNameAsString(getASTContext().getPrintingPolicy());
|
2009-09-08 18:24:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const {
|
2013-02-23 13:53:57 +00:00
|
|
|
std::string QualName;
|
|
|
|
llvm::raw_string_ostream OS(QualName);
|
|
|
|
printQualifiedName(OS, P);
|
|
|
|
return OS.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamedDecl::printQualifiedName(raw_ostream &OS) const {
|
|
|
|
printQualifiedName(OS, getASTContext().getPrintingPolicy());
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamedDecl::printQualifiedName(raw_ostream &OS,
|
|
|
|
const PrintingPolicy &P) const {
|
2009-02-04 17:27:36 +00:00
|
|
|
const DeclContext *Ctx = getDeclContext();
|
|
|
|
|
2013-02-23 13:53:57 +00:00
|
|
|
if (Ctx->isFunctionOrMethod()) {
|
|
|
|
printName(OS);
|
|
|
|
return;
|
|
|
|
}
|
2009-02-04 17:27:36 +00:00
|
|
|
|
2011-07-23 10:55:15 +00:00
|
|
|
typedef SmallVector<const DeclContext *, 8> ContextsTy;
|
2010-04-28 14:33:51 +00:00
|
|
|
ContextsTy Contexts;
|
|
|
|
|
|
|
|
// Collect contexts.
|
|
|
|
while (Ctx && isa<NamedDecl>(Ctx)) {
|
|
|
|
Contexts.push_back(Ctx);
|
|
|
|
Ctx = Ctx->getParent();
|
2013-02-23 13:53:57 +00:00
|
|
|
}
|
2010-04-28 14:33:51 +00:00
|
|
|
|
|
|
|
for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
|
|
|
|
I != E; ++I) {
|
2009-09-09 15:08:12 +00:00
|
|
|
if (const ClassTemplateSpecializationDecl *Spec
|
2010-04-28 14:33:51 +00:00
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
|
2013-02-22 15:46:01 +00:00
|
|
|
OS << Spec->getName();
|
2009-05-18 17:01:57 +00:00
|
|
|
const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
|
2013-02-22 15:46:01 +00:00
|
|
|
TemplateSpecializationType::PrintTemplateArgumentList(OS,
|
|
|
|
TemplateArgs.data(),
|
|
|
|
TemplateArgs.size(),
|
|
|
|
P);
|
2010-04-28 14:33:51 +00:00
|
|
|
} else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
|
2009-12-24 23:15:03 +00:00
|
|
|
if (ND->isAnonymousNamespace())
|
2010-04-28 14:33:51 +00:00
|
|
|
OS << "<anonymous namespace>";
|
2009-12-24 23:15:03 +00:00
|
|
|
else
|
2011-10-14 18:45:37 +00:00
|
|
|
OS << *ND;
|
2010-04-28 14:33:51 +00:00
|
|
|
} else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
|
|
|
|
if (!RD->getIdentifier())
|
|
|
|
OS << "<anonymous " << RD->getKindName() << '>';
|
|
|
|
else
|
2011-10-14 18:45:37 +00:00
|
|
|
OS << *RD;
|
2010-04-28 14:33:51 +00:00
|
|
|
} else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
|
2009-12-28 03:19:38 +00:00
|
|
|
const FunctionProtoType *FT = 0;
|
|
|
|
if (FD->hasWrittenPrototype())
|
2012-08-30 22:22:09 +00:00
|
|
|
FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>());
|
2009-12-28 03:19:38 +00:00
|
|
|
|
2011-10-14 18:45:37 +00:00
|
|
|
OS << *FD << '(';
|
2009-12-28 03:19:38 +00:00
|
|
|
if (FT) {
|
|
|
|
unsigned NumParams = FD->getNumParams();
|
|
|
|
for (unsigned i = 0; i < NumParams; ++i) {
|
|
|
|
if (i)
|
2010-04-28 14:33:51 +00:00
|
|
|
OS << ", ";
|
2012-05-05 04:20:37 +00:00
|
|
|
OS << FD->getParamDecl(i)->getType().stream(P);
|
2009-12-28 03:19:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FT->isVariadic()) {
|
|
|
|
if (NumParams > 0)
|
2010-04-28 14:33:51 +00:00
|
|
|
OS << ", ";
|
|
|
|
OS << "...";
|
2009-12-28 03:19:38 +00:00
|
|
|
}
|
|
|
|
}
|
2010-04-28 14:33:51 +00:00
|
|
|
OS << ')';
|
|
|
|
} else {
|
2011-10-14 18:45:37 +00:00
|
|
|
OS << *cast<NamedDecl>(*I);
|
2010-04-28 14:33:51 +00:00
|
|
|
}
|
|
|
|
OS << "::";
|
2009-02-04 17:27:36 +00:00
|
|
|
}
|
|
|
|
|
2010-03-16 21:48:18 +00:00
|
|
|
if (getDeclName())
|
2011-10-14 18:45:37 +00:00
|
|
|
OS << *this;
|
2010-03-16 21:48:18 +00:00
|
|
|
else
|
2010-04-28 14:33:51 +00:00
|
|
|
OS << "<anonymous>";
|
2013-02-23 13:53:57 +00:00
|
|
|
}
|
2009-02-04 17:27:36 +00:00
|
|
|
|
2013-02-23 13:53:57 +00:00
|
|
|
void NamedDecl::getNameForDiagnostic(raw_ostream &OS,
|
|
|
|
const PrintingPolicy &Policy,
|
|
|
|
bool Qualified) const {
|
|
|
|
if (Qualified)
|
|
|
|
printQualifiedName(OS, Policy);
|
|
|
|
else
|
|
|
|
printName(OS);
|
2009-02-04 17:27:36 +00:00
|
|
|
}
|
|
|
|
|
2009-01-20 01:17:11 +00:00
|
|
|
bool NamedDecl::declarationReplaces(NamedDecl *OldD) const {
|
2008-12-23 21:05:05 +00:00
|
|
|
assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
|
|
|
|
|
2009-02-03 19:21:40 +00:00
|
|
|
// UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
|
|
|
|
// We want to keep it, unless it nominates same namespace.
|
|
|
|
if (getKind() == Decl::UsingDirective) {
|
2011-02-25 16:33:46 +00:00
|
|
|
return cast<UsingDirectiveDecl>(this)->getNominatedNamespace()
|
|
|
|
->getOriginalNamespace() ==
|
|
|
|
cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
|
|
|
|
->getOriginalNamespace();
|
2009-02-03 19:21:40 +00:00
|
|
|
}
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-12-23 21:05:05 +00:00
|
|
|
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
|
|
|
|
// For function declarations, we keep track of redeclarations.
|
2012-01-14 16:38:05 +00:00
|
|
|
return FD->getPreviousDecl() == OldD;
|
2008-12-23 21:05:05 +00:00
|
|
|
|
2009-06-25 22:08:12 +00:00
|
|
|
// For function templates, the underlying function declarations are linked.
|
|
|
|
if (const FunctionTemplateDecl *FunctionTemplate
|
|
|
|
= dyn_cast<FunctionTemplateDecl>(this))
|
|
|
|
if (const FunctionTemplateDecl *OldFunctionTemplate
|
|
|
|
= dyn_cast<FunctionTemplateDecl>(OldD))
|
|
|
|
return FunctionTemplate->getTemplatedDecl()
|
|
|
|
->declarationReplaces(OldFunctionTemplate->getTemplatedDecl());
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2009-02-22 19:35:57 +00:00
|
|
|
// For method declarations, we keep track of redeclarations.
|
|
|
|
if (isa<ObjCMethodDecl>(this))
|
|
|
|
return false;
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2009-10-09 21:13:30 +00:00
|
|
|
if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD))
|
|
|
|
return true;
|
|
|
|
|
2009-11-17 05:59:44 +00:00
|
|
|
if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD))
|
|
|
|
return cast<UsingShadowDecl>(this)->getTargetDecl() ==
|
|
|
|
cast<UsingShadowDecl>(OldD)->getTargetDecl();
|
|
|
|
|
2011-02-25 00:36:19 +00:00
|
|
|
if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) {
|
|
|
|
ASTContext &Context = getASTContext();
|
|
|
|
return Context.getCanonicalNestedNameSpecifier(
|
|
|
|
cast<UsingDecl>(this)->getQualifier()) ==
|
|
|
|
Context.getCanonicalNestedNameSpecifier(
|
|
|
|
cast<UsingDecl>(OldD)->getQualifier());
|
2013-08-20 00:39:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isa<UnresolvedUsingValueDecl>(this) &&
|
|
|
|
isa<UnresolvedUsingValueDecl>(OldD)) {
|
|
|
|
ASTContext &Context = getASTContext();
|
|
|
|
return Context.getCanonicalNestedNameSpecifier(
|
|
|
|
cast<UnresolvedUsingValueDecl>(this)->getQualifier()) ==
|
|
|
|
Context.getCanonicalNestedNameSpecifier(
|
|
|
|
cast<UnresolvedUsingValueDecl>(OldD)->getQualifier());
|
2011-02-25 00:36:19 +00:00
|
|
|
}
|
2010-11-04 08:48:52 +00:00
|
|
|
|
2012-01-03 23:26:26 +00:00
|
|
|
// A typedef of an Objective-C class type can replace an Objective-C class
|
|
|
|
// declaration or definition, and vice versa.
|
|
|
|
if ((isa<TypedefNameDecl>(this) && isa<ObjCInterfaceDecl>(OldD)) ||
|
|
|
|
(isa<ObjCInterfaceDecl>(this) && isa<TypedefNameDecl>(OldD)))
|
|
|
|
return true;
|
|
|
|
|
2008-12-23 21:05:05 +00:00
|
|
|
// For non-function declarations, if the declarations are of the
|
|
|
|
// same kind then this must be a redeclaration, or semantic analysis
|
|
|
|
// would not have given us the new declaration.
|
|
|
|
return this->getKind() == OldD->getKind();
|
|
|
|
}
|
|
|
|
|
2009-02-24 20:03:32 +00:00
|
|
|
bool NamedDecl::hasLinkage() const {
|
2013-05-25 17:16:20 +00:00
|
|
|
return getFormalLinkage() != NoLinkage;
|
2009-02-24 20:03:32 +00:00
|
|
|
}
|
2009-01-20 01:17:11 +00:00
|
|
|
|
2012-03-08 18:20:41 +00:00
|
|
|
NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
|
2009-06-26 06:29:23 +00:00
|
|
|
NamedDecl *ND = this;
|
2012-03-08 21:00:45 +00:00
|
|
|
while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
|
|
|
|
ND = UD->getTargetDecl();
|
|
|
|
|
|
|
|
if (ObjCCompatibleAliasDecl *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
|
|
|
|
return AD->getClassInterface();
|
|
|
|
|
|
|
|
return ND;
|
2009-06-26 06:29:23 +00:00
|
|
|
}
|
|
|
|
|
2010-04-06 21:38:20 +00:00
|
|
|
bool NamedDecl::isCXXInstanceMember() const {
|
2012-03-08 02:08:05 +00:00
|
|
|
if (!isCXXClassMember())
|
|
|
|
return false;
|
|
|
|
|
2010-04-06 21:38:20 +00:00
|
|
|
const NamedDecl *D = this;
|
|
|
|
if (isa<UsingShadowDecl>(D))
|
|
|
|
D = cast<UsingShadowDecl>(D)->getTargetDecl();
|
|
|
|
|
2013-04-16 07:28:30 +00:00
|
|
|
if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D))
|
2010-04-06 21:38:20 +00:00
|
|
|
return true;
|
|
|
|
if (isa<CXXMethodDecl>(D))
|
|
|
|
return cast<CXXMethodDecl>(D)->isInstance();
|
|
|
|
if (isa<FunctionTemplateDecl>(D))
|
|
|
|
return cast<CXXMethodDecl>(cast<FunctionTemplateDecl>(D)
|
|
|
|
->getTemplatedDecl())->isInstance();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:31:54 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DeclaratorDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-07-06 18:42:40 +00:00
|
|
|
template <typename DeclT>
|
|
|
|
static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
|
|
|
|
if (decl->getNumTemplateParameterLists() > 0)
|
|
|
|
return decl->getTemplateParameterList(0)->getTemplateLoc();
|
|
|
|
else
|
|
|
|
return decl->getInnerLocStart();
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:31:54 +00:00
|
|
|
SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
|
2010-05-28 23:32:21 +00:00
|
|
|
TypeSourceInfo *TSI = getTypeSourceInfo();
|
|
|
|
if (TSI) return TSI->getTypeLoc().getBeginLoc();
|
2009-08-21 00:31:54 +00:00
|
|
|
return SourceLocation();
|
|
|
|
}
|
|
|
|
|
2011-02-25 02:25:35 +00:00
|
|
|
void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
|
|
|
|
if (QualifierLoc) {
|
2010-03-15 10:12:16 +00:00
|
|
|
// Make sure the extended decl info is allocated.
|
|
|
|
if (!hasExtInfo()) {
|
|
|
|
// Save (non-extended) type source info pointer.
|
|
|
|
TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
|
|
|
|
// Allocate external info struct.
|
|
|
|
DeclInfo = new (getASTContext()) ExtInfo;
|
|
|
|
// Restore savedTInfo into (extended) decl info.
|
|
|
|
getExtInfo()->TInfo = savedTInfo;
|
|
|
|
}
|
|
|
|
// Set qualifier info.
|
2011-02-25 02:25:35 +00:00
|
|
|
getExtInfo()->QualifierLoc = QualifierLoc;
|
2011-08-17 23:08:45 +00:00
|
|
|
} else {
|
2010-03-15 10:12:16 +00:00
|
|
|
// Here Qualifier == 0, i.e., we are removing the qualifier (if any).
|
|
|
|
if (hasExtInfo()) {
|
2011-03-18 15:16:37 +00:00
|
|
|
if (getExtInfo()->NumTemplParamLists == 0) {
|
|
|
|
// Save type source info pointer.
|
|
|
|
TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
|
|
|
|
// Deallocate the extended decl info.
|
|
|
|
getASTContext().Deallocate(getExtInfo());
|
|
|
|
// Restore savedTInfo into (non-extended) decl info.
|
|
|
|
DeclInfo = savedTInfo;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
getExtInfo()->QualifierLoc = QualifierLoc;
|
2010-03-15 10:12:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-18 15:16:37 +00:00
|
|
|
void
|
|
|
|
DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
|
|
|
|
unsigned NumTPLists,
|
|
|
|
TemplateParameterList **TPLists) {
|
|
|
|
assert(NumTPLists > 0);
|
|
|
|
// Make sure the extended decl info is allocated.
|
|
|
|
if (!hasExtInfo()) {
|
|
|
|
// Save (non-extended) type source info pointer.
|
|
|
|
TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
|
|
|
|
// Allocate external info struct.
|
|
|
|
DeclInfo = new (getASTContext()) ExtInfo;
|
|
|
|
// Restore savedTInfo into (extended) decl info.
|
|
|
|
getExtInfo()->TInfo = savedTInfo;
|
|
|
|
}
|
|
|
|
// Set the template parameter lists info.
|
|
|
|
getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
|
|
|
|
}
|
|
|
|
|
2010-07-06 18:42:40 +00:00
|
|
|
SourceLocation DeclaratorDecl::getOuterLocStart() const {
|
|
|
|
return getTemplateOrInnerLocStart(this);
|
|
|
|
}
|
|
|
|
|
2011-03-08 16:41:52 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Helper function: returns true if QT is or contains a type
|
|
|
|
// having a postfix component.
|
|
|
|
bool typeIsPostfix(clang::QualType QT) {
|
|
|
|
while (true) {
|
|
|
|
const Type* T = QT.getTypePtr();
|
|
|
|
switch (T->getTypeClass()) {
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
case Type::Pointer:
|
|
|
|
QT = cast<PointerType>(T)->getPointeeType();
|
|
|
|
break;
|
|
|
|
case Type::BlockPointer:
|
|
|
|
QT = cast<BlockPointerType>(T)->getPointeeType();
|
|
|
|
break;
|
|
|
|
case Type::MemberPointer:
|
|
|
|
QT = cast<MemberPointerType>(T)->getPointeeType();
|
|
|
|
break;
|
|
|
|
case Type::LValueReference:
|
|
|
|
case Type::RValueReference:
|
|
|
|
QT = cast<ReferenceType>(T)->getPointeeType();
|
|
|
|
break;
|
|
|
|
case Type::PackExpansion:
|
|
|
|
QT = cast<PackExpansionType>(T)->getPattern();
|
|
|
|
break;
|
|
|
|
case Type::Paren:
|
|
|
|
case Type::ConstantArray:
|
|
|
|
case Type::DependentSizedArray:
|
|
|
|
case Type::IncompleteArray:
|
|
|
|
case Type::VariableArray:
|
|
|
|
case Type::FunctionProto:
|
|
|
|
case Type::FunctionNoProto:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
SourceRange DeclaratorDecl::getSourceRange() const {
|
|
|
|
SourceLocation RangeEnd = getLocation();
|
|
|
|
if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
|
|
|
|
if (typeIsPostfix(TInfo->getType()))
|
|
|
|
RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
|
|
|
|
}
|
|
|
|
return SourceRange(getOuterLocStart(), RangeEnd);
|
|
|
|
}
|
|
|
|
|
2010-06-12 08:15:14 +00:00
|
|
|
void
|
2010-06-15 17:44:38 +00:00
|
|
|
QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
|
|
|
|
unsigned NumTPLists,
|
2010-06-12 08:15:14 +00:00
|
|
|
TemplateParameterList **TPLists) {
|
|
|
|
assert((NumTPLists == 0 || TPLists != 0) &&
|
|
|
|
"Empty array of template parameters with positive size!");
|
|
|
|
|
|
|
|
// Free previous template parameters (if any).
|
|
|
|
if (NumTemplParamLists > 0) {
|
2010-06-15 17:44:38 +00:00
|
|
|
Context.Deallocate(TemplParamLists);
|
2010-06-12 08:15:14 +00:00
|
|
|
TemplParamLists = 0;
|
|
|
|
NumTemplParamLists = 0;
|
|
|
|
}
|
|
|
|
// Set info on matched template parameter lists (if any).
|
|
|
|
if (NumTPLists > 0) {
|
2010-06-15 17:44:38 +00:00
|
|
|
TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
|
2010-06-12 08:15:14 +00:00
|
|
|
NumTemplParamLists = NumTPLists;
|
|
|
|
for (unsigned i = NumTPLists; i-- > 0; )
|
|
|
|
TemplParamLists[i] = TPLists[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-17 23:39:55 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// VarDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
|
|
|
|
switch (SC) {
|
2011-09-19 21:14:35 +00:00
|
|
|
case SC_None: break;
|
2011-09-20 12:40:26 +00:00
|
|
|
case SC_Auto: return "auto";
|
|
|
|
case SC_Extern: return "extern";
|
|
|
|
case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>";
|
|
|
|
case SC_PrivateExtern: return "__private_extern__";
|
|
|
|
case SC_Register: return "register";
|
|
|
|
case SC_Static: return "static";
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 12:40:26 +00:00
|
|
|
llvm_unreachable("Invalid storage class");
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 01:03:05 +00:00
|
|
|
VarDecl::VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
|
|
|
|
SourceLocation IdLoc, IdentifierInfo *Id, QualType T,
|
|
|
|
TypeSourceInfo *TInfo, StorageClass SC)
|
|
|
|
: DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), Init() {
|
|
|
|
assert(sizeof(VarDeclBitfields) <= sizeof(unsigned));
|
|
|
|
assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned));
|
|
|
|
AllBits = 0;
|
|
|
|
VarDeclBits.SClass = SC;
|
|
|
|
// Everything else is implicitly initialized to false.
|
|
|
|
}
|
|
|
|
|
2011-03-08 08:55:46 +00:00
|
|
|
VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation StartL, SourceLocation IdL,
|
2009-12-07 02:54:59 +00:00
|
|
|
IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
|
2013-04-03 19:27:57 +00:00
|
|
|
StorageClass S) {
|
|
|
|
return new (C) VarDecl(Var, DC, StartL, IdL, Id, T, TInfo, S);
|
2008-12-17 23:39:55 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(VarDecl));
|
|
|
|
return new (Mem) VarDecl(Var, 0, SourceLocation(), SourceLocation(), 0,
|
2013-04-03 19:27:57 +00:00
|
|
|
QualType(), 0, SC_None);
|
2012-01-05 21:55:30 +00:00
|
|
|
}
|
|
|
|
|
2010-12-06 18:36:25 +00:00
|
|
|
void VarDecl::setStorageClass(StorageClass SC) {
|
|
|
|
assert(isLegalForVariable(SC));
|
2011-05-01 02:13:58 +00:00
|
|
|
VarDeclBits.SClass = SC;
|
2010-12-06 18:36:25 +00:00
|
|
|
}
|
|
|
|
|
2010-07-06 18:42:40 +00:00
|
|
|
SourceRange VarDecl::getSourceRange() const {
|
2012-10-08 23:08:41 +00:00
|
|
|
if (const Expr *Init = getInit()) {
|
|
|
|
SourceLocation InitEnd = Init->getLocEnd();
|
2013-01-22 17:00:09 +00:00
|
|
|
// If Init is implicit, ignore its source range and fallback on
|
|
|
|
// DeclaratorDecl::getSourceRange() to handle postfix elements.
|
|
|
|
if (InitEnd.isValid() && InitEnd != getLocation())
|
2012-10-08 23:08:41 +00:00
|
|
|
return SourceRange(getOuterLocStart(), InitEnd);
|
|
|
|
}
|
2011-03-08 16:41:52 +00:00
|
|
|
return DeclaratorDecl::getSourceRange();
|
2009-06-20 08:09:14 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 21:18:45 +00:00
|
|
|
template<typename T>
|
2013-02-14 01:18:37 +00:00
|
|
|
static LanguageLinkage getLanguageLinkageTemplate(const T &D) {
|
2013-02-14 01:47:04 +00:00
|
|
|
// C++ [dcl.link]p1: All function types, function names with external linkage,
|
|
|
|
// and variable names with external linkage have a language linkage.
|
2013-05-13 00:12:11 +00:00
|
|
|
if (!D.hasExternalFormalLinkage())
|
2013-02-14 01:47:04 +00:00
|
|
|
return NoLanguageLinkage;
|
|
|
|
|
|
|
|
// Language linkage is a C++ concept, but saying that everything else in C has
|
2013-01-04 20:41:40 +00:00
|
|
|
// C language linkage fits the implementation nicely.
|
2012-12-28 14:21:58 +00:00
|
|
|
ASTContext &Context = D.getASTContext();
|
|
|
|
if (!Context.getLangOpts().CPlusPlus)
|
2013-02-14 01:18:37 +00:00
|
|
|
return CLanguageLinkage;
|
|
|
|
|
2013-02-14 01:47:04 +00:00
|
|
|
// C++ [dcl.link]p4: A C language linkage is ignored in determining the
|
|
|
|
// language linkage of the names of class members and the function type of
|
|
|
|
// class member functions.
|
2012-12-28 14:21:58 +00:00
|
|
|
const DeclContext *DC = D.getDeclContext();
|
|
|
|
if (DC->isRecord())
|
2013-02-14 01:18:37 +00:00
|
|
|
return CXXLanguageLinkage;
|
2012-12-28 14:21:58 +00:00
|
|
|
|
|
|
|
// If the first decl is in an extern "C" context, any other redeclaration
|
|
|
|
// will have C language linkage. If the first one is not in an extern "C"
|
|
|
|
// context, we would have reported an error for any other decl being in one.
|
2013-05-05 20:15:21 +00:00
|
|
|
if (isFirstInExternCContext(&D))
|
2013-02-14 01:18:37 +00:00
|
|
|
return CLanguageLinkage;
|
|
|
|
return CXXLanguageLinkage;
|
2012-12-28 14:21:58 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 03:07:35 +00:00
|
|
|
template<typename T>
|
|
|
|
static bool isExternCTemplate(const T &D) {
|
|
|
|
// Since the context is ignored for class members, they can only have C++
|
|
|
|
// language linkage or no language linkage.
|
|
|
|
const DeclContext *DC = D.getDeclContext();
|
|
|
|
if (DC->isRecord()) {
|
|
|
|
assert(D.getASTContext().getLangOpts().CPlusPlus);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return D.getLanguageLinkage() == CLanguageLinkage;
|
|
|
|
}
|
|
|
|
|
2013-02-14 01:18:37 +00:00
|
|
|
LanguageLinkage VarDecl::getLanguageLinkage() const {
|
|
|
|
return getLanguageLinkageTemplate(*this);
|
2012-12-28 14:21:58 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 03:07:35 +00:00
|
|
|
bool VarDecl::isExternC() const {
|
|
|
|
return isExternCTemplate(*this);
|
|
|
|
}
|
|
|
|
|
2013-05-05 20:15:21 +00:00
|
|
|
static bool isLinkageSpecContext(const DeclContext *DC,
|
|
|
|
LinkageSpecDecl::LanguageIDs ID) {
|
|
|
|
while (DC->getDeclKind() != Decl::TranslationUnit) {
|
|
|
|
if (DC->getDeclKind() == Decl::LinkageSpec)
|
|
|
|
return cast<LinkageSpecDecl>(DC)->getLanguage() == ID;
|
|
|
|
DC = DC->getParent();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
static bool isInLanguageSpecContext(T *D, LinkageSpecDecl::LanguageIDs ID) {
|
|
|
|
return isLinkageSpecContext(D->getLexicalDeclContext(), ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VarDecl::isInExternCContext() const {
|
|
|
|
return isInLanguageSpecContext(this, LinkageSpecDecl::lang_c);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VarDecl::isInExternCXXContext() const {
|
|
|
|
return isInLanguageSpecContext(this, LinkageSpecDecl::lang_cxx);
|
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
VarDecl *VarDecl::getCanonicalDecl() {
|
|
|
|
return getFirstDeclaration();
|
|
|
|
}
|
|
|
|
|
2012-03-09 01:51:51 +00:00
|
|
|
VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition(
|
|
|
|
ASTContext &C) const
|
|
|
|
{
|
2010-01-31 22:27:38 +00:00
|
|
|
// C++ [basic.def]p2:
|
|
|
|
// A declaration is a definition unless [...] it contains the 'extern'
|
|
|
|
// specifier or a linkage-specification and neither an initializer [...],
|
|
|
|
// it declares a static data member in a class declaration [...].
|
|
|
|
// C++ [temp.expl.spec]p15:
|
|
|
|
// An explicit specialization of a static data member of a template is a
|
|
|
|
// definition if the declaration includes an initializer; otherwise, it is
|
|
|
|
// a declaration.
|
|
|
|
if (isStaticDataMember()) {
|
|
|
|
if (isOutOfLine() && (hasInit() ||
|
|
|
|
getTemplateSpecializationKind() != TSK_ExplicitSpecialization))
|
|
|
|
return Definition;
|
|
|
|
else
|
|
|
|
return DeclarationOnly;
|
|
|
|
}
|
|
|
|
// C99 6.7p5:
|
|
|
|
// A definition of an identifier is a declaration for that identifier that
|
|
|
|
// [...] causes storage to be reserved for that object.
|
|
|
|
// Note: that applies for all non-file-scope objects.
|
|
|
|
// C99 6.9.2p1:
|
|
|
|
// If the declaration of an identifier for an object has file scope and an
|
|
|
|
// initializer, the declaration is an external definition for the identifier
|
|
|
|
if (hasInit())
|
|
|
|
return Definition;
|
2013-04-25 12:11:36 +00:00
|
|
|
|
2010-01-31 22:27:38 +00:00
|
|
|
if (hasExternalStorage())
|
|
|
|
return DeclarationOnly;
|
2013-03-07 01:42:44 +00:00
|
|
|
|
2013-04-25 12:11:36 +00:00
|
|
|
// [dcl.link] p7:
|
|
|
|
// A declaration directly contained in a linkage-specification is treated
|
|
|
|
// as if it contains the extern specifier for the purpose of determining
|
|
|
|
// the linkage of the declared name and whether it is a definition.
|
2013-04-26 01:30:23 +00:00
|
|
|
if (isSingleLineExternC(*this))
|
|
|
|
return DeclarationOnly;
|
2013-04-25 12:11:36 +00:00
|
|
|
|
2010-01-31 22:27:38 +00:00
|
|
|
// C99 6.9.2p2:
|
|
|
|
// A declaration of an object that has file scope without an initializer,
|
|
|
|
// and without a storage class specifier or the scs 'static', constitutes
|
|
|
|
// a tentative definition.
|
|
|
|
// No such thing in C++.
|
2012-03-11 07:00:24 +00:00
|
|
|
if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
|
2010-01-31 22:27:38 +00:00
|
|
|
return TentativeDefinition;
|
|
|
|
|
|
|
|
// What's left is (in C, block-scope) declarations without initializers or
|
|
|
|
// external storage. These are definitions.
|
|
|
|
return Definition;
|
|
|
|
}
|
|
|
|
|
|
|
|
VarDecl *VarDecl::getActingDefinition() {
|
|
|
|
DefinitionKind Kind = isThisDeclarationADefinition();
|
|
|
|
if (Kind != TentativeDefinition)
|
|
|
|
return 0;
|
|
|
|
|
2010-06-14 18:31:46 +00:00
|
|
|
VarDecl *LastTentative = 0;
|
2010-01-31 22:27:38 +00:00
|
|
|
VarDecl *First = getFirstDeclaration();
|
|
|
|
for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Kind = (*I)->isThisDeclarationADefinition();
|
|
|
|
if (Kind == Definition)
|
|
|
|
return 0;
|
|
|
|
else if (Kind == TentativeDefinition)
|
|
|
|
LastTentative = *I;
|
|
|
|
}
|
|
|
|
return LastTentative;
|
|
|
|
}
|
|
|
|
|
2012-03-09 01:51:51 +00:00
|
|
|
VarDecl *VarDecl::getDefinition(ASTContext &C) {
|
2010-02-02 17:55:12 +00:00
|
|
|
VarDecl *First = getFirstDeclaration();
|
|
|
|
for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
|
|
|
|
I != E; ++I) {
|
2012-03-09 01:51:51 +00:00
|
|
|
if ((*I)->isThisDeclarationADefinition(C) == Definition)
|
2010-02-01 20:16:42 +00:00
|
|
|
return *I;
|
|
|
|
}
|
|
|
|
return 0;
|
2010-01-31 22:27:38 +00:00
|
|
|
}
|
|
|
|
|
2012-03-09 01:51:51 +00:00
|
|
|
VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
|
2010-10-29 22:22:43 +00:00
|
|
|
DefinitionKind Kind = DeclarationOnly;
|
|
|
|
|
|
|
|
const VarDecl *First = getFirstDeclaration();
|
|
|
|
for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
|
2012-03-06 23:52:46 +00:00
|
|
|
I != E; ++I) {
|
2012-03-09 01:51:51 +00:00
|
|
|
Kind = std::max(Kind, (*I)->isThisDeclarationADefinition(C));
|
2012-03-06 23:52:46 +00:00
|
|
|
if (Kind == Definition)
|
|
|
|
break;
|
|
|
|
}
|
2010-10-29 22:22:43 +00:00
|
|
|
|
|
|
|
return Kind;
|
|
|
|
}
|
|
|
|
|
2010-02-01 20:16:42 +00:00
|
|
|
const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
|
2010-01-26 22:01:41 +00:00
|
|
|
redecl_iterator I = redecls_begin(), E = redecls_end();
|
|
|
|
while (I != E && !I->getInit())
|
|
|
|
++I;
|
|
|
|
|
|
|
|
if (I != E) {
|
2010-02-01 20:16:42 +00:00
|
|
|
D = *I;
|
2010-01-26 22:01:41 +00:00
|
|
|
return I->getInit();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-14 21:29:40 +00:00
|
|
|
bool VarDecl::isOutOfLine() const {
|
2011-02-19 18:51:44 +00:00
|
|
|
if (Decl::isOutOfLine())
|
2009-10-14 21:29:40 +00:00
|
|
|
return true;
|
2010-02-21 07:08:09 +00:00
|
|
|
|
|
|
|
if (!isStaticDataMember())
|
|
|
|
return false;
|
|
|
|
|
2009-10-14 21:29:40 +00:00
|
|
|
// If this static data member was instantiated from a static data member of
|
|
|
|
// a class template, check whether that static data member was defined
|
|
|
|
// out-of-line.
|
|
|
|
if (VarDecl *VD = getInstantiatedFromStaticDataMember())
|
|
|
|
return VD->isOutOfLine();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-27 18:42:08 +00:00
|
|
|
VarDecl *VarDecl::getOutOfLineDefinition() {
|
|
|
|
if (!isStaticDataMember())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (VarDecl::redecl_iterator RD = redecls_begin(), RDEnd = redecls_end();
|
|
|
|
RD != RDEnd; ++RD) {
|
|
|
|
if (RD->getLexicalDeclContext()->isFileContext())
|
|
|
|
return *RD;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-11 01:19:42 +00:00
|
|
|
void VarDecl::setInit(Expr *I) {
|
2010-01-26 22:01:41 +00:00
|
|
|
if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
|
|
|
|
Eval->~EvaluatedStmt();
|
2010-02-11 01:19:42 +00:00
|
|
|
getASTContext().Deallocate(Eval);
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Init = I;
|
|
|
|
}
|
|
|
|
|
2012-03-09 01:51:51 +00:00
|
|
|
bool VarDecl::isUsableInConstantExpressions(ASTContext &C) const {
|
2012-03-11 07:00:24 +00:00
|
|
|
const LangOptions &Lang = C.getLangOpts();
|
2011-12-21 02:55:12 +00:00
|
|
|
|
2012-03-02 04:14:40 +00:00
|
|
|
if (!Lang.CPlusPlus)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// In C++11, any variable of reference type can be used in a constant
|
|
|
|
// expression if it is initialized by a constant expression.
|
2013-01-02 11:42:31 +00:00
|
|
|
if (Lang.CPlusPlus11 && getType()->isReferenceType())
|
2012-03-02 04:14:40 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Only const objects can be used in constant expressions in C++. C++98 does
|
2011-12-21 02:55:12 +00:00
|
|
|
// not require the variable to be non-volatile, but we consider this to be a
|
|
|
|
// defect.
|
2012-03-02 04:14:40 +00:00
|
|
|
if (!getType().isConstQualified() || getType().isVolatileQualified())
|
2011-12-21 02:55:12 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// In C++, const, non-volatile variables of integral or enumeration types
|
|
|
|
// can be used in constant expressions.
|
|
|
|
if (getType()->isIntegralOrEnumerationType())
|
|
|
|
return true;
|
|
|
|
|
2012-03-02 04:14:40 +00:00
|
|
|
// Additionally, in C++11, non-volatile constexpr variables can be used in
|
|
|
|
// constant expressions.
|
2013-01-02 11:42:31 +00:00
|
|
|
return Lang.CPlusPlus11 && isConstexpr();
|
2011-12-21 02:55:12 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 06:19:21 +00:00
|
|
|
/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
|
|
|
|
/// form, which contains extra information on the evaluated value of the
|
|
|
|
/// initializer.
|
|
|
|
EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
|
|
|
|
EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>();
|
|
|
|
if (!Eval) {
|
|
|
|
Stmt *S = Init.get<Stmt *>();
|
2013-06-03 13:51:33 +00:00
|
|
|
// Note: EvaluatedStmt contains an APValue, which usually holds
|
|
|
|
// resources not allocated from the ASTContext. We need to do some
|
|
|
|
// work to avoid leaking those, but we do so in VarDecl::evaluateValue
|
|
|
|
// where we can detect whether there's anything to clean up or not.
|
2011-12-19 06:19:21 +00:00
|
|
|
Eval = new (getASTContext()) EvaluatedStmt;
|
|
|
|
Eval->Value = S;
|
|
|
|
Init = Eval;
|
|
|
|
}
|
|
|
|
return Eval;
|
|
|
|
}
|
|
|
|
|
2012-01-14 04:30:29 +00:00
|
|
|
APValue *VarDecl::evaluateValue() const {
|
2013-01-12 19:30:44 +00:00
|
|
|
SmallVector<PartialDiagnosticAt, 8> Notes;
|
2012-01-14 04:30:29 +00:00
|
|
|
return evaluateValue(Notes);
|
|
|
|
}
|
|
|
|
|
2013-06-03 13:51:33 +00:00
|
|
|
namespace {
|
|
|
|
// Destroy an APValue that was allocated in an ASTContext.
|
|
|
|
void DestroyAPValue(void* UntypedValue) {
|
|
|
|
static_cast<APValue*>(UntypedValue)->~APValue();
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-01-14 04:30:29 +00:00
|
|
|
APValue *VarDecl::evaluateValue(
|
2013-01-12 19:30:44 +00:00
|
|
|
SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
|
2011-12-19 06:19:21 +00:00
|
|
|
EvaluatedStmt *Eval = ensureEvaluatedStmt();
|
|
|
|
|
|
|
|
// We only produce notes indicating why an initializer is non-constant the
|
|
|
|
// first time it is evaluated. FIXME: The notes won't always be emitted the
|
|
|
|
// first time we try evaluation, so might not be produced at all.
|
|
|
|
if (Eval->WasEvaluated)
|
2012-01-14 04:30:29 +00:00
|
|
|
return Eval->Evaluated.isUninit() ? 0 : &Eval->Evaluated;
|
2011-12-19 06:19:21 +00:00
|
|
|
|
|
|
|
const Expr *Init = cast<Expr>(Eval->Value);
|
|
|
|
assert(!Init->isValueDependent());
|
|
|
|
|
|
|
|
if (Eval->IsEvaluating) {
|
|
|
|
// FIXME: Produce a diagnostic for self-initialization.
|
|
|
|
Eval->CheckedICE = true;
|
|
|
|
Eval->IsICE = false;
|
2012-01-14 04:30:29 +00:00
|
|
|
return 0;
|
2011-12-19 06:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Eval->IsEvaluating = true;
|
|
|
|
|
|
|
|
bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
|
|
|
|
this, Notes);
|
|
|
|
|
2013-06-03 13:51:33 +00:00
|
|
|
// Ensure the computed APValue is cleaned up later if evaluation succeeded,
|
|
|
|
// or that it's empty (so that there's nothing to clean up) if evaluation
|
|
|
|
// failed.
|
2011-12-19 06:19:21 +00:00
|
|
|
if (!Result)
|
|
|
|
Eval->Evaluated = APValue();
|
2013-06-03 13:51:33 +00:00
|
|
|
else if (Eval->Evaluated.needsCleanup())
|
|
|
|
getASTContext().AddDeallocation(DestroyAPValue, &Eval->Evaluated);
|
2011-12-19 06:19:21 +00:00
|
|
|
|
|
|
|
Eval->IsEvaluating = false;
|
|
|
|
Eval->WasEvaluated = true;
|
|
|
|
|
|
|
|
// In C++11, we have determined whether the initializer was a constant
|
|
|
|
// expression as a side-effect.
|
2013-01-02 11:42:31 +00:00
|
|
|
if (getASTContext().getLangOpts().CPlusPlus11 && !Eval->CheckedICE) {
|
2011-12-19 06:19:21 +00:00
|
|
|
Eval->CheckedICE = true;
|
2012-02-06 21:50:18 +00:00
|
|
|
Eval->IsICE = Result && Notes.empty();
|
2011-12-19 06:19:21 +00:00
|
|
|
}
|
|
|
|
|
2012-01-14 04:30:29 +00:00
|
|
|
return Result ? &Eval->Evaluated : 0;
|
2011-12-19 06:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool VarDecl::checkInitIsICE() const {
|
2012-01-05 00:13:19 +00:00
|
|
|
// Initializers of weak variables are never ICEs.
|
|
|
|
if (isWeak())
|
|
|
|
return false;
|
|
|
|
|
2011-12-19 06:19:21 +00:00
|
|
|
EvaluatedStmt *Eval = ensureEvaluatedStmt();
|
|
|
|
if (Eval->CheckedICE)
|
|
|
|
// We have already checked whether this subexpression is an
|
|
|
|
// integral constant expression.
|
|
|
|
return Eval->IsICE;
|
|
|
|
|
|
|
|
const Expr *Init = cast<Expr>(Eval->Value);
|
|
|
|
assert(!Init->isValueDependent());
|
|
|
|
|
|
|
|
// In C++11, evaluate the initializer to check whether it's a constant
|
|
|
|
// expression.
|
2013-01-02 11:42:31 +00:00
|
|
|
if (getASTContext().getLangOpts().CPlusPlus11) {
|
2013-01-12 19:30:44 +00:00
|
|
|
SmallVector<PartialDiagnosticAt, 8> Notes;
|
2011-12-19 06:19:21 +00:00
|
|
|
evaluateValue(Notes);
|
|
|
|
return Eval->IsICE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's an ICE whether or not the definition we found is
|
|
|
|
// out-of-line. See DR 721 and the discussion in Clang PR
|
|
|
|
// 6206 for details.
|
|
|
|
|
|
|
|
if (Eval->CheckingICE)
|
|
|
|
return false;
|
|
|
|
Eval->CheckingICE = true;
|
|
|
|
|
|
|
|
Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
|
|
|
|
Eval->CheckingICE = false;
|
|
|
|
Eval->CheckedICE = true;
|
|
|
|
return Eval->IsICE;
|
|
|
|
}
|
|
|
|
|
2009-10-14 21:29:40 +00:00
|
|
|
VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
|
2009-10-12 20:18:28 +00:00
|
|
|
if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
|
2009-10-08 07:24:58 +00:00
|
|
|
return cast<VarDecl>(MSI->getInstantiatedFrom());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-14 20:14:33 +00:00
|
|
|
TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
|
2013-08-06 01:03:05 +00:00
|
|
|
if (const VarTemplateSpecializationDecl *Spec =
|
|
|
|
dyn_cast<VarTemplateSpecializationDecl>(this))
|
|
|
|
return Spec->getSpecializationKind();
|
|
|
|
|
2010-01-31 22:27:38 +00:00
|
|
|
if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
|
2009-10-08 07:24:58 +00:00
|
|
|
return MSI->getTemplateSpecializationKind();
|
|
|
|
|
|
|
|
return TSK_Undeclared;
|
|
|
|
}
|
|
|
|
|
2013-08-06 01:03:05 +00:00
|
|
|
VarTemplateDecl *VarDecl::getDescribedVarTemplate() const {
|
|
|
|
return getASTContext().getTemplateOrSpecializationInfo(this)
|
|
|
|
.dyn_cast<VarTemplateDecl *>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) {
|
|
|
|
getASTContext().setTemplateOrSpecializationInfo(this, Template);
|
|
|
|
}
|
|
|
|
|
2009-10-14 21:29:40 +00:00
|
|
|
MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
|
2013-08-01 04:12:04 +00:00
|
|
|
if (isStaticDataMember())
|
2013-08-06 01:03:05 +00:00
|
|
|
// FIXME: Remove ?
|
|
|
|
// return getASTContext().getInstantiatedFromStaticDataMember(this);
|
|
|
|
return getASTContext().getTemplateOrSpecializationInfo(this)
|
|
|
|
.dyn_cast<MemberSpecializationInfo *>();
|
2013-08-01 04:12:04 +00:00
|
|
|
return 0;
|
2009-10-12 20:18:28 +00:00
|
|
|
}
|
|
|
|
|
2009-10-15 17:21:20 +00:00
|
|
|
void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
|
|
|
|
SourceLocation PointOfInstantiation) {
|
2013-08-06 01:03:05 +00:00
|
|
|
if (VarTemplateSpecializationDecl *Spec =
|
|
|
|
dyn_cast<VarTemplateSpecializationDecl>(this)) {
|
|
|
|
Spec->setSpecializationKind(TSK);
|
|
|
|
if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
|
|
|
|
Spec->getPointOfInstantiation().isInvalid())
|
|
|
|
Spec->setPointOfInstantiation(PointOfInstantiation);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) {
|
|
|
|
MSI->setTemplateSpecializationKind(TSK);
|
|
|
|
if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
|
|
|
|
MSI->getPointOfInstantiation().isInvalid())
|
|
|
|
MSI->setPointOfInstantiation(PointOfInstantiation);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm_unreachable(
|
|
|
|
"Not a variable or static data member template specialization");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD,
|
|
|
|
TemplateSpecializationKind TSK) {
|
|
|
|
assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() &&
|
|
|
|
"Previous template or instantiation?");
|
|
|
|
getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK);
|
2009-07-24 20:34:43 +00:00
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ParmVarDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-03-10 23:43:53 +00:00
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
|
2011-03-08 08:55:46 +00:00
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation IdLoc, IdentifierInfo *Id,
|
2010-01-26 22:01:41 +00:00
|
|
|
QualType T, TypeSourceInfo *TInfo,
|
2013-04-03 19:27:57 +00:00
|
|
|
StorageClass S, Expr *DefArg) {
|
2011-03-08 08:55:46 +00:00
|
|
|
return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo,
|
2013-04-03 19:27:57 +00:00
|
|
|
S, DefArg);
|
2009-03-10 23:43:53 +00:00
|
|
|
}
|
|
|
|
|
2013-06-24 17:51:48 +00:00
|
|
|
QualType ParmVarDecl::getOriginalType() const {
|
|
|
|
TypeSourceInfo *TSI = getTypeSourceInfo();
|
|
|
|
QualType T = TSI ? TSI->getType() : getType();
|
|
|
|
if (const DecayedType *DT = dyn_cast<DecayedType>(T))
|
|
|
|
return DT->getOriginalType();
|
|
|
|
return T;
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ParmVarDecl));
|
|
|
|
return new (Mem) ParmVarDecl(ParmVar, 0, SourceLocation(), SourceLocation(),
|
2013-04-03 19:27:57 +00:00
|
|
|
0, QualType(), 0, SC_None, 0);
|
2012-01-05 21:55:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-30 17:23:26 +00:00
|
|
|
SourceRange ParmVarDecl::getSourceRange() const {
|
|
|
|
if (!hasInheritedDefaultArg()) {
|
|
|
|
SourceRange ArgRange = getDefaultArgRange();
|
|
|
|
if (ArgRange.isValid())
|
|
|
|
return SourceRange(getOuterLocStart(), ArgRange.getEnd());
|
|
|
|
}
|
|
|
|
|
2013-04-17 01:56:48 +00:00
|
|
|
// DeclaratorDecl considers the range of postfix types as overlapping with the
|
|
|
|
// declaration name, but this is not the case with parameters in ObjC methods.
|
|
|
|
if (isa<ObjCMethodDecl>(getDeclContext()))
|
|
|
|
return SourceRange(DeclaratorDecl::getLocStart(), getLocation());
|
|
|
|
|
2011-07-30 17:23:26 +00:00
|
|
|
return DeclaratorDecl::getSourceRange();
|
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
Expr *ParmVarDecl::getDefaultArg() {
|
|
|
|
assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
|
|
|
|
assert(!hasUninstantiatedDefaultArg() &&
|
|
|
|
"Default argument is not yet instantiated!");
|
|
|
|
|
|
|
|
Expr *Arg = getInit();
|
2010-12-06 08:20:24 +00:00
|
|
|
if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
|
2010-01-26 22:01:41 +00:00
|
|
|
return E->getSubExpr();
|
|
|
|
|
|
|
|
return Arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceRange ParmVarDecl::getDefaultArgRange() const {
|
|
|
|
if (const Expr *E = getInit())
|
|
|
|
return E->getSourceRange();
|
|
|
|
|
|
|
|
if (hasUninstantiatedDefaultArg())
|
|
|
|
return getUninstantiatedDefaultArg()->getSourceRange();
|
|
|
|
|
|
|
|
return SourceRange();
|
2009-07-05 22:21:56 +00:00
|
|
|
}
|
|
|
|
|
2011-01-05 21:11:38 +00:00
|
|
|
bool ParmVarDecl::isParameterPack() const {
|
|
|
|
return isa<PackExpansionType>(getType());
|
|
|
|
}
|
|
|
|
|
2011-10-06 05:00:56 +00:00
|
|
|
void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
|
|
|
|
getASTContext().setParameterIndex(this, parameterIndex);
|
|
|
|
ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned ParmVarDecl::getParameterIndexLarge() const {
|
|
|
|
return getASTContext().getParameterIndex(this);
|
|
|
|
}
|
|
|
|
|
2008-11-09 23:41:00 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-31 00:36:02 +00:00
|
|
|
// FunctionDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-02-22 15:46:01 +00:00
|
|
|
void FunctionDecl::getNameForDiagnostic(
|
|
|
|
raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
|
|
|
|
NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
|
2011-02-19 18:51:44 +00:00
|
|
|
const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
|
|
|
|
if (TemplateArgs)
|
2013-02-22 15:46:01 +00:00
|
|
|
TemplateSpecializationType::PrintTemplateArgumentList(
|
|
|
|
OS, TemplateArgs->data(), TemplateArgs->size(), Policy);
|
2011-02-19 18:51:44 +00:00
|
|
|
}
|
|
|
|
|
2010-04-29 16:49:01 +00:00
|
|
|
bool FunctionDecl::isVariadic() const {
|
|
|
|
if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
|
|
|
|
return FT->isVariadic();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-07-07 11:31:19 +00:00
|
|
|
bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
|
|
|
|
for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
|
2011-04-22 22:18:13 +00:00
|
|
|
if (I->Body || I->IsLateTemplateParsed) {
|
2010-07-07 11:31:19 +00:00
|
|
|
Definition = *I;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-05-14 23:26:09 +00:00
|
|
|
bool FunctionDecl::hasTrivialBody() const
|
|
|
|
{
|
|
|
|
Stmt *S = getBody();
|
|
|
|
if (!S) {
|
|
|
|
// Since we don't have a body for this function, we don't know if it's
|
|
|
|
// trivial or not.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-05-06 20:44:56 +00:00
|
|
|
bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
|
|
|
|
for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
|
2011-05-23 23:14:04 +00:00
|
|
|
if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed) {
|
2011-05-06 20:44:56 +00:00
|
|
|
Definition = I->IsDeleted ? I->getCanonicalDecl() : *I;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-30 02:35:26 +00:00
|
|
|
Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
|
2009-07-14 03:20:21 +00:00
|
|
|
for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
|
|
|
|
if (I->Body) {
|
|
|
|
Definition = *I;
|
|
|
|
return I->Body.get(getASTContext().getExternalSource());
|
2011-04-22 22:18:13 +00:00
|
|
|
} else if (I->IsLateTemplateParsed) {
|
|
|
|
Definition = *I;
|
|
|
|
return 0;
|
2008-04-21 02:02:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2007-01-21 07:42:07 +00:00
|
|
|
}
|
|
|
|
|
2009-06-20 08:09:14 +00:00
|
|
|
void FunctionDecl::setBody(Stmt *B) {
|
|
|
|
Body = B;
|
2010-12-06 17:49:01 +00:00
|
|
|
if (B)
|
2009-06-20 08:09:14 +00:00
|
|
|
EndRangeLoc = B->getLocEnd();
|
|
|
|
}
|
|
|
|
|
2010-09-28 21:55:22 +00:00
|
|
|
void FunctionDecl::setPure(bool P) {
|
|
|
|
IsPure = P;
|
|
|
|
if (P)
|
|
|
|
if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
|
|
|
|
Parent->markedVirtualFunctionPure();
|
|
|
|
}
|
|
|
|
|
2013-07-21 23:12:18 +00:00
|
|
|
template<std::size_t Len>
|
|
|
|
static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) {
|
|
|
|
IdentifierInfo *II = ND->getIdentifier();
|
|
|
|
return II && II->isStr(Str);
|
|
|
|
}
|
|
|
|
|
2009-09-12 00:17:51 +00:00
|
|
|
bool FunctionDecl::isMain() const {
|
2011-05-15 17:49:20 +00:00
|
|
|
const TranslationUnitDecl *tunit =
|
|
|
|
dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
|
|
|
|
return tunit &&
|
2012-03-11 07:00:24 +00:00
|
|
|
!tunit->getASTContext().getLangOpts().Freestanding &&
|
2013-07-21 23:12:18 +00:00
|
|
|
isNamed(this, "main");
|
2011-05-15 17:49:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionDecl::isReservedGlobalPlacementOperator() const {
|
|
|
|
assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
|
|
|
|
assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
|
|
|
|
getDeclName().getCXXOverloadedOperator() == OO_Delete ||
|
|
|
|
getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
|
|
|
|
getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
|
|
|
|
|
|
|
|
if (isa<CXXRecordDecl>(getDeclContext())) return false;
|
|
|
|
assert(getDeclContext()->getRedeclContext()->isTranslationUnit());
|
|
|
|
|
|
|
|
const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
|
|
|
|
if (proto->getNumArgs() != 2 || proto->isVariadic()) return false;
|
|
|
|
|
|
|
|
ASTContext &Context =
|
|
|
|
cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
|
|
|
|
->getASTContext();
|
|
|
|
|
|
|
|
// The result type and first argument type are constant across all
|
|
|
|
// these operators. The second argument must be exactly void*.
|
|
|
|
return (proto->getArgType(1).getCanonicalType() == Context.VoidPtrTy);
|
2009-02-24 01:23:02 +00:00
|
|
|
}
|
|
|
|
|
2013-07-21 23:12:18 +00:00
|
|
|
static bool isNamespaceStd(const DeclContext *DC) {
|
|
|
|
const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC->getRedeclContext());
|
|
|
|
return ND && isNamed(ND, "std") &&
|
|
|
|
ND->getParent()->getRedeclContext()->isTranslationUnit();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionDecl::isReplaceableGlobalAllocationFunction() const {
|
|
|
|
if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
|
|
|
|
return false;
|
|
|
|
if (getDeclName().getCXXOverloadedOperator() != OO_New &&
|
|
|
|
getDeclName().getCXXOverloadedOperator() != OO_Delete &&
|
|
|
|
getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
|
|
|
|
getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (isa<CXXRecordDecl>(getDeclContext()))
|
|
|
|
return false;
|
|
|
|
assert(getDeclContext()->getRedeclContext()->isTranslationUnit());
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = getType()->castAs<FunctionProtoType>();
|
|
|
|
if (FPT->getNumArgs() > 2 || FPT->isVariadic())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// If this is a single-parameter function, it must be a replaceable global
|
|
|
|
// allocation or deallocation function.
|
|
|
|
if (FPT->getNumArgs() == 1)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, we're looking for a second parameter whose type is
|
|
|
|
// 'const std::nothrow_t &'.
|
|
|
|
QualType Ty = FPT->getArgType(1);
|
|
|
|
if (!Ty->isReferenceType())
|
|
|
|
return false;
|
|
|
|
Ty = Ty->getPointeeType();
|
|
|
|
if (Ty.getCVRQualifiers() != Qualifiers::Const)
|
|
|
|
return false;
|
|
|
|
// FIXME: Recognise nothrow_t in an inline namespace inside std?
|
|
|
|
const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
|
|
|
|
return RD && isNamed(RD, "nothrow_t") && isNamespaceStd(RD->getDeclContext());
|
|
|
|
}
|
|
|
|
|
2013-02-14 01:18:37 +00:00
|
|
|
LanguageLinkage FunctionDecl::getLanguageLinkage() const {
|
2013-01-12 15:27:44 +00:00
|
|
|
// Users expect to be able to write
|
|
|
|
// extern "C" void *__builtin_alloca (size_t);
|
|
|
|
// so consider builtins as having C language linkage.
|
2013-01-12 15:27:43 +00:00
|
|
|
if (getBuiltinID())
|
2013-02-14 01:18:37 +00:00
|
|
|
return CLanguageLinkage;
|
2013-01-12 15:27:43 +00:00
|
|
|
|
2013-02-14 01:18:37 +00:00
|
|
|
return getLanguageLinkageTemplate(*this);
|
2012-12-28 14:21:58 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 03:07:35 +00:00
|
|
|
bool FunctionDecl::isExternC() const {
|
|
|
|
return isExternCTemplate(*this);
|
2013-05-05 20:15:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionDecl::isInExternCContext() const {
|
|
|
|
return isInLanguageSpecContext(this, LinkageSpecDecl::lang_c);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionDecl::isInExternCXXContext() const {
|
|
|
|
return isInLanguageSpecContext(this, LinkageSpecDecl::lang_cxx);
|
2013-03-14 03:07:35 +00:00
|
|
|
}
|
|
|
|
|
2009-03-31 16:35:03 +00:00
|
|
|
bool FunctionDecl::isGlobal() const {
|
|
|
|
if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
|
|
|
|
return Method->isStatic();
|
|
|
|
|
2013-04-03 19:27:57 +00:00
|
|
|
if (getCanonicalDecl()->getStorageClass() == SC_Static)
|
2009-03-31 16:35:03 +00:00
|
|
|
return false;
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
for (const DeclContext *DC = getDeclContext();
|
2009-03-31 16:35:03 +00:00
|
|
|
DC->isNamespace();
|
|
|
|
DC = DC->getParent()) {
|
|
|
|
if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
|
|
|
|
if (!Namespace->getDeclName())
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-17 01:30:42 +00:00
|
|
|
bool FunctionDecl::isNoReturn() const {
|
|
|
|
return hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() ||
|
2013-01-30 05:45:05 +00:00
|
|
|
hasAttr<C11NoReturnAttr>() ||
|
2013-01-17 01:30:42 +00:00
|
|
|
getType()->getAs<FunctionType>()->getNoReturnAttr();
|
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
void
|
|
|
|
FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
|
|
|
|
redeclarable_base::setPreviousDeclaration(PrevDecl);
|
|
|
|
|
|
|
|
if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
|
|
|
|
FunctionTemplateDecl *PrevFunTmpl
|
|
|
|
= PrevDecl? PrevDecl->getDescribedFunctionTemplate() : 0;
|
|
|
|
assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
|
|
|
|
FunTmpl->setPreviousDeclaration(PrevFunTmpl);
|
|
|
|
}
|
2010-12-09 16:59:22 +00:00
|
|
|
|
2011-11-08 18:21:06 +00:00
|
|
|
if (PrevDecl && PrevDecl->IsInline)
|
2010-12-09 16:59:22 +00:00
|
|
|
IsInline = true;
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
|
|
|
|
return getFirstDeclaration();
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionDecl *FunctionDecl::getCanonicalDecl() {
|
|
|
|
return getFirstDeclaration();
|
|
|
|
}
|
|
|
|
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-13 23:20:09 +00:00
|
|
|
/// \brief Returns a value indicating whether this function
|
|
|
|
/// corresponds to a builtin function.
|
|
|
|
///
|
|
|
|
/// The function corresponds to a built-in function if it is
|
|
|
|
/// declared at translation scope or within an extern "C" block and
|
|
|
|
/// its name matches with the name of a builtin. The returned value
|
|
|
|
/// will be 0 for functions that do not correspond to a builtin, a
|
2009-09-09 15:08:12 +00:00
|
|
|
/// value of type \c Builtin::ID if in the target-independent range
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-13 23:20:09 +00:00
|
|
|
/// \c [1,Builtin::First), or a target-specific builtin value.
|
2009-09-12 00:22:50 +00:00
|
|
|
unsigned FunctionDecl::getBuiltinID() const {
|
2012-03-06 23:52:37 +00:00
|
|
|
if (!getIdentifier())
|
2009-02-14 18:57:46 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
unsigned BuiltinID = getIdentifier()->getBuiltinID();
|
2012-03-06 23:52:37 +00:00
|
|
|
if (!BuiltinID)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ASTContext &Context = getASTContext();
|
2009-02-14 18:57:46 +00:00
|
|
|
if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
|
|
|
|
return BuiltinID;
|
|
|
|
|
|
|
|
// This function has the name of a known C library
|
|
|
|
// function. Determine whether it actually refers to the C library
|
|
|
|
// function or whether it just has the same name.
|
|
|
|
|
2009-02-17 03:23:10 +00:00
|
|
|
// If this is a static function, it's not a builtin.
|
2010-08-26 03:08:43 +00:00
|
|
|
if (getStorageClass() == SC_Static)
|
2009-02-17 03:23:10 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-02-14 18:57:46 +00:00
|
|
|
// If this function is at translation-unit scope and we're not in
|
|
|
|
// C++, it refers to the C library function.
|
2012-03-11 07:00:24 +00:00
|
|
|
if (!Context.getLangOpts().CPlusPlus &&
|
2009-02-14 18:57:46 +00:00
|
|
|
getDeclContext()->isTranslationUnit())
|
|
|
|
return BuiltinID;
|
|
|
|
|
|
|
|
// If the function is in an extern "C" linkage specification and is
|
|
|
|
// not marked "overloadable", it's the real function.
|
|
|
|
if (isa<LinkageSpecDecl>(getDeclContext()) &&
|
2009-09-09 15:08:12 +00:00
|
|
|
cast<LinkageSpecDecl>(getDeclContext())->getLanguage()
|
2009-02-14 18:57:46 +00:00
|
|
|
== LinkageSpecDecl::lang_c &&
|
2009-06-30 02:34:44 +00:00
|
|
|
!getAttr<OverloadableAttr>())
|
2009-02-14 18:57:46 +00:00
|
|
|
return BuiltinID;
|
|
|
|
|
|
|
|
// Not a builtin
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-13 23:20:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-25 06:03:53 +00:00
|
|
|
/// getNumParams - Return the number of parameters this function must have
|
2011-01-10 18:23:55 +00:00
|
|
|
/// based on its FunctionType. This is the length of the ParamInfo array
|
2009-04-25 06:03:53 +00:00
|
|
|
/// after it has been created.
|
|
|
|
unsigned FunctionDecl::getNumParams() const {
|
2012-08-30 22:22:09 +00:00
|
|
|
const FunctionType *FT = getType()->castAs<FunctionType>();
|
2009-02-26 23:50:07 +00:00
|
|
|
if (isa<FunctionNoProtoType>(FT))
|
2008-03-15 05:43:15 +00:00
|
|
|
return 0;
|
2009-02-26 23:50:07 +00:00
|
|
|
return cast<FunctionProtoType>(FT)->getNumArgs();
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2007-01-21 07:42:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-08 19:31:22 +00:00
|
|
|
void FunctionDecl::setParams(ASTContext &C,
|
2013-01-12 19:30:44 +00:00
|
|
|
ArrayRef<ParmVarDecl *> NewParamInfo) {
|
2007-01-21 07:42:07 +00:00
|
|
|
assert(ParamInfo == 0 && "Already has param info!");
|
2011-09-21 18:16:56 +00:00
|
|
|
assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2007-01-21 19:04:10 +00:00
|
|
|
// Zero params -> null pointer.
|
2011-09-21 18:16:56 +00:00
|
|
|
if (!NewParamInfo.empty()) {
|
|
|
|
ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
|
|
|
|
std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
|
2007-01-21 19:04:10 +00:00
|
|
|
}
|
2007-01-21 07:42:07 +00:00
|
|
|
}
|
2007-01-25 04:52:46 +00:00
|
|
|
|
2013-01-12 19:30:44 +00:00
|
|
|
void FunctionDecl::setDeclsInPrototypeScope(ArrayRef<NamedDecl *> NewDecls) {
|
2012-02-29 10:24:19 +00:00
|
|
|
assert(DeclsInPrototypeScope.empty() && "Already has prototype decls!");
|
|
|
|
|
|
|
|
if (!NewDecls.empty()) {
|
|
|
|
NamedDecl **A = new (getASTContext()) NamedDecl*[NewDecls.size()];
|
|
|
|
std::copy(NewDecls.begin(), NewDecls.end(), A);
|
2013-01-12 19:30:44 +00:00
|
|
|
DeclsInPrototypeScope = ArrayRef<NamedDecl *>(A, NewDecls.size());
|
2012-02-29 10:24:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-10 02:22:51 +00:00
|
|
|
/// getMinRequiredArguments - Returns the minimum number of arguments
|
|
|
|
/// needed to call this function. This may be fewer than the number of
|
|
|
|
/// function parameters, if some of the parameters have default
|
2011-01-06 22:09:01 +00:00
|
|
|
/// arguments (in C++) or the last parameter is a parameter pack.
|
2008-04-10 02:22:51 +00:00
|
|
|
unsigned FunctionDecl::getMinRequiredArguments() const {
|
2012-03-11 07:00:24 +00:00
|
|
|
if (!getASTContext().getLangOpts().CPlusPlus)
|
2011-01-11 01:52:23 +00:00
|
|
|
return getNumParams();
|
|
|
|
|
2011-01-06 22:09:01 +00:00
|
|
|
unsigned NumRequiredArgs = getNumParams();
|
|
|
|
|
|
|
|
// If the last parameter is a parameter pack, we don't need an argument for
|
|
|
|
// it.
|
|
|
|
if (NumRequiredArgs > 0 &&
|
|
|
|
getParamDecl(NumRequiredArgs - 1)->isParameterPack())
|
|
|
|
--NumRequiredArgs;
|
|
|
|
|
|
|
|
// If this parameter has a default argument, we don't need an argument for
|
|
|
|
// it.
|
|
|
|
while (NumRequiredArgs > 0 &&
|
|
|
|
getParamDecl(NumRequiredArgs-1)->hasDefaultArg())
|
2008-04-10 02:22:51 +00:00
|
|
|
--NumRequiredArgs;
|
|
|
|
|
2011-01-11 01:52:23 +00:00
|
|
|
// We might have parameter packs before the end. These can't be deduced,
|
|
|
|
// but they can still handle multiple arguments.
|
|
|
|
unsigned ArgIdx = NumRequiredArgs;
|
|
|
|
while (ArgIdx > 0) {
|
|
|
|
if (getParamDecl(ArgIdx - 1)->isParameterPack())
|
|
|
|
NumRequiredArgs = ArgIdx;
|
|
|
|
|
|
|
|
--ArgIdx;
|
|
|
|
}
|
|
|
|
|
2008-04-10 02:22:51 +00:00
|
|
|
return NumRequiredArgs;
|
|
|
|
}
|
|
|
|
|
2012-02-07 03:50:18 +00:00
|
|
|
static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
|
|
|
|
// Only consider file-scope declarations in this test.
|
|
|
|
if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Only consider explicit declarations; the presence of a builtin for a
|
|
|
|
// libcall shouldn't affect whether a definition is externally visible.
|
|
|
|
if (Redecl->isImplicit())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
|
|
|
|
return true; // Not an inline definition
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-18 05:26:13 +00:00
|
|
|
/// \brief For a function declaration in C or C++, determine whether this
|
|
|
|
/// declaration causes the definition to be externally visible.
|
|
|
|
///
|
2012-02-07 03:50:18 +00:00
|
|
|
/// Specifically, this determines if adding the current declaration to the set
|
|
|
|
/// of redeclarations of the given functions causes
|
|
|
|
/// isInlineDefinitionExternallyVisible to change from false to true.
|
2011-07-18 05:26:13 +00:00
|
|
|
bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
|
|
|
|
assert(!doesThisDeclarationHaveABody() &&
|
|
|
|
"Must have a declaration without a body.");
|
|
|
|
|
|
|
|
ASTContext &Context = getASTContext();
|
|
|
|
|
2012-03-11 07:00:24 +00:00
|
|
|
if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
|
2012-02-07 03:50:18 +00:00
|
|
|
// With GNU inlining, a declaration with 'inline' but not 'extern', forces
|
|
|
|
// an externally visible definition.
|
|
|
|
//
|
|
|
|
// FIXME: What happens if gnu_inline gets added on after the first
|
|
|
|
// declaration?
|
2013-04-03 19:27:57 +00:00
|
|
|
if (!isInlineSpecified() || getStorageClass() == SC_Extern)
|
2012-02-07 03:50:18 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
const FunctionDecl *Prev = this;
|
|
|
|
bool FoundBody = false;
|
|
|
|
while ((Prev = Prev->getPreviousDecl())) {
|
2013-05-15 07:37:26 +00:00
|
|
|
FoundBody |= Prev->Body.isValid();
|
2012-02-07 03:50:18 +00:00
|
|
|
|
|
|
|
if (Prev->Body) {
|
|
|
|
// If it's not the case that both 'inline' and 'extern' are
|
|
|
|
// specified on the definition, then it is always externally visible.
|
|
|
|
if (!Prev->isInlineSpecified() ||
|
2013-04-03 19:27:57 +00:00
|
|
|
Prev->getStorageClass() != SC_Extern)
|
2012-02-07 03:50:18 +00:00
|
|
|
return false;
|
|
|
|
} else if (Prev->isInlineSpecified() &&
|
2013-04-03 19:27:57 +00:00
|
|
|
Prev->getStorageClass() != SC_Extern) {
|
2012-02-07 03:50:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FoundBody;
|
|
|
|
}
|
|
|
|
|
2012-03-11 07:00:24 +00:00
|
|
|
if (Context.getLangOpts().CPlusPlus)
|
2011-07-18 05:26:13 +00:00
|
|
|
return false;
|
2012-02-07 03:50:18 +00:00
|
|
|
|
|
|
|
// C99 6.7.4p6:
|
|
|
|
// [...] If all of the file scope declarations for a function in a
|
|
|
|
// translation unit include the inline function specifier without extern,
|
|
|
|
// then the definition in that translation unit is an inline definition.
|
|
|
|
if (isInlineSpecified() && getStorageClass() != SC_Extern)
|
2011-07-18 05:26:13 +00:00
|
|
|
return false;
|
2012-02-07 03:50:18 +00:00
|
|
|
const FunctionDecl *Prev = this;
|
|
|
|
bool FoundBody = false;
|
|
|
|
while ((Prev = Prev->getPreviousDecl())) {
|
2013-05-15 07:37:26 +00:00
|
|
|
FoundBody |= Prev->Body.isValid();
|
2012-02-07 03:50:18 +00:00
|
|
|
if (RedeclForcesDefC99(Prev))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return FoundBody;
|
2011-07-18 05:26:13 +00:00
|
|
|
}
|
|
|
|
|
2013-01-25 00:08:28 +00:00
|
|
|
/// \brief For an inline function definition in C, or for a gnu_inline function
|
|
|
|
/// in C++, determine whether the definition will be externally visible.
|
2009-09-13 07:46:26 +00:00
|
|
|
///
|
|
|
|
/// Inline function definitions are always available for inlining optimizations.
|
|
|
|
/// However, depending on the language dialect, declaration specifiers, and
|
|
|
|
/// attributes, the definition of an inline function may or may not be
|
|
|
|
/// "externally" visible to other translation units in the program.
|
|
|
|
///
|
|
|
|
/// In C99, inline definitions are not externally visible by default. However,
|
2010-01-06 02:05:39 +00:00
|
|
|
/// if even one of the global-scope declarations is marked "extern inline", the
|
2009-09-13 07:46:26 +00:00
|
|
|
/// inline definition becomes externally visible (C99 6.7.4p6).
|
|
|
|
///
|
|
|
|
/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
|
|
|
|
/// definition, we use the GNU semantics for inline, which are nearly the
|
|
|
|
/// opposite of C99 semantics. In particular, "inline" by itself will create
|
|
|
|
/// an externally visible symbol, but "extern inline" will not create an
|
|
|
|
/// externally visible symbol.
|
|
|
|
bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
|
2011-05-06 20:44:56 +00:00
|
|
|
assert(doesThisDeclarationHaveABody() && "Must have the function definition");
|
2009-10-27 21:11:48 +00:00
|
|
|
assert(isInlined() && "Function must be inline");
|
2009-10-27 23:26:40 +00:00
|
|
|
ASTContext &Context = getASTContext();
|
2009-09-13 07:46:26 +00:00
|
|
|
|
2012-03-11 07:00:24 +00:00
|
|
|
if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
|
2012-02-07 03:50:18 +00:00
|
|
|
// Note: If you change the logic here, please change
|
|
|
|
// doesDeclarationForceExternallyVisibleDefinition as well.
|
|
|
|
//
|
2010-12-09 16:59:22 +00:00
|
|
|
// If it's not the case that both 'inline' and 'extern' are
|
|
|
|
// specified on the definition, then this inline definition is
|
|
|
|
// externally visible.
|
2013-04-03 19:27:57 +00:00
|
|
|
if (!(isInlineSpecified() && getStorageClass() == SC_Extern))
|
2010-12-09 16:59:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// If any declaration is 'inline' but not 'extern', then this definition
|
|
|
|
// is externally visible.
|
2009-09-13 07:46:26 +00:00
|
|
|
for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
|
|
|
|
Redecl != RedeclEnd;
|
|
|
|
++Redecl) {
|
2010-12-09 16:59:22 +00:00
|
|
|
if (Redecl->isInlineSpecified() &&
|
2013-04-03 19:27:57 +00:00
|
|
|
Redecl->getStorageClass() != SC_Extern)
|
2009-09-13 07:46:26 +00:00
|
|
|
return true;
|
2010-12-09 16:59:22 +00:00
|
|
|
}
|
2009-09-13 07:46:26 +00:00
|
|
|
|
2009-04-28 06:37:30 +00:00
|
|
|
return false;
|
2009-09-13 07:46:26 +00:00
|
|
|
}
|
2012-02-07 03:50:18 +00:00
|
|
|
|
2013-01-25 00:08:28 +00:00
|
|
|
// The rest of this function is C-only.
|
|
|
|
assert(!Context.getLangOpts().CPlusPlus &&
|
|
|
|
"should not use C inline rules in C++");
|
|
|
|
|
2009-09-13 07:46:26 +00:00
|
|
|
// C99 6.7.4p6:
|
|
|
|
// [...] If all of the file scope declarations for a function in a
|
|
|
|
// translation unit include the inline function specifier without extern,
|
|
|
|
// then the definition in that translation unit is an inline definition.
|
|
|
|
for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
|
|
|
|
Redecl != RedeclEnd;
|
|
|
|
++Redecl) {
|
2012-02-07 03:50:18 +00:00
|
|
|
if (RedeclForcesDefC99(*Redecl))
|
|
|
|
return true;
|
2009-09-13 07:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// C99 6.7.4p6:
|
|
|
|
// An inline definition does not provide an external definition for the
|
|
|
|
// function, and does not forbid an external definition in another
|
|
|
|
// translation unit.
|
2009-04-28 06:37:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-11-06 22:13:31 +00:00
|
|
|
/// getOverloadedOperator - Which C++ overloaded operator this
|
|
|
|
/// function represents, if any.
|
|
|
|
OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
|
Extend DeclarationName to support C++ overloaded operators, e.g.,
operator+, directly, using the same mechanism as all other special
names.
Removed the "special" identifiers for the overloaded operators from
the identifier table and IdentifierInfo data structure. IdentifierInfo
is back to representing only real identifiers.
Added a new Action, ActOnOperatorFunctionIdExpr, that builds an
expression from an parsed operator-function-id (e.g., "operator
+"). ActOnIdentifierExpr used to do this job, but
operator-function-ids are no longer represented by IdentifierInfo's.
Extended Declarator to store overloaded operator names.
Sema::GetNameForDeclarator now knows how to turn the operator
name into a DeclarationName for the overloaded operator.
Except for (perhaps) consolidating the functionality of
ActOnIdentifier, ActOnOperatorFunctionIdExpr, and
ActOnConversionFunctionExpr into a common routine that builds an
appropriate DeclRefExpr by looking up a DeclarationName, all of the
work on normalizing declaration names should be complete with this
commit.
llvm-svn: 59526
2008-11-18 14:39:36 +00:00
|
|
|
if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
|
|
|
|
return getDeclName().getCXXOverloadedOperator();
|
2008-11-06 22:13:31 +00:00
|
|
|
else
|
|
|
|
return OO_None;
|
|
|
|
}
|
|
|
|
|
2010-01-13 09:01:02 +00:00
|
|
|
/// getLiteralIdentifier - The literal suffix identifier this function
|
|
|
|
/// represents, if any.
|
|
|
|
const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
|
|
|
|
if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
|
|
|
|
return getDeclName().getCXXLiteralIdentifier();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-22 09:54:51 +00:00
|
|
|
FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
|
|
|
|
if (TemplateOrSpecialization.isNull())
|
|
|
|
return TK_NonTemplate;
|
|
|
|
if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
|
|
|
|
return TK_FunctionTemplate;
|
|
|
|
if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
|
|
|
|
return TK_MemberSpecialization;
|
|
|
|
if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
|
|
|
|
return TK_FunctionTemplateSpecialization;
|
|
|
|
if (TemplateOrSpecialization.is
|
|
|
|
<DependentFunctionTemplateSpecializationInfo*>())
|
|
|
|
return TK_DependentFunctionTemplateSpecialization;
|
|
|
|
|
2011-09-23 05:06:16 +00:00
|
|
|
llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
|
2010-06-22 09:54:51 +00:00
|
|
|
}
|
|
|
|
|
2009-10-07 23:56:10 +00:00
|
|
|
FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
|
2009-10-12 20:18:28 +00:00
|
|
|
if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
|
2009-10-07 23:56:10 +00:00
|
|
|
return cast<FunctionDecl>(Info->getInstantiatedFrom());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-09-08 19:31:22 +00:00
|
|
|
FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
|
|
|
|
FunctionDecl *FD,
|
2009-10-07 23:56:10 +00:00
|
|
|
TemplateSpecializationKind TSK) {
|
|
|
|
assert(TemplateOrSpecialization.isNull() &&
|
|
|
|
"Member function is already a specialization");
|
|
|
|
MemberSpecializationInfo *Info
|
2010-09-08 19:31:22 +00:00
|
|
|
= new (C) MemberSpecializationInfo(FD, TSK);
|
2009-10-07 23:56:10 +00:00
|
|
|
TemplateOrSpecialization = Info;
|
|
|
|
}
|
|
|
|
|
2009-10-27 20:53:28 +00:00
|
|
|
bool FunctionDecl::isImplicitlyInstantiable() const {
|
2010-05-17 17:34:56 +00:00
|
|
|
// If the function is invalid, it can't be implicitly instantiated.
|
|
|
|
if (isInvalidDecl())
|
2009-10-27 20:53:28 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (getTemplateSpecializationKind()) {
|
|
|
|
case TSK_Undeclared:
|
|
|
|
case TSK_ExplicitInstantiationDefinition:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case TSK_ImplicitInstantiation:
|
|
|
|
return true;
|
|
|
|
|
2011-08-14 03:52:19 +00:00
|
|
|
// It is possible to instantiate TSK_ExplicitSpecialization kind
|
|
|
|
// if the FunctionDecl has a class scope specialization pattern.
|
|
|
|
case TSK_ExplicitSpecialization:
|
|
|
|
return getClassScopeSpecializationPattern() != 0;
|
|
|
|
|
2009-10-27 20:53:28 +00:00
|
|
|
case TSK_ExplicitInstantiationDeclaration:
|
|
|
|
// Handled below.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the actual template from which we will instantiate.
|
|
|
|
const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
|
2010-07-07 11:31:19 +00:00
|
|
|
bool HasPattern = false;
|
2009-10-27 20:53:28 +00:00
|
|
|
if (PatternDecl)
|
2010-07-07 11:31:19 +00:00
|
|
|
HasPattern = PatternDecl->hasBody(PatternDecl);
|
2009-10-27 20:53:28 +00:00
|
|
|
|
|
|
|
// C++0x [temp.explicit]p9:
|
|
|
|
// Except for inline functions, other explicit instantiation declarations
|
|
|
|
// have the effect of suppressing the implicit instantiation of the entity
|
|
|
|
// to which they refer.
|
2010-07-07 11:31:19 +00:00
|
|
|
if (!HasPattern || !PatternDecl)
|
2009-10-27 20:53:28 +00:00
|
|
|
return true;
|
|
|
|
|
2009-10-27 21:11:48 +00:00
|
|
|
return PatternDecl->isInlined();
|
2011-12-01 00:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionDecl::isTemplateInstantiation() const {
|
|
|
|
switch (getTemplateSpecializationKind()) {
|
|
|
|
case TSK_Undeclared:
|
|
|
|
case TSK_ExplicitSpecialization:
|
|
|
|
return false;
|
|
|
|
case TSK_ImplicitInstantiation:
|
|
|
|
case TSK_ExplicitInstantiationDeclaration:
|
|
|
|
case TSK_ExplicitInstantiationDefinition:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
llvm_unreachable("All TSK values handled.");
|
|
|
|
}
|
2009-10-27 20:53:28 +00:00
|
|
|
|
|
|
|
FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
|
2011-08-14 03:52:19 +00:00
|
|
|
// Handle class scope explicit specialization special case.
|
|
|
|
if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
|
|
|
|
return getClassScopeSpecializationPattern();
|
|
|
|
|
2009-10-27 20:53:28 +00:00
|
|
|
if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
|
|
|
|
while (Primary->getInstantiatedFromMemberTemplate()) {
|
|
|
|
// If we have hit a point where the user provided a specialization of
|
|
|
|
// this template, we're done looking.
|
|
|
|
if (Primary->isMemberSpecialization())
|
|
|
|
break;
|
|
|
|
|
|
|
|
Primary = Primary->getInstantiatedFromMemberTemplate();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Primary->getTemplatedDecl();
|
|
|
|
}
|
|
|
|
|
|
|
|
return getInstantiatedFromMemberFunction();
|
|
|
|
}
|
|
|
|
|
2009-06-29 17:30:29 +00:00
|
|
|
FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
|
2009-09-09 15:08:12 +00:00
|
|
|
if (FunctionTemplateSpecializationInfo *Info
|
2009-06-29 17:30:29 +00:00
|
|
|
= TemplateOrSpecialization
|
|
|
|
.dyn_cast<FunctionTemplateSpecializationInfo*>()) {
|
2009-06-29 22:39:32 +00:00
|
|
|
return Info->Template.getPointer();
|
2009-06-29 17:30:29 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-14 03:52:19 +00:00
|
|
|
FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const {
|
|
|
|
return getASTContext().getClassScopeSpecializationPattern(this);
|
|
|
|
}
|
|
|
|
|
2009-06-29 17:30:29 +00:00
|
|
|
const TemplateArgumentList *
|
|
|
|
FunctionDecl::getTemplateSpecializationArgs() const {
|
2009-09-09 15:08:12 +00:00
|
|
|
if (FunctionTemplateSpecializationInfo *Info
|
2009-10-13 16:30:37 +00:00
|
|
|
= TemplateOrSpecialization
|
|
|
|
.dyn_cast<FunctionTemplateSpecializationInfo*>()) {
|
2009-06-29 17:30:29 +00:00
|
|
|
return Info->TemplateArguments;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-22 20:07:09 +00:00
|
|
|
const ASTTemplateArgumentListInfo *
|
2010-05-20 15:32:11 +00:00
|
|
|
FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
|
|
|
|
if (FunctionTemplateSpecializationInfo *Info
|
|
|
|
= TemplateOrSpecialization
|
|
|
|
.dyn_cast<FunctionTemplateSpecializationInfo*>()) {
|
|
|
|
return Info->TemplateArgumentsAsWritten;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
void
|
2010-09-08 19:31:22 +00:00
|
|
|
FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
|
|
|
|
FunctionTemplateDecl *Template,
|
2009-06-29 20:59:39 +00:00
|
|
|
const TemplateArgumentList *TemplateArgs,
|
2009-09-24 23:14:47 +00:00
|
|
|
void *InsertPos,
|
2010-05-20 15:32:11 +00:00
|
|
|
TemplateSpecializationKind TSK,
|
2010-07-05 10:37:55 +00:00
|
|
|
const TemplateArgumentListInfo *TemplateArgsAsWritten,
|
|
|
|
SourceLocation PointOfInstantiation) {
|
2009-09-24 23:14:47 +00:00
|
|
|
assert(TSK != TSK_Undeclared &&
|
|
|
|
"Must specify the type of function template specialization");
|
2009-09-09 15:08:12 +00:00
|
|
|
FunctionTemplateSpecializationInfo *Info
|
2009-06-29 17:30:29 +00:00
|
|
|
= TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
|
2009-06-26 00:10:03 +00:00
|
|
|
if (!Info)
|
2010-09-09 11:28:23 +00:00
|
|
|
Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
|
|
|
|
TemplateArgs,
|
|
|
|
TemplateArgsAsWritten,
|
|
|
|
PointOfInstantiation);
|
2009-06-26 00:10:03 +00:00
|
|
|
TemplateOrSpecialization = Info;
|
2012-03-28 14:34:23 +00:00
|
|
|
Template->addSpecialization(Info, InsertPos);
|
2009-06-26 00:10:03 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 09:05:18 +00:00
|
|
|
void
|
|
|
|
FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
|
|
|
|
const UnresolvedSetImpl &Templates,
|
|
|
|
const TemplateArgumentListInfo &TemplateArgs) {
|
|
|
|
assert(TemplateOrSpecialization.isNull());
|
|
|
|
size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
|
|
|
|
Size += Templates.size() * sizeof(FunctionTemplateDecl*);
|
2010-04-13 22:18:28 +00:00
|
|
|
Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
|
2010-04-08 09:05:18 +00:00
|
|
|
void *Buffer = Context.Allocate(Size);
|
|
|
|
DependentFunctionTemplateSpecializationInfo *Info =
|
|
|
|
new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
|
|
|
|
TemplateArgs);
|
|
|
|
TemplateOrSpecialization = Info;
|
|
|
|
}
|
|
|
|
|
|
|
|
DependentFunctionTemplateSpecializationInfo::
|
|
|
|
DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
|
|
|
|
const TemplateArgumentListInfo &TArgs)
|
|
|
|
: AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
|
|
|
|
|
|
|
|
d.NumTemplates = Ts.size();
|
|
|
|
d.NumArgs = TArgs.size();
|
|
|
|
|
|
|
|
FunctionTemplateDecl **TsArray =
|
|
|
|
const_cast<FunctionTemplateDecl**>(getTemplates());
|
|
|
|
for (unsigned I = 0, E = Ts.size(); I != E; ++I)
|
|
|
|
TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
|
|
|
|
|
|
|
|
TemplateArgumentLoc *ArgsArray =
|
|
|
|
const_cast<TemplateArgumentLoc*>(getTemplateArgs());
|
|
|
|
for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
|
|
|
|
new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
|
|
|
|
}
|
|
|
|
|
2009-09-04 22:48:11 +00:00
|
|
|
TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
|
2009-09-09 15:08:12 +00:00
|
|
|
// For a function template specialization, query the specialization
|
2009-09-04 22:48:11 +00:00
|
|
|
// information object.
|
2009-10-07 23:56:10 +00:00
|
|
|
FunctionTemplateSpecializationInfo *FTSInfo
|
2009-06-29 22:39:32 +00:00
|
|
|
= TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
|
2009-10-07 23:56:10 +00:00
|
|
|
if (FTSInfo)
|
|
|
|
return FTSInfo->getTemplateSpecializationKind();
|
2009-09-04 22:48:11 +00:00
|
|
|
|
2009-10-07 23:56:10 +00:00
|
|
|
MemberSpecializationInfo *MSInfo
|
|
|
|
= TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
|
|
|
|
if (MSInfo)
|
|
|
|
return MSInfo->getTemplateSpecializationKind();
|
|
|
|
|
|
|
|
return TSK_Undeclared;
|
2009-06-29 22:39:32 +00:00
|
|
|
}
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
void
|
2009-10-15 17:21:20 +00:00
|
|
|
FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
|
|
|
|
SourceLocation PointOfInstantiation) {
|
2009-10-07 23:56:10 +00:00
|
|
|
if (FunctionTemplateSpecializationInfo *FTSInfo
|
|
|
|
= TemplateOrSpecialization.dyn_cast<
|
2009-10-15 17:21:20 +00:00
|
|
|
FunctionTemplateSpecializationInfo*>()) {
|
2009-10-07 23:56:10 +00:00
|
|
|
FTSInfo->setTemplateSpecializationKind(TSK);
|
2009-10-15 17:21:20 +00:00
|
|
|
if (TSK != TSK_ExplicitSpecialization &&
|
|
|
|
PointOfInstantiation.isValid() &&
|
|
|
|
FTSInfo->getPointOfInstantiation().isInvalid())
|
|
|
|
FTSInfo->setPointOfInstantiation(PointOfInstantiation);
|
|
|
|
} else if (MemberSpecializationInfo *MSInfo
|
|
|
|
= TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
|
2009-10-07 23:56:10 +00:00
|
|
|
MSInfo->setTemplateSpecializationKind(TSK);
|
2009-10-15 17:21:20 +00:00
|
|
|
if (TSK != TSK_ExplicitSpecialization &&
|
|
|
|
PointOfInstantiation.isValid() &&
|
|
|
|
MSInfo->getPointOfInstantiation().isInvalid())
|
|
|
|
MSInfo->setPointOfInstantiation(PointOfInstantiation);
|
|
|
|
} else
|
2011-09-23 05:06:16 +00:00
|
|
|
llvm_unreachable("Function cannot have a template specialization kind");
|
2009-06-29 22:39:32 +00:00
|
|
|
}
|
|
|
|
|
2009-10-15 17:21:20 +00:00
|
|
|
SourceLocation FunctionDecl::getPointOfInstantiation() const {
|
|
|
|
if (FunctionTemplateSpecializationInfo *FTSInfo
|
|
|
|
= TemplateOrSpecialization.dyn_cast<
|
|
|
|
FunctionTemplateSpecializationInfo*>())
|
|
|
|
return FTSInfo->getPointOfInstantiation();
|
|
|
|
else if (MemberSpecializationInfo *MSInfo
|
|
|
|
= TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
|
|
|
|
return MSInfo->getPointOfInstantiation();
|
|
|
|
|
|
|
|
return SourceLocation();
|
|
|
|
}
|
|
|
|
|
2009-09-11 20:15:17 +00:00
|
|
|
bool FunctionDecl::isOutOfLine() const {
|
2011-02-19 18:51:44 +00:00
|
|
|
if (Decl::isOutOfLine())
|
2009-09-11 20:15:17 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// If this function was instantiated from a member function of a
|
|
|
|
// class template, check whether that member function was defined out-of-line.
|
|
|
|
if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
|
|
|
|
const FunctionDecl *Definition;
|
2010-07-07 11:31:19 +00:00
|
|
|
if (FD->hasBody(Definition))
|
2009-09-11 20:15:17 +00:00
|
|
|
return Definition->isOutOfLine();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this function was instantiated from a function template,
|
|
|
|
// check whether that function template was defined out-of-line.
|
|
|
|
if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
|
|
|
|
const FunctionDecl *Definition;
|
2010-07-07 11:31:19 +00:00
|
|
|
if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
|
2009-09-11 20:15:17 +00:00
|
|
|
return Definition->isOutOfLine();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-08 16:41:52 +00:00
|
|
|
SourceRange FunctionDecl::getSourceRange() const {
|
|
|
|
return SourceRange(getOuterLocStart(), EndRangeLoc);
|
|
|
|
}
|
|
|
|
|
2012-01-18 02:45:01 +00:00
|
|
|
unsigned FunctionDecl::getMemoryFunctionKind() const {
|
2012-01-13 21:52:01 +00:00
|
|
|
IdentifierInfo *FnInfo = getIdentifier();
|
|
|
|
|
|
|
|
if (!FnInfo)
|
2012-01-17 00:37:07 +00:00
|
|
|
return 0;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
// Builtin handling.
|
|
|
|
switch (getBuiltinID()) {
|
|
|
|
case Builtin::BI__builtin_memset:
|
|
|
|
case Builtin::BI__builtin___memset_chk:
|
|
|
|
case Builtin::BImemset:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemset;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_memcpy:
|
|
|
|
case Builtin::BI__builtin___memcpy_chk:
|
|
|
|
case Builtin::BImemcpy:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemcpy;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_memmove:
|
|
|
|
case Builtin::BI__builtin___memmove_chk:
|
|
|
|
case Builtin::BImemmove:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemmove;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BIstrlcpy:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrlcpy;
|
2012-01-13 21:52:01 +00:00
|
|
|
case Builtin::BIstrlcat:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrlcat;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_memcmp:
|
2012-01-17 00:37:07 +00:00
|
|
|
case Builtin::BImemcmp:
|
|
|
|
return Builtin::BImemcmp;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_strncpy:
|
|
|
|
case Builtin::BI__builtin___strncpy_chk:
|
|
|
|
case Builtin::BIstrncpy:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrncpy;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_strncmp:
|
2012-01-17 00:37:07 +00:00
|
|
|
case Builtin::BIstrncmp:
|
|
|
|
return Builtin::BIstrncmp;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_strncasecmp:
|
2012-01-17 00:37:07 +00:00
|
|
|
case Builtin::BIstrncasecmp:
|
|
|
|
return Builtin::BIstrncasecmp;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_strncat:
|
2012-02-01 19:08:57 +00:00
|
|
|
case Builtin::BI__builtin___strncat_chk:
|
2012-01-13 21:52:01 +00:00
|
|
|
case Builtin::BIstrncat:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrncat;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_strndup:
|
|
|
|
case Builtin::BIstrndup:
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrndup;
|
2012-01-13 21:52:01 +00:00
|
|
|
|
2012-02-01 19:08:57 +00:00
|
|
|
case Builtin::BI__builtin_strlen:
|
|
|
|
case Builtin::BIstrlen:
|
|
|
|
return Builtin::BIstrlen;
|
|
|
|
|
2012-01-13 21:52:01 +00:00
|
|
|
default:
|
2013-02-14 01:47:04 +00:00
|
|
|
if (isExternC()) {
|
2012-01-13 21:52:01 +00:00
|
|
|
if (FnInfo->isStr("memset"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemset;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("memcpy"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemcpy;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("memmove"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemmove;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("memcmp"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BImemcmp;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("strncpy"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrncpy;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("strncmp"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrncmp;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("strncasecmp"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrncasecmp;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("strncat"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrncat;
|
2012-01-13 21:52:01 +00:00
|
|
|
else if (FnInfo->isStr("strndup"))
|
2012-01-17 00:37:07 +00:00
|
|
|
return Builtin::BIstrndup;
|
2012-02-01 19:08:57 +00:00
|
|
|
else if (FnInfo->isStr("strlen"))
|
|
|
|
return Builtin::BIstrlen;
|
2012-01-13 21:52:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-01-17 00:37:07 +00:00
|
|
|
return 0;
|
2012-01-13 21:52:01 +00:00
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FieldDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-01-12 09:06:06 +00:00
|
|
|
FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
|
2011-03-08 08:55:46 +00:00
|
|
|
SourceLocation StartLoc, SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id, QualType T,
|
2011-06-11 17:19:42 +00:00
|
|
|
TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
|
2012-06-10 03:12:00 +00:00
|
|
|
InClassInitStyle InitStyle) {
|
2011-03-08 08:55:46 +00:00
|
|
|
return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
|
2012-06-10 03:12:00 +00:00
|
|
|
BW, Mutable, InitStyle);
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FieldDecl));
|
|
|
|
return new (Mem) FieldDecl(Field, 0, SourceLocation(), SourceLocation(),
|
2012-06-10 03:12:00 +00:00
|
|
|
0, QualType(), 0, 0, false, ICIS_NoInit);
|
2012-01-05 21:55:30 +00:00
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
bool FieldDecl::isAnonymousStructOrUnion() const {
|
|
|
|
if (!isImplicit() || getDeclName())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (const RecordType *Record = getType()->getAs<RecordType>())
|
|
|
|
return Record->getDecl()->isAnonymousStructOrUnion();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-10 18:28:20 +00:00
|
|
|
unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
|
|
|
|
assert(isBitField() && "not a bitfield");
|
|
|
|
Expr *BitWidth = InitializerOrBitWidth.getPointer();
|
|
|
|
return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue();
|
|
|
|
}
|
|
|
|
|
2011-01-20 07:57:12 +00:00
|
|
|
unsigned FieldDecl::getFieldIndex() const {
|
|
|
|
if (CachedFieldIndex) return CachedFieldIndex - 1;
|
|
|
|
|
2011-11-10 06:34:14 +00:00
|
|
|
unsigned Index = 0;
|
2011-04-28 22:49:46 +00:00
|
|
|
const RecordDecl *RD = getParent();
|
2011-11-10 06:34:14 +00:00
|
|
|
|
|
|
|
for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
|
2013-06-26 20:50:34 +00:00
|
|
|
I != E; ++I, ++Index)
|
2012-04-30 02:36:29 +00:00
|
|
|
I->CachedFieldIndex = Index + 1;
|
2011-01-20 07:57:12 +00:00
|
|
|
|
2011-11-10 06:34:14 +00:00
|
|
|
assert(CachedFieldIndex && "failed to find field in parent");
|
|
|
|
return CachedFieldIndex - 1;
|
2011-01-20 07:57:12 +00:00
|
|
|
}
|
|
|
|
|
2011-03-08 11:07:11 +00:00
|
|
|
SourceRange FieldDecl::getSourceRange() const {
|
2011-08-05 08:02:55 +00:00
|
|
|
if (const Expr *E = InitializerOrBitWidth.getPointer())
|
|
|
|
return SourceRange(getInnerLocStart(), E->getLocEnd());
|
2011-03-08 16:41:52 +00:00
|
|
|
return DeclaratorDecl::getSourceRange();
|
2011-03-08 11:07:11 +00:00
|
|
|
}
|
|
|
|
|
2012-07-02 20:35:48 +00:00
|
|
|
void FieldDecl::setBitWidth(Expr *Width) {
|
|
|
|
assert(!InitializerOrBitWidth.getPointer() && !hasInClassInitializer() &&
|
|
|
|
"bit width or initializer already set");
|
|
|
|
InitializerOrBitWidth.setPointer(Width);
|
|
|
|
}
|
|
|
|
|
2011-06-11 17:19:42 +00:00
|
|
|
void FieldDecl::setInClassInitializer(Expr *Init) {
|
2012-06-10 03:12:00 +00:00
|
|
|
assert(!InitializerOrBitWidth.getPointer() && hasInClassInitializer() &&
|
2011-06-11 17:19:42 +00:00
|
|
|
"bit width or initializer already set");
|
|
|
|
InitializerOrBitWidth.setPointer(Init);
|
|
|
|
}
|
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-05 17:16:31 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-01-07 00:43:41 +00:00
|
|
|
// TagDecl Implementation
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-05 17:16:31 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-07-06 18:42:40 +00:00
|
|
|
SourceLocation TagDecl::getOuterLocStart() const {
|
|
|
|
return getTemplateOrInnerLocStart(this);
|
|
|
|
}
|
|
|
|
|
2009-07-14 03:17:17 +00:00
|
|
|
SourceRange TagDecl::getSourceRange() const {
|
|
|
|
SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
|
2010-07-06 18:42:40 +00:00
|
|
|
return SourceRange(getOuterLocStart(), E);
|
2009-07-14 03:17:17 +00:00
|
|
|
}
|
|
|
|
|
2009-07-18 00:34:07 +00:00
|
|
|
TagDecl* TagDecl::getCanonicalDecl() {
|
2009-07-29 23:36:44 +00:00
|
|
|
return getFirstDeclaration();
|
2009-07-18 00:34:07 +00:00
|
|
|
}
|
|
|
|
|
2013-03-12 21:06:00 +00:00
|
|
|
void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
|
|
|
|
TypedefNameDeclOrQualifier = TDD;
|
2010-05-19 18:39:18 +00:00
|
|
|
if (TypeForDecl)
|
2013-03-14 03:07:35 +00:00
|
|
|
assert(TypeForDecl->isLinkageValid());
|
|
|
|
assert(isLinkageValid());
|
2010-05-19 18:39:18 +00:00
|
|
|
}
|
|
|
|
|
2009-01-17 00:42:38 +00:00
|
|
|
void TagDecl::startDefinition() {
|
2010-08-02 18:27:05 +00:00
|
|
|
IsBeingDefined = true;
|
2010-02-04 22:26:26 +00:00
|
|
|
|
2012-11-14 01:52:05 +00:00
|
|
|
if (CXXRecordDecl *D = dyn_cast<CXXRecordDecl>(this)) {
|
2010-02-04 22:26:26 +00:00
|
|
|
struct CXXRecordDecl::DefinitionData *Data =
|
|
|
|
new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
|
2010-03-26 21:56:38 +00:00
|
|
|
for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I)
|
|
|
|
cast<CXXRecordDecl>(*I)->DefinitionData = Data;
|
2010-02-04 22:26:26 +00:00
|
|
|
}
|
2009-01-17 00:42:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TagDecl::completeDefinition() {
|
2010-02-05 01:33:36 +00:00
|
|
|
assert((!isa<CXXRecordDecl>(this) ||
|
|
|
|
cast<CXXRecordDecl>(this)->hasDefinition()) &&
|
|
|
|
"definition completed but not started");
|
|
|
|
|
2011-10-07 06:10:15 +00:00
|
|
|
IsCompleteDefinition = true;
|
2010-08-02 18:27:05 +00:00
|
|
|
IsBeingDefined = false;
|
2010-10-24 17:26:50 +00:00
|
|
|
|
|
|
|
if (ASTMutationListener *L = getASTMutationListener())
|
|
|
|
L->CompletedTagDefinition(this);
|
2009-01-17 00:42:38 +00:00
|
|
|
}
|
|
|
|
|
2011-10-07 06:10:15 +00:00
|
|
|
TagDecl *TagDecl::getDefinition() const {
|
|
|
|
if (isCompleteDefinition())
|
2009-07-29 23:36:44 +00:00
|
|
|
return const_cast<TagDecl *>(this);
|
Ensure that type definitions present in just-loaded modules are
visible.
The basic problem here is that a given translation unit can use
forward declarations to form pointers to a given type, say,
class X;
X *x;
and then import a module that includes a definition of X:
import XDef;
We will then fail when attempting to access a member of X, e.g.,
x->method()
because the AST reader did not know to look for a default of a class
named X within the new module.
This implementation is a bit of a C-centric hack, because the only
definitions that can have this property are enums, structs, unions,
Objective-C classes, and Objective-C protocols, and all of those are
either visible at the top-level or can't be defined later. Hence, we
can use the out-of-date-ness of the name and the identifier-update
mechanism to force the update.
In C++, we will not be so lucky, and will need a more advanced
solution, because the definitions could be in namespaces defined in
two different modules, e.g.,
// module 1
namespace N { struct X; }
// module 2
namespace N { struct X { /* ... */ }; }
One possible implementation here is for C++ to extend the information
associated with each identifier table to include the declaration IDs
of any definitions associated with that name, regardless of
context. We would have to eagerly load those definitions.
llvm-svn: 174794
2013-02-09 01:35:03 +00:00
|
|
|
|
|
|
|
// If it's possible for us to have an out-of-date definition, check now.
|
|
|
|
if (MayHaveOutOfDateDef) {
|
|
|
|
if (IdentifierInfo *II = getIdentifier()) {
|
|
|
|
if (II->isOutOfDate()) {
|
|
|
|
updateOutOfDate(*II);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-19 21:54:32 +00:00
|
|
|
if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
|
|
|
|
return CXXRD->getDefinition();
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
for (redecl_iterator R = redecls_begin(), REnd = redecls_end();
|
2009-07-29 23:36:44 +00:00
|
|
|
R != REnd; ++R)
|
2011-10-07 06:10:15 +00:00
|
|
|
if (R->isCompleteDefinition())
|
2009-07-29 23:36:44 +00:00
|
|
|
return *R;
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2009-07-29 23:36:44 +00:00
|
|
|
return 0;
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-05 17:16:31 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 02:25:35 +00:00
|
|
|
void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
|
|
|
|
if (QualifierLoc) {
|
2010-03-15 10:12:16 +00:00
|
|
|
// Make sure the extended qualifier info is allocated.
|
|
|
|
if (!hasExtInfo())
|
2011-04-15 14:24:37 +00:00
|
|
|
TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
|
2010-03-15 10:12:16 +00:00
|
|
|
// Set qualifier info.
|
2011-02-25 02:25:35 +00:00
|
|
|
getExtInfo()->QualifierLoc = QualifierLoc;
|
2011-08-17 23:08:45 +00:00
|
|
|
} else {
|
2010-03-15 10:12:16 +00:00
|
|
|
// Here Qualifier == 0, i.e., we are removing the qualifier (if any).
|
|
|
|
if (hasExtInfo()) {
|
2011-03-18 15:16:37 +00:00
|
|
|
if (getExtInfo()->NumTemplParamLists == 0) {
|
|
|
|
getASTContext().Deallocate(getExtInfo());
|
2011-04-15 14:24:37 +00:00
|
|
|
TypedefNameDeclOrQualifier = (TypedefNameDecl*) 0;
|
2011-03-18 15:16:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
getExtInfo()->QualifierLoc = QualifierLoc;
|
2010-03-15 10:12:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-18 15:16:37 +00:00
|
|
|
void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
|
|
|
|
unsigned NumTPLists,
|
|
|
|
TemplateParameterList **TPLists) {
|
|
|
|
assert(NumTPLists > 0);
|
|
|
|
// Make sure the extended decl info is allocated.
|
|
|
|
if (!hasExtInfo())
|
|
|
|
// Allocate external info struct.
|
2011-04-15 14:24:37 +00:00
|
|
|
TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
|
2011-03-18 15:16:37 +00:00
|
|
|
// Set the template parameter lists info.
|
|
|
|
getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
|
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// EnumDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void EnumDecl::anchor() { }
|
|
|
|
|
2011-03-09 14:09:51 +00:00
|
|
|
EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation StartLoc, SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id,
|
2010-12-03 18:54:17 +00:00
|
|
|
EnumDecl *PrevDecl, bool IsScoped,
|
|
|
|
bool IsScopedUsingClassTag, bool IsFixed) {
|
2011-03-09 14:09:51 +00:00
|
|
|
EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl,
|
2010-12-03 18:54:17 +00:00
|
|
|
IsScoped, IsScopedUsingClassTag, IsFixed);
|
Ensure that type definitions present in just-loaded modules are
visible.
The basic problem here is that a given translation unit can use
forward declarations to form pointers to a given type, say,
class X;
X *x;
and then import a module that includes a definition of X:
import XDef;
We will then fail when attempting to access a member of X, e.g.,
x->method()
because the AST reader did not know to look for a default of a class
named X within the new module.
This implementation is a bit of a C-centric hack, because the only
definitions that can have this property are enums, structs, unions,
Objective-C classes, and Objective-C protocols, and all of those are
either visible at the top-level or can't be defined later. Hence, we
can use the out-of-date-ness of the name and the identifier-update
mechanism to force the update.
In C++, we will not be so lucky, and will need a more advanced
solution, because the definitions could be in namespaces defined in
two different modules, e.g.,
// module 1
namespace N { struct X; }
// module 2
namespace N { struct X { /* ... */ }; }
One possible implementation here is for C++ to extend the information
associated with each identifier table to include the declaration IDs
of any definitions associated with that name, regardless of
context. We would have to eagerly load those definitions.
llvm-svn: 174794
2013-02-09 01:35:03 +00:00
|
|
|
Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
|
2010-01-26 22:01:41 +00:00
|
|
|
C.getTypeDeclType(Enum, PrevDecl);
|
|
|
|
return Enum;
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumDecl));
|
Ensure that type definitions present in just-loaded modules are
visible.
The basic problem here is that a given translation unit can use
forward declarations to form pointers to a given type, say,
class X;
X *x;
and then import a module that includes a definition of X:
import XDef;
We will then fail when attempting to access a member of X, e.g.,
x->method()
because the AST reader did not know to look for a default of a class
named X within the new module.
This implementation is a bit of a C-centric hack, because the only
definitions that can have this property are enums, structs, unions,
Objective-C classes, and Objective-C protocols, and all of those are
either visible at the top-level or can't be defined later. Hence, we
can use the out-of-date-ness of the name and the identifier-update
mechanism to force the update.
In C++, we will not be so lucky, and will need a more advanced
solution, because the definitions could be in namespaces defined in
two different modules, e.g.,
// module 1
namespace N { struct X; }
// module 2
namespace N { struct X { /* ... */ }; }
One possible implementation here is for C++ to extend the information
associated with each identifier table to include the declaration IDs
of any definitions associated with that name, regardless of
context. We would have to eagerly load those definitions.
llvm-svn: 174794
2013-02-09 01:35:03 +00:00
|
|
|
EnumDecl *Enum = new (Mem) EnumDecl(0, SourceLocation(), SourceLocation(),
|
|
|
|
0, 0, false, false, false);
|
|
|
|
Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
|
|
|
|
return Enum;
|
2010-07-02 11:54:55 +00:00
|
|
|
}
|
|
|
|
|
2010-02-11 01:19:42 +00:00
|
|
|
void EnumDecl::completeDefinition(QualType NewType,
|
2010-05-06 08:49:23 +00:00
|
|
|
QualType NewPromotionType,
|
|
|
|
unsigned NumPositiveBits,
|
|
|
|
unsigned NumNegativeBits) {
|
2011-10-07 06:10:15 +00:00
|
|
|
assert(!isCompleteDefinition() && "Cannot redefine enums!");
|
2010-10-08 23:50:27 +00:00
|
|
|
if (!IntegerType)
|
|
|
|
IntegerType = NewType.getTypePtr();
|
2010-01-26 22:01:41 +00:00
|
|
|
PromotionType = NewPromotionType;
|
2010-05-06 08:49:23 +00:00
|
|
|
setNumPositiveBits(NumPositiveBits);
|
|
|
|
setNumNegativeBits(NumNegativeBits);
|
2010-01-26 22:01:41 +00:00
|
|
|
TagDecl::completeDefinition();
|
|
|
|
}
|
|
|
|
|
2012-03-23 03:33:32 +00:00
|
|
|
TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
|
|
|
|
if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
|
|
|
|
return MSI->getTemplateSpecializationKind();
|
|
|
|
|
|
|
|
return TSK_Undeclared;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
|
|
|
|
SourceLocation PointOfInstantiation) {
|
|
|
|
MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
|
|
|
|
assert(MSI && "Not an instantiated member enumeration?");
|
|
|
|
MSI->setTemplateSpecializationKind(TSK);
|
|
|
|
if (TSK != TSK_ExplicitSpecialization &&
|
|
|
|
PointOfInstantiation.isValid() &&
|
|
|
|
MSI->getPointOfInstantiation().isInvalid())
|
|
|
|
MSI->setPointOfInstantiation(PointOfInstantiation);
|
|
|
|
}
|
|
|
|
|
2012-03-14 23:13:10 +00:00
|
|
|
EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
|
|
|
|
if (SpecializationInfo)
|
|
|
|
return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
|
|
|
|
TemplateSpecializationKind TSK) {
|
|
|
|
assert(!SpecializationInfo && "Member enum is already a specialization");
|
|
|
|
SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
|
|
|
|
}
|
|
|
|
|
2008-03-31 00:36:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// RecordDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
2007-01-25 04:52:46 +00:00
|
|
|
|
2011-03-09 14:09:51 +00:00
|
|
|
RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC,
|
|
|
|
SourceLocation StartLoc, SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id, RecordDecl *PrevDecl)
|
|
|
|
: TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
|
2008-09-02 21:12:32 +00:00
|
|
|
HasFlexibleArrayMember = false;
|
2009-01-07 00:43:41 +00:00
|
|
|
AnonymousStructOrUnion = false;
|
2009-07-08 01:18:33 +00:00
|
|
|
HasObjectMember = false;
|
2013-01-25 23:57:05 +00:00
|
|
|
HasVolatileMember = false;
|
2010-10-14 20:14:34 +00:00
|
|
|
LoadedFieldsFromExternalStorage = false;
|
2008-09-02 21:12:32 +00:00
|
|
|
assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
|
|
|
|
}
|
|
|
|
|
2011-01-12 09:06:06 +00:00
|
|
|
RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
|
2011-03-09 14:09:51 +00:00
|
|
|
SourceLocation StartLoc, SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id, RecordDecl* PrevDecl) {
|
|
|
|
RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id,
|
|
|
|
PrevDecl);
|
Ensure that type definitions present in just-loaded modules are
visible.
The basic problem here is that a given translation unit can use
forward declarations to form pointers to a given type, say,
class X;
X *x;
and then import a module that includes a definition of X:
import XDef;
We will then fail when attempting to access a member of X, e.g.,
x->method()
because the AST reader did not know to look for a default of a class
named X within the new module.
This implementation is a bit of a C-centric hack, because the only
definitions that can have this property are enums, structs, unions,
Objective-C classes, and Objective-C protocols, and all of those are
either visible at the top-level or can't be defined later. Hence, we
can use the out-of-date-ness of the name and the identifier-update
mechanism to force the update.
In C++, we will not be so lucky, and will need a more advanced
solution, because the definitions could be in namespaces defined in
two different modules, e.g.,
// module 1
namespace N { struct X; }
// module 2
namespace N { struct X { /* ... */ }; }
One possible implementation here is for C++ to extend the information
associated with each identifier table to include the declaration IDs
of any definitions associated with that name, regardless of
context. We would have to eagerly load those definitions.
llvm-svn: 174794
2013-02-09 01:35:03 +00:00
|
|
|
R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
|
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-05 17:16:31 +00:00
|
|
|
C.getTypeDeclType(R, PrevDecl);
|
|
|
|
return R;
|
2008-09-02 21:12:32 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(RecordDecl));
|
Ensure that type definitions present in just-loaded modules are
visible.
The basic problem here is that a given translation unit can use
forward declarations to form pointers to a given type, say,
class X;
X *x;
and then import a module that includes a definition of X:
import XDef;
We will then fail when attempting to access a member of X, e.g.,
x->method()
because the AST reader did not know to look for a default of a class
named X within the new module.
This implementation is a bit of a C-centric hack, because the only
definitions that can have this property are enums, structs, unions,
Objective-C classes, and Objective-C protocols, and all of those are
either visible at the top-level or can't be defined later. Hence, we
can use the out-of-date-ness of the name and the identifier-update
mechanism to force the update.
In C++, we will not be so lucky, and will need a more advanced
solution, because the definitions could be in namespaces defined in
two different modules, e.g.,
// module 1
namespace N { struct X; }
// module 2
namespace N { struct X { /* ... */ }; }
One possible implementation here is for C++ to extend the information
associated with each identifier table to include the declaration IDs
of any definitions associated with that name, regardless of
context. We would have to eagerly load those definitions.
llvm-svn: 174794
2013-02-09 01:35:03 +00:00
|
|
|
RecordDecl *R = new (Mem) RecordDecl(Record, TTK_Struct, 0, SourceLocation(),
|
|
|
|
SourceLocation(), 0, 0);
|
|
|
|
R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
|
|
|
|
return R;
|
2010-07-02 11:54:55 +00:00
|
|
|
}
|
|
|
|
|
2009-03-25 15:59:44 +00:00
|
|
|
bool RecordDecl::isInjectedClassName() const {
|
2009-09-09 15:08:12 +00:00
|
|
|
return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
|
2009-03-25 15:59:44 +00:00
|
|
|
cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
|
|
|
|
}
|
|
|
|
|
2010-10-14 20:14:34 +00:00
|
|
|
RecordDecl::field_iterator RecordDecl::field_begin() const {
|
|
|
|
if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
|
|
|
|
LoadFieldsFromExternalStorage();
|
|
|
|
|
|
|
|
return field_iterator(decl_iterator(FirstDecl));
|
|
|
|
}
|
|
|
|
|
2011-02-19 18:51:44 +00:00
|
|
|
/// completeDefinition - Notes that the definition of this type is now
|
|
|
|
/// complete.
|
|
|
|
void RecordDecl::completeDefinition() {
|
2011-10-07 06:10:15 +00:00
|
|
|
assert(!isCompleteDefinition() && "Cannot redefine record!");
|
2011-02-19 18:51:44 +00:00
|
|
|
TagDecl::completeDefinition();
|
|
|
|
}
|
|
|
|
|
2012-10-12 23:29:20 +00:00
|
|
|
/// isMsStruct - Get whether or not this record uses ms_struct layout.
|
|
|
|
/// This which can be turned on with an attribute, pragma, or the
|
|
|
|
/// -mms-bitfields command-line option.
|
|
|
|
bool RecordDecl::isMsStruct(const ASTContext &C) const {
|
|
|
|
return hasAttr<MsStructAttr>() || C.getLangOpts().MSBitfields == 1;
|
|
|
|
}
|
|
|
|
|
2012-09-10 22:04:22 +00:00
|
|
|
static bool isFieldOrIndirectField(Decl::Kind K) {
|
|
|
|
return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K);
|
|
|
|
}
|
|
|
|
|
2010-10-14 20:14:34 +00:00
|
|
|
void RecordDecl::LoadFieldsFromExternalStorage() const {
|
|
|
|
ExternalASTSource *Source = getASTContext().getExternalSource();
|
|
|
|
assert(hasExternalLexicalStorage() && Source && "No external storage?");
|
|
|
|
|
|
|
|
// Notify that we have a RecordDecl doing some initialization.
|
|
|
|
ExternalASTSource::Deserializing TheFields(Source);
|
|
|
|
|
2011-07-23 10:55:15 +00:00
|
|
|
SmallVector<Decl*, 64> Decls;
|
2011-07-15 21:46:17 +00:00
|
|
|
LoadedFieldsFromExternalStorage = true;
|
2012-09-10 22:04:22 +00:00
|
|
|
switch (Source->FindExternalLexicalDecls(this, isFieldOrIndirectField,
|
|
|
|
Decls)) {
|
2011-07-15 21:46:17 +00:00
|
|
|
case ELR_Success:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELR_AlreadyLoaded:
|
|
|
|
case ELR_Failure:
|
2010-10-14 20:14:34 +00:00
|
|
|
return;
|
2011-07-15 21:46:17 +00:00
|
|
|
}
|
2010-10-14 20:14:34 +00:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// Check that all decls we got were FieldDecls.
|
|
|
|
for (unsigned i=0, e=Decls.size(); i != e; ++i)
|
2012-09-10 22:04:22 +00:00
|
|
|
assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i]));
|
2010-10-14 20:14:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (Decls.empty())
|
|
|
|
return;
|
|
|
|
|
2011-10-07 21:55:43 +00:00
|
|
|
llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
|
|
|
|
/*FieldsAlreadyLoaded=*/false);
|
2010-10-14 20:14:34 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 17:01:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// BlockDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-12 19:30:44 +00:00
|
|
|
void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) {
|
2009-03-13 16:56:44 +00:00
|
|
|
assert(ParamInfo == 0 && "Already has param info!");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2009-03-13 16:56:44 +00:00
|
|
|
// Zero params -> null pointer.
|
2011-09-21 18:16:56 +00:00
|
|
|
if (!NewParamInfo.empty()) {
|
|
|
|
NumParams = NewParamInfo.size();
|
|
|
|
ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
|
|
|
|
std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
|
2009-03-13 16:56:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-07 10:33:21 +00:00
|
|
|
void BlockDecl::setCaptures(ASTContext &Context,
|
|
|
|
const Capture *begin,
|
|
|
|
const Capture *end,
|
|
|
|
bool capturesCXXThis) {
|
2011-02-02 13:00:07 +00:00
|
|
|
CapturesCXXThis = capturesCXXThis;
|
|
|
|
|
|
|
|
if (begin == end) {
|
2011-02-07 10:33:21 +00:00
|
|
|
NumCaptures = 0;
|
|
|
|
Captures = 0;
|
2011-02-02 13:00:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-07 10:33:21 +00:00
|
|
|
NumCaptures = end - begin;
|
|
|
|
|
|
|
|
// Avoid new Capture[] because we don't want to provide a default
|
|
|
|
// constructor.
|
|
|
|
size_t allocationSize = NumCaptures * sizeof(Capture);
|
|
|
|
void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
|
|
|
|
memcpy(buffer, begin, allocationSize);
|
|
|
|
Captures = static_cast<Capture*>(buffer);
|
2009-03-13 16:56:44 +00:00
|
|
|
}
|
2010-01-26 22:01:41 +00:00
|
|
|
|
2011-06-15 22:51:16 +00:00
|
|
|
bool BlockDecl::capturesVariable(const VarDecl *variable) const {
|
|
|
|
for (capture_const_iterator
|
|
|
|
i = capture_begin(), e = capture_end(); i != e; ++i)
|
|
|
|
// Only auto vars can be captured, so no redeclaration worries.
|
|
|
|
if (i->getVariable() == variable)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-21 16:27:07 +00:00
|
|
|
SourceRange BlockDecl::getSourceRange() const {
|
|
|
|
return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
|
|
|
|
}
|
2010-01-26 22:01:41 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Other Decl Allocation/Deallocation Method Implementations
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void TranslationUnitDecl::anchor() { }
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
|
|
|
|
return new (C) TranslationUnitDecl(C);
|
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void LabelDecl::anchor() { }
|
|
|
|
|
2011-02-17 07:39:24 +00:00
|
|
|
LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
|
2011-03-05 18:21:20 +00:00
|
|
|
SourceLocation IdentL, IdentifierInfo *II) {
|
|
|
|
return new (C) LabelDecl(DC, IdentL, II, 0, IdentL);
|
|
|
|
}
|
|
|
|
|
|
|
|
LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation IdentL, IdentifierInfo *II,
|
|
|
|
SourceLocation GnuLabelL) {
|
|
|
|
assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
|
|
|
|
return new (C) LabelDecl(DC, IdentL, II, 0, GnuLabelL);
|
2011-02-17 07:39:24 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LabelDecl));
|
|
|
|
return new (Mem) LabelDecl(0, SourceLocation(), 0, 0, SourceLocation());
|
2010-10-27 19:49:05 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void ValueDecl::anchor() { }
|
|
|
|
|
2012-12-01 15:09:41 +00:00
|
|
|
bool ValueDecl::isWeak() const {
|
|
|
|
for (attr_iterator I = attr_begin(), E = attr_end(); I != E; ++I)
|
|
|
|
if (isa<WeakAttr>(*I) || isa<WeakRefAttr>(*I))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return isWeakImported();
|
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void ImplicitParamDecl::anchor() { }
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
|
2011-03-08 08:55:46 +00:00
|
|
|
SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id,
|
|
|
|
QualType Type) {
|
|
|
|
return new (C) ImplicitParamDecl(DC, IdLoc, Id, Type);
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
|
|
|
|
unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ImplicitParamDecl));
|
|
|
|
return new (Mem) ImplicitParamDecl(0, SourceLocation(), 0, QualType());
|
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
|
2011-03-08 08:55:46 +00:00
|
|
|
SourceLocation StartLoc,
|
2010-08-11 22:01:17 +00:00
|
|
|
const DeclarationNameInfo &NameInfo,
|
|
|
|
QualType T, TypeSourceInfo *TInfo,
|
2013-04-03 19:27:57 +00:00
|
|
|
StorageClass SC,
|
2010-12-09 16:59:22 +00:00
|
|
|
bool isInlineSpecified,
|
2011-08-15 21:04:07 +00:00
|
|
|
bool hasWrittenPrototype,
|
|
|
|
bool isConstexprSpecified) {
|
2011-03-08 08:55:46 +00:00
|
|
|
FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo,
|
2013-04-03 19:27:57 +00:00
|
|
|
T, TInfo, SC,
|
2011-08-15 21:04:07 +00:00
|
|
|
isInlineSpecified,
|
|
|
|
isConstexprSpecified);
|
2010-01-26 22:01:41 +00:00
|
|
|
New->HasWrittenPrototype = hasWrittenPrototype;
|
|
|
|
return New;
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FunctionDecl));
|
|
|
|
return new (Mem) FunctionDecl(Function, 0, SourceLocation(),
|
|
|
|
DeclarationNameInfo(), QualType(), 0,
|
2013-04-03 19:27:57 +00:00
|
|
|
SC_None, false, false);
|
2012-01-05 21:55:30 +00:00
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
|
|
|
|
return new (C) BlockDecl(DC, L);
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(BlockDecl));
|
|
|
|
return new (Mem) BlockDecl(0, SourceLocation());
|
|
|
|
}
|
|
|
|
|
2013-04-16 07:28:30 +00:00
|
|
|
MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C,
|
|
|
|
unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(MSPropertyDecl));
|
|
|
|
return new (Mem) MSPropertyDecl(0, SourceLocation(), DeclarationName(),
|
|
|
|
QualType(), 0, SourceLocation(),
|
|
|
|
0, 0);
|
|
|
|
}
|
|
|
|
|
2013-05-03 19:00:33 +00:00
|
|
|
CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
unsigned NumParams) {
|
2013-05-03 19:20:19 +00:00
|
|
|
unsigned Size = sizeof(CapturedDecl) + NumParams * sizeof(ImplicitParamDecl*);
|
2013-05-03 19:00:33 +00:00
|
|
|
return new (C.Allocate(Size)) CapturedDecl(DC, NumParams);
|
2013-04-16 19:37:38 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 19:20:19 +00:00
|
|
|
CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID,
|
|
|
|
unsigned NumParams) {
|
|
|
|
unsigned Size = sizeof(CapturedDecl) + NumParams * sizeof(ImplicitParamDecl*);
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, Size);
|
|
|
|
return new (Mem) CapturedDecl(0, NumParams);
|
|
|
|
}
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
|
|
|
|
SourceLocation L,
|
|
|
|
IdentifierInfo *Id, QualType T,
|
|
|
|
Expr *E, const llvm::APSInt &V) {
|
|
|
|
return new (C) EnumConstantDecl(CD, L, Id, T, E, V);
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
EnumConstantDecl *
|
|
|
|
EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumConstantDecl));
|
|
|
|
return new (Mem) EnumConstantDecl(0, SourceLocation(), 0, QualType(), 0,
|
|
|
|
llvm::APSInt());
|
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void IndirectFieldDecl::anchor() { }
|
|
|
|
|
2010-11-21 14:11:41 +00:00
|
|
|
IndirectFieldDecl *
|
|
|
|
IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
|
|
|
|
IdentifierInfo *Id, QualType T, NamedDecl **CH,
|
|
|
|
unsigned CHS) {
|
2010-11-21 06:08:52 +00:00
|
|
|
return new (C) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
|
|
|
|
unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(IndirectFieldDecl));
|
|
|
|
return new (Mem) IndirectFieldDecl(0, SourceLocation(), DeclarationName(),
|
|
|
|
QualType(), 0, 0);
|
|
|
|
}
|
|
|
|
|
2010-09-01 20:41:53 +00:00
|
|
|
SourceRange EnumConstantDecl::getSourceRange() const {
|
|
|
|
SourceLocation End = getLocation();
|
|
|
|
if (Init)
|
|
|
|
End = Init->getLocEnd();
|
|
|
|
return SourceRange(getLocation(), End);
|
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void TypeDecl::anchor() { }
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
|
2011-03-06 15:48:19 +00:00
|
|
|
SourceLocation StartLoc, SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id, TypeSourceInfo *TInfo) {
|
|
|
|
return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo);
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void TypedefNameDecl::anchor() { }
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl));
|
|
|
|
return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0);
|
|
|
|
}
|
|
|
|
|
2011-04-15 14:24:37 +00:00
|
|
|
TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation StartLoc,
|
|
|
|
SourceLocation IdLoc, IdentifierInfo *Id,
|
|
|
|
TypeSourceInfo *TInfo) {
|
|
|
|
return new (C) TypeAliasDecl(DC, StartLoc, IdLoc, Id, TInfo);
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypeAliasDecl));
|
|
|
|
return new (Mem) TypeAliasDecl(0, SourceLocation(), SourceLocation(), 0, 0);
|
|
|
|
}
|
|
|
|
|
2011-03-08 16:41:52 +00:00
|
|
|
SourceRange TypedefDecl::getSourceRange() const {
|
|
|
|
SourceLocation RangeEnd = getLocation();
|
|
|
|
if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
|
|
|
|
if (typeIsPostfix(TInfo->getType()))
|
|
|
|
RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
|
|
|
|
}
|
|
|
|
return SourceRange(getLocStart(), RangeEnd);
|
|
|
|
}
|
|
|
|
|
2011-04-15 14:24:37 +00:00
|
|
|
SourceRange TypeAliasDecl::getSourceRange() const {
|
|
|
|
SourceLocation RangeEnd = getLocStart();
|
|
|
|
if (TypeSourceInfo *TInfo = getTypeSourceInfo())
|
|
|
|
RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
|
|
|
|
return SourceRange(getLocStart(), RangeEnd);
|
|
|
|
}
|
|
|
|
|
2011-12-20 02:48:34 +00:00
|
|
|
void FileScopeAsmDecl::anchor() { }
|
|
|
|
|
2010-01-26 22:01:41 +00:00
|
|
|
FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
|
2011-03-03 14:20:18 +00:00
|
|
|
StringLiteral *Str,
|
|
|
|
SourceLocation AsmLoc,
|
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
|
2010-01-26 22:01:41 +00:00
|
|
|
}
|
2011-12-02 23:23:56 +00:00
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
|
|
|
|
unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FileScopeAsmDecl));
|
|
|
|
return new (Mem) FileScopeAsmDecl(0, 0, SourceLocation(), SourceLocation());
|
|
|
|
}
|
|
|
|
|
2013-02-22 17:15:32 +00:00
|
|
|
void EmptyDecl::anchor() {}
|
|
|
|
|
|
|
|
EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
|
|
|
|
return new (C) EmptyDecl(DC, L);
|
|
|
|
}
|
|
|
|
|
|
|
|
EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EmptyDecl));
|
|
|
|
return new (Mem) EmptyDecl(0, SourceLocation());
|
|
|
|
}
|
|
|
|
|
2011-12-02 23:23:56 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ImportDecl Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// \brief Retrieve the number of module identifiers needed to name the given
|
|
|
|
/// module.
|
|
|
|
static unsigned getNumModuleIdentifiers(Module *Mod) {
|
|
|
|
unsigned Result = 1;
|
|
|
|
while (Mod->Parent) {
|
|
|
|
Mod = Mod->Parent;
|
|
|
|
++Result;
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2012-01-03 18:04:46 +00:00
|
|
|
ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
|
2011-12-02 23:23:56 +00:00
|
|
|
Module *Imported,
|
|
|
|
ArrayRef<SourceLocation> IdentifierLocs)
|
2012-01-03 18:04:46 +00:00
|
|
|
: Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true),
|
2011-12-03 00:30:27 +00:00
|
|
|
NextLocalImport()
|
2011-12-02 23:23:56 +00:00
|
|
|
{
|
|
|
|
assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
|
|
|
|
SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1);
|
|
|
|
memcpy(StoredLocs, IdentifierLocs.data(),
|
|
|
|
IdentifierLocs.size() * sizeof(SourceLocation));
|
|
|
|
}
|
|
|
|
|
2012-01-03 18:04:46 +00:00
|
|
|
ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
|
2011-12-02 23:23:56 +00:00
|
|
|
Module *Imported, SourceLocation EndLoc)
|
2012-01-03 18:04:46 +00:00
|
|
|
: Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false),
|
2011-12-03 00:30:27 +00:00
|
|
|
NextLocalImport()
|
2011-12-02 23:23:56 +00:00
|
|
|
{
|
|
|
|
*reinterpret_cast<SourceLocation *>(this + 1) = EndLoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
|
2012-01-03 18:04:46 +00:00
|
|
|
SourceLocation StartLoc, Module *Imported,
|
2011-12-02 23:23:56 +00:00
|
|
|
ArrayRef<SourceLocation> IdentifierLocs) {
|
|
|
|
void *Mem = C.Allocate(sizeof(ImportDecl) +
|
|
|
|
IdentifierLocs.size() * sizeof(SourceLocation));
|
2012-01-03 18:04:46 +00:00
|
|
|
return new (Mem) ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
|
2011-12-02 23:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
|
2012-01-03 18:04:46 +00:00
|
|
|
SourceLocation StartLoc,
|
2011-12-02 23:23:56 +00:00
|
|
|
Module *Imported,
|
|
|
|
SourceLocation EndLoc) {
|
|
|
|
void *Mem = C.Allocate(sizeof(ImportDecl) + sizeof(SourceLocation));
|
2012-01-03 18:04:46 +00:00
|
|
|
ImportDecl *Import = new (Mem) ImportDecl(DC, StartLoc, Imported, EndLoc);
|
2011-12-02 23:23:56 +00:00
|
|
|
Import->setImplicit();
|
|
|
|
return Import;
|
|
|
|
}
|
|
|
|
|
2012-01-05 21:55:30 +00:00
|
|
|
ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
|
|
|
|
unsigned NumLocations) {
|
|
|
|
void *Mem = AllocateDeserializedDecl(C, ID,
|
|
|
|
(sizeof(ImportDecl) +
|
|
|
|
NumLocations * sizeof(SourceLocation)));
|
2011-12-02 23:23:56 +00:00
|
|
|
return new (Mem) ImportDecl(EmptyShell());
|
|
|
|
}
|
|
|
|
|
|
|
|
ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
|
|
|
|
if (!ImportedAndComplete.getInt())
|
2013-05-05 00:41:58 +00:00
|
|
|
return None;
|
2011-12-02 23:23:56 +00:00
|
|
|
|
|
|
|
const SourceLocation *StoredLocs
|
|
|
|
= reinterpret_cast<const SourceLocation *>(this + 1);
|
|
|
|
return ArrayRef<SourceLocation>(StoredLocs,
|
|
|
|
getNumModuleIdentifiers(getImportedModule()));
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceRange ImportDecl::getSourceRange() const {
|
|
|
|
if (!ImportedAndComplete.getInt())
|
|
|
|
return SourceRange(getLocation(),
|
|
|
|
*reinterpret_cast<const SourceLocation *>(this + 1));
|
|
|
|
|
|
|
|
return SourceRange(getLocation(), getIdentifierLocs().back());
|
|
|
|
}
|