2007-07-11 21:01:13 +04:00
|
|
|
//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 22:59:25 +03:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-07-11 21:01:13 +04:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements semantic analysis for declarations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Sema.h"
|
2009-11-18 10:57:50 +03:00
|
|
|
#include "Lookup.h"
|
2008-07-03 08:20:39 +04:00
|
|
|
#include "clang/AST/APValue.h"
|
2008-02-06 03:51:33 +03:00
|
|
|
#include "clang/AST/ASTConsumer.h"
|
2007-07-11 21:01:13 +04:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2009-07-23 03:56:57 +04:00
|
|
|
#include "clang/Analysis/CFG.h"
|
2009-10-06 21:59:45 +04:00
|
|
|
#include "clang/AST/CXXInheritance.h"
|
2008-08-11 09:35:13 +04:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-02-04 22:02:06 +03:00
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2008-06-26 22:38:35 +04:00
|
|
|
#include "clang/AST/ExprCXX.h"
|
2009-04-27 00:35:05 +04:00
|
|
|
#include "clang/AST/StmtCXX.h"
|
2009-07-23 04:20:25 +04:00
|
|
|
#include "clang/AST/StmtObjC.h"
|
2007-07-11 21:01:13 +04:00
|
|
|
#include "clang/Parse/DeclSpec.h"
|
2009-10-14 03:27:22 +04:00
|
|
|
#include "clang/Parse/ParseDiagnostic.h"
|
2009-11-10 22:49:08 +03:00
|
|
|
#include "clang/Parse/Template.h"
|
2009-08-27 03:45:07 +04:00
|
|
|
#include "clang/Basic/PartialDiagnostic.h"
|
2008-01-31 02:46:05 +03:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
2009-08-27 03:45:07 +04:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2008-01-31 02:46:05 +03:00
|
|
|
// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
|
2008-02-06 03:51:33 +03:00
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2009-09-09 19:08:12 +04:00
|
|
|
#include "clang/Lex/HeaderSearch.h"
|
2009-07-23 09:01:54 +04:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
2008-12-11 23:41:00 +03:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2008-12-24 00:05:05 +03:00
|
|
|
#include <algorithm>
|
2009-09-29 01:14:19 +04:00
|
|
|
#include <cstring>
|
2008-12-24 00:05:05 +03:00
|
|
|
#include <functional>
|
2009-07-23 03:56:57 +04:00
|
|
|
#include <queue>
|
2007-07-11 21:01:13 +04:00
|
|
|
using namespace clang;
|
|
|
|
|
2009-03-05 04:25:28 +03:00
|
|
|
/// getDeclName - Return a pretty name for the specified decl if possible, or
|
2009-09-09 19:08:12 +04:00
|
|
|
/// an empty string if not. This is used for pretty crash reporting.
|
2009-03-28 22:18:32 +03:00
|
|
|
std::string Sema::getDeclName(DeclPtrTy d) {
|
|
|
|
Decl *D = d.getAs<Decl>();
|
2009-03-05 04:25:28 +03:00
|
|
|
if (NamedDecl *DN = dyn_cast_or_null<NamedDecl>(D))
|
|
|
|
return DN->getQualifiedNameAsString();
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2009-03-29 20:50:03 +04:00
|
|
|
Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(DeclPtrTy Ptr) {
|
|
|
|
return DeclGroupPtrTy::make(DeclGroupRef(Ptr.getAs<Decl>()));
|
|
|
|
}
|
|
|
|
|
2009-02-04 22:16:12 +03:00
|
|
|
/// \brief If the identifier refers to a type name within this scope,
|
|
|
|
/// return the declaration of that type.
|
|
|
|
///
|
|
|
|
/// This routine performs ordinary name lookup of the identifier II
|
|
|
|
/// within the given scope, with optional C++ scope specifier SS, to
|
2009-02-09 18:09:02 +03:00
|
|
|
/// determine whether the name refers to a type. If so, returns an
|
|
|
|
/// opaque pointer (actually a QualType) corresponding to that
|
|
|
|
/// type. Otherwise, returns NULL.
|
2009-02-04 22:16:12 +03:00
|
|
|
///
|
|
|
|
/// If name lookup results in an ambiguity, this routine will complain
|
|
|
|
/// and then return NULL.
|
2009-02-09 18:09:02 +03:00
|
|
|
Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
|
2009-08-26 22:27:52 +04:00
|
|
|
Scope *S, const CXXScopeSpec *SS,
|
2009-11-21 01:03:38 +03:00
|
|
|
bool isClassName,
|
|
|
|
TypeTy *ObjectTypePtr) {
|
|
|
|
// Determine where we will perform name lookup.
|
|
|
|
DeclContext *LookupCtx = 0;
|
|
|
|
if (ObjectTypePtr) {
|
|
|
|
QualType ObjectType = QualType::getFromOpaquePtr(ObjectTypePtr);
|
|
|
|
if (ObjectType->isRecordType())
|
|
|
|
LookupCtx = computeDeclContext(ObjectType);
|
|
|
|
} else if (SS && SS->isSet()) {
|
|
|
|
LookupCtx = computeDeclContext(*SS, false);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-21 01:03:38 +03:00
|
|
|
if (!LookupCtx) {
|
|
|
|
if (isDependentScopeSpecifier(*SS)) {
|
|
|
|
// C++ [temp.res]p3:
|
|
|
|
// A qualified-id that refers to a type and in which the
|
|
|
|
// nested-name-specifier depends on a template-parameter (14.6.2)
|
|
|
|
// shall be prefixed by the keyword typename to indicate that the
|
|
|
|
// qualified-id denotes a type, forming an
|
|
|
|
// elaborated-type-specifier (7.1.5.3).
|
|
|
|
//
|
|
|
|
// We therefore do not perform any name lookup if the result would
|
|
|
|
// refer to a member of an unknown specialization.
|
|
|
|
if (!isClassName)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// We know from the grammar that this name refers to a type, so build a
|
|
|
|
// TypenameType node to describe the type.
|
|
|
|
// FIXME: Record somewhere that this TypenameType node has no "typename"
|
|
|
|
// keyword associated with it.
|
|
|
|
return CheckTypenameType((NestedNameSpecifier *)SS->getScopeRep(),
|
|
|
|
II, SS->getRange()).getAsOpaquePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(*SS))
|
|
|
|
return 0;
|
2009-08-26 22:27:52 +04:00
|
|
|
}
|
2009-11-21 01:03:38 +03:00
|
|
|
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupResult Result(*this, &II, NameLoc, LookupOrdinaryName);
|
2009-11-21 01:03:38 +03:00
|
|
|
if (LookupCtx) {
|
|
|
|
// Perform "qualified" name lookup into the declaration context we
|
|
|
|
// computed, which is either the type of the base of a member access
|
|
|
|
// expression or the declaration context associated with a prior
|
|
|
|
// nested-name-specifier.
|
|
|
|
LookupQualifiedName(Result, LookupCtx);
|
2009-05-11 23:58:34 +04:00
|
|
|
|
2009-11-21 01:03:38 +03:00
|
|
|
if (ObjectTypePtr && Result.empty()) {
|
|
|
|
// C++ [basic.lookup.classref]p3:
|
|
|
|
// If the unqualified-id is ~type-name, the type-name is looked up
|
|
|
|
// in the context of the entire postfix-expression. If the type T of
|
|
|
|
// the object expression is of a class type C, the type-name is also
|
|
|
|
// looked up in the scope of class C. At least one of the lookups shall
|
|
|
|
// find a name that refers to (possibly cv-qualified) T.
|
|
|
|
LookupName(Result, S);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Perform unqualified name lookup.
|
|
|
|
LookupName(Result, S);
|
|
|
|
}
|
|
|
|
|
2009-02-17 01:07:16 +03:00
|
|
|
NamedDecl *IIDecl = 0;
|
2009-11-17 05:14:36 +03:00
|
|
|
switch (Result.getResultKind()) {
|
2009-02-17 01:07:16 +03:00
|
|
|
case LookupResult::NotFound:
|
|
|
|
case LookupResult::FoundOverloaded:
|
2009-11-18 05:36:19 +03:00
|
|
|
case LookupResult::FoundUnresolvedValue:
|
2009-02-17 01:07:16 +03:00
|
|
|
return 0;
|
2009-02-04 20:00:24 +03:00
|
|
|
|
2009-10-26 01:09:09 +03:00
|
|
|
case LookupResult::Ambiguous:
|
2009-10-10 09:48:19 +04:00
|
|
|
// Recover from type-hiding ambiguities by hiding the type. We'll
|
|
|
|
// do the lookup again when looking for an object, and we can
|
|
|
|
// diagnose the error then. If we don't do this, then the error
|
|
|
|
// about hiding the type will be immediately followed by an error
|
|
|
|
// that only makes sense if the identifier was treated like a type.
|
2009-11-17 05:14:36 +03:00
|
|
|
if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
|
|
|
|
Result.suppressDiagnostics();
|
2009-10-10 09:48:19 +04:00
|
|
|
return 0;
|
2009-11-17 05:14:36 +03:00
|
|
|
}
|
2009-10-10 09:48:19 +04:00
|
|
|
|
2009-04-02 01:51:26 +04:00
|
|
|
// Look to see if we have a type anywhere in the list of results.
|
|
|
|
for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
|
|
|
|
Res != ResEnd; ++Res) {
|
|
|
|
if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) {
|
2009-09-09 19:08:12 +04:00
|
|
|
if (!IIDecl ||
|
|
|
|
(*Res)->getLocation().getRawEncoding() <
|
2009-04-13 19:14:38 +04:00
|
|
|
IIDecl->getLocation().getRawEncoding())
|
|
|
|
IIDecl = *Res;
|
2009-04-02 01:51:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IIDecl) {
|
|
|
|
// None of the entities we found is a type, so there is no way
|
|
|
|
// to even assume that the result is a type. In this case, don't
|
|
|
|
// complain about the ambiguity. The parser will either try to
|
|
|
|
// perform this lookup again (e.g., as an object name), which
|
|
|
|
// will produce the ambiguity, or will complain that it expected
|
|
|
|
// a type name.
|
2009-11-17 05:14:36 +03:00
|
|
|
Result.suppressDiagnostics();
|
2009-04-02 01:51:26 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We found a type within the ambiguous lookup; diagnose the
|
|
|
|
// ambiguity and then return that type. This might be the right
|
|
|
|
// answer, or it might not be, but it suppresses any attempt to
|
|
|
|
// perform the name lookup again.
|
|
|
|
break;
|
2009-02-04 20:00:24 +03:00
|
|
|
|
2009-02-17 01:07:16 +03:00
|
|
|
case LookupResult::Found:
|
2009-10-10 01:13:30 +04:00
|
|
|
IIDecl = Result.getFoundDecl();
|
2009-02-17 01:07:16 +03:00
|
|
|
break;
|
2009-01-15 03:26:24 +03:00
|
|
|
}
|
|
|
|
|
2009-10-25 20:16:46 +03:00
|
|
|
assert(IIDecl && "Didn't find decl");
|
2009-11-04 05:18:39 +03:00
|
|
|
|
2009-10-25 20:16:46 +03:00
|
|
|
QualType T;
|
|
|
|
if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
|
2009-11-04 05:18:39 +03:00
|
|
|
DiagnoseUseOfDecl(IIDecl, NameLoc);
|
2009-11-17 05:14:36 +03:00
|
|
|
|
2009-10-25 20:16:46 +03:00
|
|
|
// C++ [temp.local]p2:
|
|
|
|
// Within the scope of a class template specialization or
|
|
|
|
// partial specialization, when the injected-class-name is
|
|
|
|
// not followed by a <, it is equivalent to the
|
|
|
|
// injected-class-name followed by the template-argument s
|
|
|
|
// of the class template specialization or partial
|
|
|
|
// specialization enclosed in <>.
|
|
|
|
if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD))
|
|
|
|
if (RD->isInjectedClassName())
|
|
|
|
if (ClassTemplateDecl *Template = RD->getDescribedClassTemplate())
|
|
|
|
T = Template->getInjectedClassNameType(Context);
|
|
|
|
|
|
|
|
if (T.isNull())
|
|
|
|
T = Context.getTypeDeclType(TD);
|
|
|
|
|
2009-03-19 03:39:20 +03:00
|
|
|
if (SS)
|
|
|
|
T = getQualifiedNameType(*SS, T);
|
2009-10-25 20:16:46 +03:00
|
|
|
|
|
|
|
} else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
|
|
|
|
T = Context.getObjCInterfaceType(IDecl);
|
2009-11-18 05:36:19 +03:00
|
|
|
} else if (UnresolvedUsingTypenameDecl *UUDecl =
|
|
|
|
dyn_cast<UnresolvedUsingTypenameDecl>(IIDecl)) {
|
|
|
|
// FIXME: preserve source structure information.
|
|
|
|
T = Context.getTypenameType(UUDecl->getTargetNestedNameSpecifier(), &II);
|
2009-11-17 05:14:36 +03:00
|
|
|
} else {
|
|
|
|
// If it's not plausibly a type, suppress diagnostics.
|
|
|
|
Result.suppressDiagnostics();
|
2009-10-25 20:16:46 +03:00
|
|
|
return 0;
|
2009-11-17 05:14:36 +03:00
|
|
|
}
|
Introduce a representation for types that we referred to via a
qualified name, e.g.,
foo::x
so that we retain the nested-name-specifier as written in the source
code and can reproduce that qualified name when printing the types
back (e.g., in diagnostics). This is PR3493, which won't be complete
until finished the other tasks mentioned near the end of this commit.
The parser's representation of nested-name-specifiers, CXXScopeSpec,
is now a bit fatter, because it needs to contain the scopes that
precede each '::' and keep track of whether the global scoping
operator '::' was at the beginning. For example, we need to keep track
of the leading '::', 'foo', and 'bar' in
::foo::bar::x
The Action's CXXScopeTy * is no longer a DeclContext *. It's now the
opaque version of the new NestedNameSpecifier, which contains a single
component of a nested-name-specifier (either a DeclContext * or a Type
*, bitmangled).
The new sugar type QualifiedNameType composes a sequence of
NestedNameSpecifiers with a representation of the type we're actually
referring to. At present, we only build QualifiedNameType nodes within
Sema::getTypeName. This will be extended to other type-constructing
actions (e.g., ActOnClassTemplateId).
Also on the way: QualifiedDeclRefExprs will also store a sequence of
NestedNameSpecifiers, so that we can print out the property
nested-name-specifier. I expect to also use this for handling
dependent names like Fibonacci<I - 1>::value.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67265 91177308-0d34-0410-b5e6-96231b3b80d8
2009-03-19 03:18:19 +03:00
|
|
|
|
2009-10-25 20:16:46 +03:00
|
|
|
return T.getAsOpaquePtr();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-04-13 01:49:30 +04:00
|
|
|
/// isTagName() - This method is called *for error recovery purposes only*
|
|
|
|
/// to determine if the specified name is a valid tag name ("struct foo"). If
|
|
|
|
/// so, this returns the TST for the tag corresponding to it (TST_enum,
|
|
|
|
/// TST_union, TST_struct, TST_class). This is used to diagnose cases in C
|
|
|
|
/// where the user forgot to specify the tag.
|
|
|
|
DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
|
|
|
|
// Do a tag name lookup in this scope.
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupResult R(*this, &II, SourceLocation(), LookupTagName);
|
|
|
|
LookupName(R, S, false);
|
|
|
|
R.suppressDiagnostics();
|
|
|
|
if (R.getResultKind() == LookupResult::Found)
|
2009-12-02 11:25:40 +03:00
|
|
|
if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
|
2009-04-13 01:49:30 +04:00
|
|
|
switch (TD->getTagKind()) {
|
|
|
|
case TagDecl::TK_struct: return DeclSpec::TST_struct;
|
|
|
|
case TagDecl::TK_union: return DeclSpec::TST_union;
|
|
|
|
case TagDecl::TK_class: return DeclSpec::TST_class;
|
|
|
|
case TagDecl::TK_enum: return DeclSpec::TST_enum;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-13 01:49:30 +04:00
|
|
|
return DeclSpec::TST_unspecified;
|
|
|
|
}
|
|
|
|
|
2009-10-14 03:27:22 +04:00
|
|
|
bool Sema::DiagnoseUnknownTypeName(const IdentifierInfo &II,
|
|
|
|
SourceLocation IILoc,
|
|
|
|
Scope *S,
|
|
|
|
const CXXScopeSpec *SS,
|
|
|
|
TypeTy *&SuggestedType) {
|
|
|
|
// We don't have anything to suggest (yet).
|
|
|
|
SuggestedType = 0;
|
|
|
|
|
|
|
|
// FIXME: Should we move the logic that tries to recover from a missing tag
|
|
|
|
// (struct, union, enum) from Parser::ParseImplicitInt here, instead?
|
|
|
|
|
|
|
|
if (!SS)
|
|
|
|
Diag(IILoc, diag::err_unknown_typename) << &II;
|
|
|
|
else if (DeclContext *DC = computeDeclContext(*SS, false))
|
|
|
|
Diag(IILoc, diag::err_typename_nested_not_found)
|
|
|
|
<< &II << DC << SS->getRange();
|
|
|
|
else if (isDependentScopeSpecifier(*SS)) {
|
|
|
|
Diag(SS->getRange().getBegin(), diag::err_typename_missing)
|
2009-10-19 01:17:35 +04:00
|
|
|
<< (NestedNameSpecifier *)SS->getScopeRep() << II.getName()
|
2009-10-14 03:27:22 +04:00
|
|
|
<< SourceRange(SS->getRange().getBegin(), IILoc)
|
|
|
|
<< CodeModificationHint::CreateInsertion(SS->getRange().getBegin(),
|
|
|
|
"typename ");
|
|
|
|
SuggestedType = ActOnTypenameType(SourceLocation(), *SS, II, IILoc).get();
|
|
|
|
} else {
|
|
|
|
assert(SS && SS->isInvalid() &&
|
|
|
|
"Invalid scope specifier has already been diagnosed");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-04-13 01:49:30 +04:00
|
|
|
|
2009-08-18 04:00:49 +04:00
|
|
|
// Determines the context to return to after temporarily entering a
|
|
|
|
// context. This depends in an unnecessarily complicated way on the
|
|
|
|
// exact ordering of callbacks from the parser.
|
2008-11-08 20:17:31 +03:00
|
|
|
DeclContext *Sema::getContainingDC(DeclContext *DC) {
|
2009-08-18 04:00:49 +04:00
|
|
|
|
|
|
|
// Functions defined inline within classes aren't parsed until we've
|
|
|
|
// finished parsing the top-level class, so the top-level class is
|
|
|
|
// the context we'll need to return to.
|
|
|
|
if (isa<FunctionDecl>(DC)) {
|
|
|
|
DC = DC->getLexicalParent();
|
|
|
|
|
|
|
|
// A function not defined within a class will always return to its
|
|
|
|
// lexical context.
|
|
|
|
if (!isa<CXXRecordDecl>(DC))
|
|
|
|
return DC;
|
|
|
|
|
|
|
|
// A C++ inline method/friend is parsed *after* the topmost class
|
|
|
|
// it was declared in is fully parsed ("complete"); the topmost
|
|
|
|
// class is the context we need to return to.
|
2008-11-19 21:01:13 +03:00
|
|
|
while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
|
2008-07-01 14:37:29 +04:00
|
|
|
DC = RD;
|
|
|
|
|
|
|
|
// Return the declaration context of the topmost class the inline method is
|
|
|
|
// declared in.
|
|
|
|
return DC;
|
|
|
|
}
|
|
|
|
|
2008-11-10 02:41:00 +03:00
|
|
|
if (isa<ObjCMethodDecl>(DC))
|
|
|
|
return Context.getTranslationUnitDecl();
|
|
|
|
|
2008-11-19 21:01:13 +03:00
|
|
|
return DC->getLexicalParent();
|
2008-07-01 14:37:29 +04:00
|
|
|
}
|
|
|
|
|
2008-12-11 19:49:14 +03:00
|
|
|
void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
|
2008-11-08 20:17:31 +03:00
|
|
|
assert(getContainingDC(DC) == CurContext &&
|
2008-12-08 10:14:51 +03:00
|
|
|
"The next DeclContext should be lexically contained in the current one.");
|
2008-04-22 22:39:57 +04:00
|
|
|
CurContext = DC;
|
2008-12-11 19:49:14 +03:00
|
|
|
S->setEntity(DC);
|
2008-04-04 10:12:32 +04:00
|
|
|
}
|
|
|
|
|
2008-04-06 08:47:34 +04:00
|
|
|
void Sema::PopDeclContext() {
|
|
|
|
assert(CurContext && "DeclContext imbalance!");
|
2008-12-11 19:49:14 +03:00
|
|
|
|
2008-11-08 20:17:31 +03:00
|
|
|
CurContext = getContainingDC(CurContext);
|
2008-04-04 10:12:32 +04:00
|
|
|
}
|
|
|
|
|
2009-06-18 03:19:02 +04:00
|
|
|
/// EnterDeclaratorContext - Used when we must lookup names in the context
|
|
|
|
/// of a declarator's nested name specifier.
|
2009-06-18 03:15:40 +04:00
|
|
|
void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
|
|
|
|
assert(PreDeclaratorDC == 0 && "Previous declarator context not popped?");
|
|
|
|
PreDeclaratorDC = static_cast<DeclContext*>(S->getEntity());
|
|
|
|
CurContext = DC;
|
|
|
|
assert(CurContext && "No context?");
|
|
|
|
S->setEntity(CurContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::ExitDeclaratorContext(Scope *S) {
|
|
|
|
S->setEntity(PreDeclaratorDC);
|
|
|
|
PreDeclaratorDC = 0;
|
|
|
|
|
|
|
|
// Reset CurContext to the nearest enclosing context.
|
|
|
|
while (!S->getEntity() && S->getParent())
|
|
|
|
S = S->getParent();
|
|
|
|
CurContext = static_cast<DeclContext*>(S->getEntity());
|
|
|
|
assert(CurContext && "No context?");
|
|
|
|
}
|
|
|
|
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64336 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-12 02:02:49 +03:00
|
|
|
/// \brief Determine whether we allow overloading of the function
|
|
|
|
/// PrevDecl with another declaration.
|
|
|
|
///
|
|
|
|
/// This routine determines whether overloading is possible, not
|
|
|
|
/// whether some new function is actually an overload. It will return
|
|
|
|
/// true in C++ (where we can always provide overloads) or, as an
|
|
|
|
/// extension, in C when the previous function is already an
|
|
|
|
/// overloaded function declaration or has the "overloadable"
|
|
|
|
/// attribute.
|
2009-11-19 01:49:29 +03:00
|
|
|
static bool AllowOverloadingOfFunction(LookupResult &Previous,
|
|
|
|
ASTContext &Context) {
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64336 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-12 02:02:49 +03:00
|
|
|
if (Context.getLangOptions().CPlusPlus)
|
|
|
|
return true;
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.getResultKind() == LookupResult::FoundOverloaded)
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64336 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-12 02:02:49 +03:00
|
|
|
return true;
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
return (Previous.getResultKind() == LookupResult::Found
|
|
|
|
&& Previous.getFoundDecl()->hasAttr<OverloadableAttr>());
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64336 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-12 02:02:49 +03:00
|
|
|
}
|
|
|
|
|
2008-04-12 04:47:19 +04:00
|
|
|
/// Add this decl to the scope shadowed decl chains.
|
2009-09-01 02:39:49 +04:00
|
|
|
void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
|
2009-01-05 22:45:36 +03:00
|
|
|
// Move up the scope chain until we find the nearest enclosing
|
|
|
|
// non-transparent context. The declaration will be introduced into this
|
|
|
|
// scope.
|
2009-09-09 19:08:12 +04:00
|
|
|
while (S->getEntity() &&
|
2009-01-05 22:45:36 +03:00
|
|
|
((DeclContext *)S->getEntity())->isTransparentContext())
|
|
|
|
S = S->getParent();
|
|
|
|
|
2008-12-24 00:05:05 +03:00
|
|
|
// Add scoped declarations into their context, so that they can be
|
|
|
|
// found later. Declarations without a context won't be inserted
|
|
|
|
// into any context.
|
2009-09-01 02:39:49 +04:00
|
|
|
if (AddToContext)
|
|
|
|
CurContext->addDecl(D);
|
2008-12-24 00:05:05 +03:00
|
|
|
|
2009-09-28 22:41:37 +04:00
|
|
|
// Out-of-line function and variable definitions should not be pushed into
|
|
|
|
// scope.
|
|
|
|
if ((isa<FunctionTemplateDecl>(D) &&
|
|
|
|
cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->isOutOfLine()) ||
|
|
|
|
(isa<FunctionDecl>(D) && cast<FunctionDecl>(D)->isOutOfLine()) ||
|
|
|
|
(isa<VarDecl>(D) && cast<VarDecl>(D)->isOutOfLine()))
|
|
|
|
return;
|
|
|
|
|
2009-10-10 01:13:30 +04:00
|
|
|
// If this replaces anything in the current scope,
|
|
|
|
IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
|
|
|
|
IEnd = IdResolver.end();
|
|
|
|
for (; I != IEnd; ++I) {
|
|
|
|
if (S->isDeclScope(DeclPtrTy::make(*I)) && D->declarationReplaces(*I)) {
|
|
|
|
S->RemoveDecl(DeclPtrTy::make(*I));
|
|
|
|
IdResolver.RemoveDecl(*I);
|
2008-12-24 00:05:05 +03:00
|
|
|
|
2009-10-10 01:13:30 +04:00
|
|
|
// Should only need to replace one decl.
|
|
|
|
break;
|
2009-04-24 06:57:34 +04:00
|
|
|
}
|
2008-05-10 03:39:43 +04:00
|
|
|
}
|
2008-10-21 20:13:35 +04:00
|
|
|
|
2009-10-10 01:13:30 +04:00
|
|
|
S->AddDecl(DeclPtrTy::make(D));
|
2008-05-10 03:39:43 +04:00
|
|
|
IdResolver.AddDecl(D);
|
2008-04-12 04:47:19 +04:00
|
|
|
}
|
|
|
|
|
2009-09-28 04:47:05 +04:00
|
|
|
bool Sema::isDeclInScope(NamedDecl *&D, DeclContext *Ctx, Scope *S) {
|
|
|
|
return IdResolver.isDeclInScope(D, Ctx, Context, S);
|
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
static bool isOutOfScopePreviousDeclaration(NamedDecl *,
|
|
|
|
DeclContext*,
|
|
|
|
ASTContext&);
|
|
|
|
|
|
|
|
/// Filters out lookup results that don't fall within the given scope
|
|
|
|
/// as determined by isDeclInScope.
|
|
|
|
static void FilterLookupForScope(Sema &SemaRef, LookupResult &R,
|
|
|
|
DeclContext *Ctx, Scope *S,
|
|
|
|
bool ConsiderLinkage) {
|
|
|
|
LookupResult::Filter F = R.makeFilter();
|
|
|
|
while (F.hasNext()) {
|
|
|
|
NamedDecl *D = F.next();
|
|
|
|
|
|
|
|
if (SemaRef.isDeclInScope(D, Ctx, S))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (ConsiderLinkage &&
|
|
|
|
isOutOfScopePreviousDeclaration(D, Ctx, SemaRef.Context))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
F.erase();
|
|
|
|
}
|
|
|
|
|
|
|
|
F.done();
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isUsingDecl(NamedDecl *D) {
|
|
|
|
return isa<UsingShadowDecl>(D) ||
|
|
|
|
isa<UnresolvedUsingTypenameDecl>(D) ||
|
|
|
|
isa<UnresolvedUsingValueDecl>(D);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Removes using shadow declarations from the lookup results.
|
|
|
|
static void RemoveUsingDecls(LookupResult &R) {
|
|
|
|
LookupResult::Filter F = R.makeFilter();
|
|
|
|
while (F.hasNext())
|
|
|
|
if (isUsingDecl(F.next()))
|
|
|
|
F.erase();
|
|
|
|
|
|
|
|
F.done();
|
|
|
|
}
|
|
|
|
|
2009-11-07 10:18:14 +03:00
|
|
|
static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
|
2009-11-07 10:26:56 +03:00
|
|
|
if (D->isUsed() || D->hasAttr<UnusedAttr>())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
|
|
|
|
if (const RecordType *RT = VD->getType()->getAs<RecordType>()) {
|
|
|
|
if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
|
|
|
|
if (!RD->hasTrivialConstructor())
|
|
|
|
return false;
|
|
|
|
if (!RD->hasTrivialDestructor())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (isa<VarDecl>(D) && !isa<ParmVarDecl>(D) &&
|
|
|
|
!isa<ImplicitParamDecl>(D) &&
|
2009-11-07 10:18:14 +03:00
|
|
|
D->getDeclContext()->isFunctionOrMethod());
|
|
|
|
}
|
|
|
|
|
2007-10-10 02:01:59 +04:00
|
|
|
void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
|
2007-08-26 10:24:45 +04:00
|
|
|
if (S->decl_empty()) return;
|
2008-12-05 21:15:24 +03:00
|
|
|
assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
|
2009-09-09 19:08:12 +04:00
|
|
|
"Scope shouldn't contain decls!");
|
2008-05-10 03:39:43 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
|
|
|
|
I != E; ++I) {
|
2009-03-28 22:18:32 +03:00
|
|
|
Decl *TmpD = (*I).getAs<Decl>();
|
2007-09-13 22:10:37 +04:00
|
|
|
assert(TmpD && "This decl didn't get pushed??");
|
2008-06-10 05:32:09 +04:00
|
|
|
|
2008-12-11 19:49:14 +03:00
|
|
|
assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
|
|
|
|
NamedDecl *D = cast<NamedDecl>(TmpD);
|
2008-06-10 05:32:09 +04:00
|
|
|
|
2008-12-11 19:49:14 +03:00
|
|
|
if (!D->getDeclName()) continue;
|
|
|
|
|
2009-10-09 01:35:42 +04:00
|
|
|
// Diagnose unused variables in this scope.
|
2009-11-07 10:18:14 +03:00
|
|
|
if (ShouldDiagnoseUnusedDecl(D))
|
|
|
|
Diag(D->getLocation(), diag::warn_unused_variable) << D->getDeclName();
|
2009-10-09 01:35:42 +04:00
|
|
|
|
2008-12-11 19:49:14 +03:00
|
|
|
// Remove this name from our lexical scope.
|
|
|
|
IdResolver.RemoveDecl(D);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-02 03:04:06 +04:00
|
|
|
/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
|
|
|
|
/// return 0 if one not found.
|
|
|
|
ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
|
2008-04-02 22:30:49 +04:00
|
|
|
// The third "scope" argument is 0 since we aren't enabling lazy built-in
|
|
|
|
// creation from this context.
|
2009-10-10 01:13:30 +04:00
|
|
|
NamedDecl *IDecl = LookupSingleName(TUScope, Id, LookupOrdinaryName);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-02 18:35:35 +04:00
|
|
|
return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
|
2007-10-12 23:38:20 +04:00
|
|
|
}
|
|
|
|
|
2009-01-12 21:45:55 +03:00
|
|
|
/// getNonFieldDeclScope - Retrieves the innermost scope, starting
|
|
|
|
/// from S, where a non-field would be declared. This routine copes
|
|
|
|
/// with the difference between C and C++ scoping rules in structs and
|
|
|
|
/// unions. For example, the following code is well-formed in C but
|
|
|
|
/// ill-formed in C++:
|
|
|
|
/// @code
|
|
|
|
/// struct S6 {
|
|
|
|
/// enum { BAR } e;
|
|
|
|
/// };
|
2009-09-09 19:08:12 +04:00
|
|
|
///
|
2009-01-12 21:45:55 +03:00
|
|
|
/// void test_S6() {
|
|
|
|
/// struct S6 a;
|
|
|
|
/// a.e = BAR;
|
|
|
|
/// }
|
|
|
|
/// @endcode
|
|
|
|
/// For the declaration of BAR, this routine will return a different
|
|
|
|
/// scope. The scope S will be the scope of the unnamed enumeration
|
|
|
|
/// within S6. In C++, this routine will return the scope associated
|
|
|
|
/// with S6, because the enumeration's scope is a transparent
|
|
|
|
/// context but structures can contain non-field names. In C, this
|
|
|
|
/// routine will return the translation unit scope, since the
|
|
|
|
/// enumeration's scope is a transparent context and structures cannot
|
|
|
|
/// contain non-field names.
|
|
|
|
Scope *Sema::getNonFieldDeclScope(Scope *S) {
|
|
|
|
while (((S->getFlags() & Scope::DeclScope) == 0) ||
|
2009-09-09 19:08:12 +04:00
|
|
|
(S->getEntity() &&
|
2009-01-12 21:45:55 +03:00
|
|
|
((DeclContext *)S->getEntity())->isTransparentContext()) ||
|
|
|
|
(S->isClassScope() && !getLangOptions().CPlusPlus))
|
|
|
|
S = S->getParent();
|
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
2008-05-06 02:18:14 +04:00
|
|
|
void Sema::InitBuiltinVaListType() {
|
2007-10-16 00:28:48 +04:00
|
|
|
if (!Context.getBuiltinVaListType().isNull())
|
|
|
|
return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-10-16 00:28:48 +04:00
|
|
|
IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
|
2009-10-10 01:13:30 +04:00
|
|
|
NamedDecl *VaDecl = LookupSingleName(TUScope, VaIdent, LookupOrdinaryName);
|
2007-10-19 02:17:45 +04:00
|
|
|
TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
|
2007-10-16 00:28:48 +04:00
|
|
|
Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
|
|
|
|
}
|
|
|
|
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
/// LazilyCreateBuiltin - The specified Builtin-ID was first used at
|
|
|
|
/// file scope. lazily create a decl for it. ForRedeclaration is true
|
|
|
|
/// if we're creating this built-in in anticipation of redeclaring the
|
|
|
|
/// built-in.
|
2009-01-20 04:17:11 +03:00
|
|
|
NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
Scope *S, bool ForRedeclaration,
|
|
|
|
SourceLocation Loc) {
|
2007-07-11 21:01:13 +04:00
|
|
|
Builtin::ID BID = (Builtin::ID)bid;
|
|
|
|
|
2008-09-28 09:54:29 +04:00
|
|
|
if (Context.BuiltinInfo.hasVAListUse(BID))
|
2007-10-16 00:28:48 +04:00
|
|
|
InitBuiltinVaListType();
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
|
2009-06-14 04:45:47 +04:00
|
|
|
ASTContext::GetBuiltinTypeError Error;
|
2009-09-09 19:08:12 +04:00
|
|
|
QualType R = Context.GetBuiltinType(BID, Error);
|
2009-02-14 04:52:53 +03:00
|
|
|
switch (Error) {
|
2009-06-14 04:45:47 +04:00
|
|
|
case ASTContext::GE_None:
|
2009-02-14 04:52:53 +03:00
|
|
|
// Okay
|
|
|
|
break;
|
|
|
|
|
2009-07-29 03:57:15 +04:00
|
|
|
case ASTContext::GE_Missing_stdio:
|
2009-02-14 04:52:53 +03:00
|
|
|
if (ForRedeclaration)
|
|
|
|
Diag(Loc, diag::err_implicit_decl_requires_stdio)
|
|
|
|
<< Context.BuiltinInfo.GetName(BID);
|
|
|
|
return 0;
|
2009-07-28 06:25:19 +04:00
|
|
|
|
2009-07-29 03:57:15 +04:00
|
|
|
case ASTContext::GE_Missing_setjmp:
|
2009-07-28 06:25:19 +04:00
|
|
|
if (ForRedeclaration)
|
|
|
|
Diag(Loc, diag::err_implicit_decl_requires_setjmp)
|
|
|
|
<< Context.BuiltinInfo.GetName(BID);
|
|
|
|
return 0;
|
2009-02-14 04:52:53 +03:00
|
|
|
}
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
|
|
|
|
if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
|
|
|
|
Diag(Loc, diag::ext_implicit_lib_function_decl)
|
|
|
|
<< Context.BuiltinInfo.GetName(BID)
|
|
|
|
<< R;
|
2009-02-17 00:58:21 +03:00
|
|
|
if (Context.BuiltinInfo.getHeaderName(BID) &&
|
2009-04-16 07:59:32 +04:00
|
|
|
Diags.getDiagnosticLevel(diag::ext_implicit_lib_function_decl)
|
|
|
|
!= Diagnostic::Ignored)
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
Diag(Loc, diag::note_please_include_header)
|
|
|
|
<< Context.BuiltinInfo.getHeaderName(BID)
|
|
|
|
<< Context.BuiltinInfo.GetName(BID);
|
|
|
|
}
|
|
|
|
|
2008-04-17 18:47:13 +04:00
|
|
|
FunctionDecl *New = FunctionDecl::Create(Context,
|
|
|
|
Context.getTranslationUnitDecl(),
|
2009-08-19 05:27:57 +04:00
|
|
|
Loc, II, R, /*DInfo=*/0,
|
2009-02-25 19:33:18 +03:00
|
|
|
FunctionDecl::Extern, false,
|
|
|
|
/*hasPrototype=*/true);
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
New->setImplicit();
|
|
|
|
|
2008-05-06 02:18:14 +04:00
|
|
|
// Create Decl objects for each parameter, adding them to the
|
|
|
|
// FunctionDecl.
|
2009-02-27 02:50:07 +03:00
|
|
|
if (FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
|
2008-05-06 02:18:14 +04:00
|
|
|
llvm::SmallVector<ParmVarDecl*, 16> Params;
|
|
|
|
for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
|
|
|
|
Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
|
2009-08-19 05:27:57 +04:00
|
|
|
FT->getArgType(i), /*DInfo=*/0,
|
|
|
|
VarDecl::None, 0));
|
2009-05-21 13:52:38 +04:00
|
|
|
New->setParams(Context, Params.data(), Params.size());
|
2008-05-06 02:18:14 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
AddKnownFunctionAttributes(New);
|
|
|
|
|
2008-04-11 11:00:53 +04:00
|
|
|
// TUScope is the translation-unit scope to insert this function into.
|
2009-01-09 21:51:29 +03:00
|
|
|
// FIXME: This is hideous. We need to teach PushOnScopeChains to
|
|
|
|
// relate Scopes to DeclContexts, and probably eliminate CurContext
|
|
|
|
// entirely, but we're not there yet.
|
|
|
|
DeclContext *SavedContext = CurContext;
|
|
|
|
CurContext = Context.getTranslationUnitDecl();
|
2008-05-10 03:39:43 +04:00
|
|
|
PushOnScopeChains(New, TUScope);
|
2009-01-09 21:51:29 +03:00
|
|
|
CurContext = SavedContext;
|
2007-07-11 21:01:13 +04:00
|
|
|
return New;
|
|
|
|
}
|
|
|
|
|
2009-02-16 20:45:42 +03:00
|
|
|
/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the
|
|
|
|
/// same name and scope as a previous declaration 'Old'. Figure out
|
|
|
|
/// how to resolve this situation, merging decls or emitting
|
2009-04-25 12:06:05 +04:00
|
|
|
/// diagnostics as appropriate. If there was an error, set New to be invalid.
|
2007-07-11 21:01:13 +04:00
|
|
|
///
|
2009-11-19 01:49:29 +03:00
|
|
|
void Sema::MergeTypeDefDecl(TypedefDecl *New, LookupResult &OldDecls) {
|
|
|
|
// If the new decl is known invalid already, don't bother doing any
|
|
|
|
// merging checks.
|
|
|
|
if (New->isInvalidDecl()) return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-09-09 18:32:20 +04:00
|
|
|
// Allow multiple definitions for ObjC built-in typedefs.
|
|
|
|
// FIXME: Verify the underlying types are equivalent!
|
|
|
|
if (getLangOptions().ObjC1) {
|
2008-11-20 08:41:43 +03:00
|
|
|
const IdentifierInfo *TypeID = New->getIdentifier();
|
|
|
|
switch (TypeID->getLength()) {
|
|
|
|
default: break;
|
2009-09-09 19:08:12 +04:00
|
|
|
case 2:
|
2008-11-20 08:41:43 +03:00
|
|
|
if (!TypeID->isStr("id"))
|
|
|
|
break;
|
2009-08-17 20:35:33 +04:00
|
|
|
Context.ObjCIdRedefinitionType = New->getUnderlyingType();
|
2009-07-11 03:34:53 +04:00
|
|
|
// Install the built-in type for 'id', ignoring the current definition.
|
|
|
|
New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
|
|
|
|
return;
|
2008-11-20 08:41:43 +03:00
|
|
|
case 5:
|
|
|
|
if (!TypeID->isStr("Class"))
|
|
|
|
break;
|
2009-08-17 20:35:33 +04:00
|
|
|
Context.ObjCClassRedefinitionType = New->getUnderlyingType();
|
2009-07-11 03:34:53 +04:00
|
|
|
// Install the built-in type for 'Class', ignoring the current definition.
|
|
|
|
New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
|
2009-04-25 12:06:05 +04:00
|
|
|
return;
|
2008-11-20 08:41:43 +03:00
|
|
|
case 3:
|
|
|
|
if (!TypeID->isStr("SEL"))
|
|
|
|
break;
|
2009-11-26 02:07:42 +03:00
|
|
|
Context.ObjCSelRedefinitionType = New->getUnderlyingType();
|
2009-11-21 22:53:08 +03:00
|
|
|
// Install the built-in type for 'SEL', ignoring the current definition.
|
|
|
|
New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
|
2009-04-25 12:06:05 +04:00
|
|
|
return;
|
2008-11-20 08:41:43 +03:00
|
|
|
case 8:
|
|
|
|
if (!TypeID->isStr("Protocol"))
|
|
|
|
break;
|
2008-09-09 18:32:20 +04:00
|
|
|
Context.setObjCProtoType(New->getUnderlyingType());
|
2009-04-25 12:06:05 +04:00
|
|
|
return;
|
2008-09-09 18:32:20 +04:00
|
|
|
}
|
|
|
|
// Fall through - the typedef name was not a builtin type.
|
|
|
|
}
|
2009-11-19 01:49:29 +03:00
|
|
|
|
2009-01-28 20:15:10 +03:00
|
|
|
// Verify the old decl was also a type.
|
2009-11-19 01:49:29 +03:00
|
|
|
TypeDecl *Old = 0;
|
|
|
|
if (!OldDecls.isSingleResult() ||
|
|
|
|
!(Old = dyn_cast<TypeDecl>(OldDecls.getFoundDecl()))) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition_different_kind)
|
2008-11-24 00:45:46 +03:00
|
|
|
<< New->getDeclName();
|
2009-11-19 01:49:29 +03:00
|
|
|
|
|
|
|
NamedDecl *OldD = OldDecls.getRepresentativeDecl();
|
2009-04-25 12:06:05 +04:00
|
|
|
if (OldD->getLocation().isValid())
|
2009-01-16 22:58:32 +03:00
|
|
|
Diag(OldD->getLocation(), diag::note_previous_definition);
|
2009-11-19 01:49:29 +03:00
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-01-28 20:15:10 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
// If the old declaration is invalid, just give up here.
|
|
|
|
if (Old->isInvalidDecl())
|
|
|
|
return New->setInvalidDecl();
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
// Determine the "old" type we'll use for checking and diagnostics.
|
2009-01-28 20:15:10 +03:00
|
|
|
QualType OldType;
|
|
|
|
if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
|
|
|
|
OldType = OldTypedef->getUnderlyingType();
|
|
|
|
else
|
|
|
|
OldType = Context.getTypeDeclType(Old);
|
|
|
|
|
2008-07-25 22:44:27 +04:00
|
|
|
// If the typedef types are not identical, reject them in all languages and
|
|
|
|
// with any extensions enabled.
|
2009-01-28 20:15:10 +03:00
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
if (OldType != New->getUnderlyingType() &&
|
|
|
|
Context.getCanonicalType(OldType) !=
|
2008-07-25 22:44:27 +04:00
|
|
|
Context.getCanonicalType(New->getUnderlyingType())) {
|
2008-11-20 09:13:02 +03:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition_different_typedef)
|
2009-01-28 20:15:10 +03:00
|
|
|
<< New->getUnderlyingType() << OldType;
|
2009-04-25 12:06:05 +04:00
|
|
|
if (Old->getLocation().isValid())
|
2009-01-16 22:58:32 +03:00
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2008-07-25 22:44:27 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-11 03:34:53 +04:00
|
|
|
if (getLangOptions().Microsoft)
|
2009-04-25 12:06:05 +04:00
|
|
|
return;
|
2008-06-11 10:20:39 +04:00
|
|
|
|
2008-11-21 19:29:06 +03:00
|
|
|
// C++ [dcl.typedef]p2:
|
|
|
|
// In a given non-class scope, a typedef specifier can be used to
|
|
|
|
// redefine the name of any type declared in that scope to refer
|
|
|
|
// to the type to which it already refers.
|
2009-04-18 02:04:20 +04:00
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
if (!isa<CXXRecordDecl>(CurContext))
|
2009-04-25 12:06:05 +04:00
|
|
|
return;
|
2009-04-18 02:04:20 +04:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition)
|
|
|
|
<< New->getDeclName();
|
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2008-09-12 22:10:20 +04:00
|
|
|
}
|
2008-06-11 10:20:39 +04:00
|
|
|
|
2009-04-18 02:04:20 +04:00
|
|
|
// If we have a redefinition of a typedef in C, emit a warning. This warning
|
|
|
|
// is normally mapped to an error, but can be controlled with
|
2009-06-05 03:03:07 +04:00
|
|
|
// -Wtypedef-redefinition. If either the original or the redefinition is
|
|
|
|
// in a system header, don't emit this for compatibility with GCC.
|
2009-04-27 05:46:12 +04:00
|
|
|
if (PP.getDiagnostics().getSuppressSystemWarnings() &&
|
2009-06-05 03:03:07 +04:00
|
|
|
(Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
|
|
|
|
Context.getSourceManager().isInSystemHeader(New->getLocation())))
|
2009-04-27 05:46:12 +04:00
|
|
|
return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-18 02:04:20 +04:00
|
|
|
Diag(New->getLocation(), diag::warn_redefinition_of_typedef)
|
|
|
|
<< New->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2008-06-26 22:38:35 +04:00
|
|
|
/// DeclhasAttr - returns true if decl Declaration already has the target
|
|
|
|
/// attribute.
|
2009-09-09 19:08:12 +04:00
|
|
|
static bool
|
2009-06-30 06:34:44 +04:00
|
|
|
DeclHasAttr(const Decl *decl, const Attr *target) {
|
|
|
|
for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
|
2008-03-03 06:28:21 +03:00
|
|
|
if (attr->getKind() == target->getKind())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// MergeAttributes - append attributes from the Old decl to the New one.
|
2009-03-04 09:05:19 +03:00
|
|
|
static void MergeAttributes(Decl *New, Decl *Old, ASTContext &C) {
|
2009-06-30 06:34:44 +04:00
|
|
|
for (const Attr *attr = Old->getAttrs(); attr; attr = attr->getNext()) {
|
|
|
|
if (!DeclHasAttr(New, attr) && attr->isMerged()) {
|
2009-04-28 10:37:30 +04:00
|
|
|
Attr *NewAttr = attr->clone(C);
|
|
|
|
NewAttr->setInherited(true);
|
2009-06-30 06:34:44 +04:00
|
|
|
New->addAttr(NewAttr);
|
2008-03-03 06:28:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-07 01:43:54 +03:00
|
|
|
/// Used in MergeFunctionDecl to keep track of function parameters in
|
|
|
|
/// C.
|
|
|
|
struct GNUCompatibleParamWarning {
|
|
|
|
ParmVarDecl *OldParm;
|
|
|
|
ParmVarDecl *NewParm;
|
|
|
|
QualType PromotedType;
|
|
|
|
};
|
|
|
|
|
2008-04-08 08:40:51 +04:00
|
|
|
/// MergeFunctionDecl - We just parsed a function 'New' from
|
|
|
|
/// declarator D which has the same name and scope as a previous
|
|
|
|
/// declaration 'Old'. Figure out how to resolve this situation,
|
|
|
|
/// merging decls or emitting diagnostics as appropriate.
|
2008-10-21 20:13:35 +04:00
|
|
|
///
|
|
|
|
/// In C++, New and Old must be declarations that are not
|
|
|
|
/// overloaded. Use IsOverload to determine whether New and Old are
|
|
|
|
/// overloaded, and to select the Old declaration that New should be
|
|
|
|
/// merged with.
|
2009-02-16 20:45:42 +03:00
|
|
|
///
|
|
|
|
/// Returns true if there was an error, false otherwise.
|
|
|
|
bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
|
2007-07-11 21:01:13 +04:00
|
|
|
// Verify the old decl was also a function.
|
2009-06-26 02:08:12 +04:00
|
|
|
FunctionDecl *Old = 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
if (FunctionTemplateDecl *OldFunctionTemplate
|
2009-06-26 02:08:12 +04:00
|
|
|
= dyn_cast<FunctionTemplateDecl>(OldD))
|
|
|
|
Old = OldFunctionTemplate->getTemplatedDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
else
|
2009-06-26 02:08:12 +04:00
|
|
|
Old = dyn_cast<FunctionDecl>(OldD);
|
2007-07-11 21:01:13 +04:00
|
|
|
if (!Old) {
|
2008-11-20 09:13:02 +03:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition_different_kind)
|
2008-11-24 00:45:46 +03:00
|
|
|
<< New->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(OldD->getLocation(), diag::note_previous_definition);
|
2009-02-16 20:45:42 +03:00
|
|
|
return true;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-10-21 20:13:35 +04:00
|
|
|
|
|
|
|
// Determine whether the previous declaration was a definition,
|
|
|
|
// implicit declaration, or a declaration.
|
|
|
|
diag::kind PrevDiag;
|
|
|
|
if (Old->isThisDeclarationADefinition())
|
2008-11-24 02:12:31 +03:00
|
|
|
PrevDiag = diag::note_previous_definition;
|
2009-02-16 20:45:42 +03:00
|
|
|
else if (Old->isImplicit())
|
|
|
|
PrevDiag = diag::note_previous_implicit_declaration;
|
2009-09-09 19:08:12 +04:00
|
|
|
else
|
2008-11-24 02:12:31 +03:00
|
|
|
PrevDiag = diag::note_previous_declaration;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-07 03:10:54 +04:00
|
|
|
QualType OldQType = Context.getCanonicalType(Old->getType());
|
|
|
|
QualType NewQType = Context.getCanonicalType(New->getType());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-24 04:23:02 +03:00
|
|
|
if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
|
|
|
|
New->getStorageClass() == FunctionDecl::Static &&
|
|
|
|
Old->getStorageClass() != FunctionDecl::Static) {
|
|
|
|
Diag(New->getLocation(), diag::err_static_non_static)
|
|
|
|
<< New;
|
|
|
|
Diag(Old->getLocation(), PrevDiag);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-21 20:13:35 +04:00
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
// (C++98 13.1p2):
|
|
|
|
// Certain function declarations cannot be overloaded:
|
2009-09-09 19:08:12 +04:00
|
|
|
// -- Function declarations that differ only in the return type
|
2008-10-21 20:13:35 +04:00
|
|
|
// cannot be overloaded.
|
2009-09-09 19:08:12 +04:00
|
|
|
QualType OldReturnType
|
2008-10-21 20:13:35 +04:00
|
|
|
= cast<FunctionType>(OldQType.getTypePtr())->getResultType();
|
2009-09-09 19:08:12 +04:00
|
|
|
QualType NewReturnType
|
2008-10-21 20:13:35 +04:00
|
|
|
= cast<FunctionType>(NewQType.getTypePtr())->getResultType();
|
|
|
|
if (OldReturnType != NewReturnType) {
|
|
|
|
Diag(New->getLocation(), diag::err_ovl_diff_return_type);
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
|
2009-02-16 20:45:42 +03:00
|
|
|
return true;
|
2008-10-21 20:13:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
|
|
|
|
const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
|
2009-08-28 11:59:38 +04:00
|
|
|
if (OldMethod && NewMethod && !NewMethod->getFriendObjectKind() &&
|
2009-07-22 03:53:31 +04:00
|
|
|
NewMethod->getLexicalDeclContext()->isRecord()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
// -- Member function declarations with the same name and the
|
|
|
|
// same parameter types cannot be overloaded if any of them
|
2008-10-21 20:13:35 +04:00
|
|
|
// is a static member function declaration.
|
|
|
|
if (OldMethod->isStatic() || NewMethod->isStatic()) {
|
|
|
|
Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
|
2009-02-16 20:45:42 +03:00
|
|
|
return true;
|
2008-10-21 20:13:35 +04:00
|
|
|
}
|
2008-12-16 00:24:18 +03:00
|
|
|
|
|
|
|
// C++ [class.mem]p1:
|
|
|
|
// [...] A member shall not be declared twice in the
|
|
|
|
// member-specification, except that a nested class or member
|
|
|
|
// class template can be declared and then later defined.
|
2009-03-12 02:52:16 +03:00
|
|
|
unsigned NewDiag;
|
|
|
|
if (isa<CXXConstructorDecl>(OldMethod))
|
|
|
|
NewDiag = diag::err_constructor_redeclared;
|
|
|
|
else if (isa<CXXDestructorDecl>(NewMethod))
|
|
|
|
NewDiag = diag::err_destructor_redeclared;
|
|
|
|
else if (isa<CXXConversionDecl>(NewMethod))
|
|
|
|
NewDiag = diag::err_conv_function_redeclared;
|
|
|
|
else
|
|
|
|
NewDiag = diag::err_member_redeclared;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-12 02:52:16 +03:00
|
|
|
Diag(New->getLocation(), NewDiag);
|
|
|
|
Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
|
2008-10-21 20:13:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// (C++98 8.3.5p3):
|
|
|
|
// All declarations for a function shall agree exactly in both the
|
|
|
|
// return type and the parameter-type-list.
|
2009-02-24 04:23:02 +03:00
|
|
|
if (OldQType == NewQType)
|
|
|
|
return MergeCompatibleFunctionDecls(New, Old);
|
2008-10-21 20:13:35 +04:00
|
|
|
|
|
|
|
// Fall through for conflicting redeclarations and redefinitions.
|
2008-04-21 06:02:58 +04:00
|
|
|
}
|
2008-04-08 08:40:51 +04:00
|
|
|
|
|
|
|
// C: Function types need to be compatible, not identical. This handles
|
2008-01-14 23:51:29 +03:00
|
|
|
// duplicate function decls like "void f(int); void f(enum X);" properly.
|
2008-04-08 08:40:51 +04:00
|
|
|
if (!getLangOptions().CPlusPlus &&
|
2008-08-22 04:56:42 +04:00
|
|
|
Context.typesAreCompatible(OldQType, NewQType)) {
|
2009-09-22 03:43:11 +04:00
|
|
|
const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
|
|
|
|
const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
|
2009-02-27 02:50:07 +03:00
|
|
|
const FunctionProtoType *OldProto = 0;
|
|
|
|
if (isa<FunctionNoProtoType>(NewFuncType) &&
|
2009-03-07 01:43:54 +03:00
|
|
|
(OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
|
2009-02-16 21:20:44 +03:00
|
|
|
// The old declaration provided a function prototype, but the
|
|
|
|
// new declaration does not. Merge in the prototype.
|
2009-05-28 02:11:52 +04:00
|
|
|
assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
|
2009-02-16 21:20:44 +03:00
|
|
|
llvm::SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(),
|
|
|
|
OldProto->arg_type_end());
|
|
|
|
NewQType = Context.getFunctionType(NewFuncType->getResultType(),
|
2009-05-21 13:52:38 +04:00
|
|
|
ParamTypes.data(), ParamTypes.size(),
|
2009-02-16 21:20:44 +03:00
|
|
|
OldProto->isVariadic(),
|
|
|
|
OldProto->getTypeQuals());
|
|
|
|
New->setType(NewQType);
|
2009-05-15 01:46:00 +04:00
|
|
|
New->setHasInheritedPrototype();
|
2009-02-16 23:58:07 +03:00
|
|
|
|
|
|
|
// Synthesize a parameter for each argument type.
|
|
|
|
llvm::SmallVector<ParmVarDecl*, 16> Params;
|
2009-09-09 19:08:12 +04:00
|
|
|
for (FunctionProtoType::arg_type_iterator
|
|
|
|
ParamType = OldProto->arg_type_begin(),
|
2009-02-16 23:58:07 +03:00
|
|
|
ParamEnd = OldProto->arg_type_end();
|
|
|
|
ParamType != ParamEnd; ++ParamType) {
|
|
|
|
ParmVarDecl *Param = ParmVarDecl::Create(Context, New,
|
|
|
|
SourceLocation(), 0,
|
2009-08-19 05:27:57 +04:00
|
|
|
*ParamType, /*DInfo=*/0,
|
|
|
|
VarDecl::None, 0);
|
2009-02-16 23:58:07 +03:00
|
|
|
Param->setImplicit();
|
|
|
|
Params.push_back(Param);
|
|
|
|
}
|
|
|
|
|
2009-05-21 13:52:38 +04:00
|
|
|
New->setParams(Context, Params.data(), Params.size());
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-03-07 01:43:54 +03:00
|
|
|
|
|
|
|
return MergeCompatibleFunctionDecls(New, Old);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GNU C permits a K&R definition to follow a prototype declaration
|
|
|
|
// if the declared types of the parameters in the K&R definition
|
|
|
|
// match the types in the prototype declaration, even when the
|
|
|
|
// promoted types of the parameters from the K&R definition differ
|
|
|
|
// from the types in the prototype. GCC then keeps the types from
|
|
|
|
// the prototype.
|
2009-06-01 13:24:59 +04:00
|
|
|
//
|
|
|
|
// If a variadic prototype is followed by a non-variadic K&R definition,
|
|
|
|
// the K&R definition becomes variadic. This is sort of an edge case, but
|
|
|
|
// it's legal per the standard depending on how you read C99 6.7.5.3p15 and
|
|
|
|
// C99 6.9.1p8.
|
2009-03-07 01:43:54 +03:00
|
|
|
if (!getLangOptions().CPlusPlus &&
|
|
|
|
Old->hasPrototype() && !New->hasPrototype() &&
|
2009-09-22 03:43:11 +04:00
|
|
|
New->getType()->getAs<FunctionProtoType>() &&
|
2009-03-07 01:43:54 +03:00
|
|
|
Old->getNumParams() == New->getNumParams()) {
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTypes;
|
|
|
|
llvm::SmallVector<GNUCompatibleParamWarning, 16> Warnings;
|
2009-09-09 19:08:12 +04:00
|
|
|
const FunctionProtoType *OldProto
|
2009-09-22 03:43:11 +04:00
|
|
|
= Old->getType()->getAs<FunctionProtoType>();
|
2009-09-09 19:08:12 +04:00
|
|
|
const FunctionProtoType *NewProto
|
2009-09-22 03:43:11 +04:00
|
|
|
= New->getType()->getAs<FunctionProtoType>();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-07 01:43:54 +03:00
|
|
|
// Determine whether this is the GNU C extension.
|
2009-06-01 13:24:59 +04:00
|
|
|
QualType MergedReturn = Context.mergeTypes(OldProto->getResultType(),
|
|
|
|
NewProto->getResultType());
|
|
|
|
bool LooseCompatible = !MergedReturn.isNull();
|
2009-09-09 19:08:12 +04:00
|
|
|
for (unsigned Idx = 0, End = Old->getNumParams();
|
2009-06-01 13:24:59 +04:00
|
|
|
LooseCompatible && Idx != End; ++Idx) {
|
2009-03-07 01:43:54 +03:00
|
|
|
ParmVarDecl *OldParm = Old->getParamDecl(Idx);
|
|
|
|
ParmVarDecl *NewParm = New->getParamDecl(Idx);
|
2009-09-09 19:08:12 +04:00
|
|
|
if (Context.typesAreCompatible(OldParm->getType(),
|
2009-03-07 01:43:54 +03:00
|
|
|
NewProto->getArgType(Idx))) {
|
|
|
|
ArgTypes.push_back(NewParm->getType());
|
|
|
|
} else if (Context.typesAreCompatible(OldParm->getType(),
|
|
|
|
NewParm->getType())) {
|
2009-09-09 19:08:12 +04:00
|
|
|
GNUCompatibleParamWarning Warn
|
2009-03-07 01:43:54 +03:00
|
|
|
= { OldParm, NewParm, NewProto->getArgType(Idx) };
|
|
|
|
Warnings.push_back(Warn);
|
|
|
|
ArgTypes.push_back(NewParm->getType());
|
|
|
|
} else
|
2009-06-01 13:24:59 +04:00
|
|
|
LooseCompatible = false;
|
2009-03-07 01:43:54 +03:00
|
|
|
}
|
|
|
|
|
2009-06-01 13:24:59 +04:00
|
|
|
if (LooseCompatible) {
|
2009-03-07 01:43:54 +03:00
|
|
|
for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
|
|
|
|
Diag(Warnings[Warn].NewParm->getLocation(),
|
|
|
|
diag::ext_param_promoted_not_compatible_with_prototype)
|
|
|
|
<< Warnings[Warn].PromotedType
|
|
|
|
<< Warnings[Warn].OldParm->getType();
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(Warnings[Warn].OldParm->getLocation(),
|
2009-03-07 01:43:54 +03:00
|
|
|
diag::note_previous_declaration);
|
|
|
|
}
|
2009-02-16 23:58:07 +03:00
|
|
|
|
2009-06-01 13:24:59 +04:00
|
|
|
New->setType(Context.getFunctionType(MergedReturn, &ArgTypes[0],
|
|
|
|
ArgTypes.size(),
|
|
|
|
OldProto->isVariadic(), 0));
|
2009-03-07 01:43:54 +03:00
|
|
|
return MergeCompatibleFunctionDecls(New, Old);
|
2009-02-16 21:20:44 +03:00
|
|
|
}
|
|
|
|
|
2009-03-07 01:43:54 +03:00
|
|
|
// Fall through to diagnose conflicting types.
|
2008-04-08 08:40:51 +04:00
|
|
|
}
|
2007-11-06 09:07:26 +03:00
|
|
|
|
2008-01-16 18:01:34 +03:00
|
|
|
// A function that has already been declared has been redeclared or defined
|
|
|
|
// with a different type- show appropriate diagnostic
|
2009-09-12 04:22:50 +04:00
|
|
|
if (unsigned BuiltinID = Old->getBuiltinID()) {
|
2009-02-16 20:45:42 +03:00
|
|
|
// The user has declared a builtin function with an incompatible
|
|
|
|
// signature.
|
|
|
|
if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
|
|
|
|
// The function the user is redeclaring is a library-defined
|
|
|
|
// function like 'malloc' or 'printf'. Warn about the
|
2009-03-23 20:47:24 +03:00
|
|
|
// redeclaration, then pretend that we don't know about this
|
|
|
|
// library built-in.
|
2009-02-16 20:45:42 +03:00
|
|
|
Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
|
|
|
|
Diag(Old->getLocation(), diag::note_previous_builtin_declaration)
|
|
|
|
<< Old << Old->getType();
|
2009-03-23 20:47:24 +03:00
|
|
|
New->getIdentifier()->setBuiltinID(Builtin::NotBuiltin);
|
|
|
|
Old->setInvalidDecl();
|
|
|
|
return false;
|
2009-02-16 20:45:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
PrevDiag = diag::note_previous_builtin_declaration;
|
|
|
|
}
|
2008-01-16 18:01:34 +03:00
|
|
|
|
2008-11-24 08:29:24 +03:00
|
|
|
Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
|
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64504 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-14 02:20:09 +03:00
|
|
|
Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
|
2009-02-16 20:45:42 +03:00
|
|
|
return true;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-02-24 04:23:02 +03:00
|
|
|
/// \brief Completes the merge of two function declarations that are
|
2009-09-09 19:08:12 +04:00
|
|
|
/// known to be compatible.
|
2009-02-24 04:23:02 +03:00
|
|
|
///
|
|
|
|
/// This routine handles the merging of attributes and other
|
|
|
|
/// properties of function declarations form the old declaration to
|
|
|
|
/// the new declaration, once we know that New is in fact a
|
|
|
|
/// redeclaration of Old.
|
|
|
|
///
|
|
|
|
/// \returns false
|
|
|
|
bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old) {
|
|
|
|
// Merge the attributes
|
2009-03-04 09:05:19 +03:00
|
|
|
MergeAttributes(New, Old, Context);
|
2009-02-24 04:23:02 +03:00
|
|
|
|
|
|
|
// Merge the storage class.
|
2009-09-13 11:46:26 +04:00
|
|
|
if (Old->getStorageClass() != FunctionDecl::Extern &&
|
|
|
|
Old->getStorageClass() != FunctionDecl::None)
|
2009-04-28 10:37:30 +04:00
|
|
|
New->setStorageClass(Old->getStorageClass());
|
2009-02-24 04:23:02 +03:00
|
|
|
|
|
|
|
// Merge "pure" flag.
|
|
|
|
if (Old->isPure())
|
|
|
|
New->setPure();
|
|
|
|
|
|
|
|
// Merge the "deleted" flag.
|
|
|
|
if (Old->isDeleted())
|
|
|
|
New->setDeleted();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-24 04:23:02 +03:00
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
return MergeCXXFunctionDecl(New, Old);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
/// MergeVarDecl - We just parsed a variable 'New' which has the same name
|
|
|
|
/// and scope as a previous declaration 'Old'. Figure out how to resolve this
|
|
|
|
/// situation, merging decls or emitting diagnostics as appropriate.
|
|
|
|
///
|
2009-09-09 19:08:12 +04:00
|
|
|
/// Tentative definition rules (C99 6.9.2p2) are checked by
|
|
|
|
/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
|
2008-08-08 21:50:35 +04:00
|
|
|
/// definitions here, since the initializer hasn't been attached.
|
2009-09-09 19:08:12 +04:00
|
|
|
///
|
2009-11-19 01:49:29 +03:00
|
|
|
void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
|
|
|
|
// If the new decl is already invalid, don't do any other checking.
|
|
|
|
if (New->isInvalidDecl())
|
|
|
|
return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Verify the old decl was also a variable.
|
2009-11-19 01:49:29 +03:00
|
|
|
VarDecl *Old = 0;
|
|
|
|
if (!Previous.isSingleResult() ||
|
|
|
|
!(Old = dyn_cast<VarDecl>(Previous.getFoundDecl()))) {
|
2008-11-20 09:38:18 +03:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition_different_kind)
|
2008-11-24 00:45:46 +03:00
|
|
|
<< New->getDeclName();
|
2009-11-19 01:49:29 +03:00
|
|
|
Diag(Previous.getRepresentativeDecl()->getLocation(),
|
|
|
|
diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-03-03 06:28:21 +03:00
|
|
|
|
2009-03-04 09:05:19 +03:00
|
|
|
MergeAttributes(New, Old, Context);
|
2008-03-03 06:28:21 +03:00
|
|
|
|
2009-01-25 02:49:55 +03:00
|
|
|
// Merge the types
|
2009-05-16 17:54:38 +04:00
|
|
|
QualType MergedT;
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
if (Context.hasSameType(New->getType(), Old->getType()))
|
|
|
|
MergedT = New->getType();
|
2009-09-09 05:45:28 +04:00
|
|
|
// C++ [basic.types]p7:
|
2009-09-09 19:08:12 +04:00
|
|
|
// [...] The declared type of an array object might be an array of
|
|
|
|
// unknown size and therefore be incomplete at one point in a
|
2009-09-09 05:45:28 +04:00
|
|
|
// translation unit and complete later on; [...]
|
2009-09-09 19:08:12 +04:00
|
|
|
else if (Old->getType()->isIncompleteArrayType() &&
|
2009-09-09 10:04:29 +04:00
|
|
|
New->getType()->isArrayType()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
CanQual<ArrayType> OldArray
|
2009-09-09 10:04:29 +04:00
|
|
|
= Context.getCanonicalType(Old->getType())->getAs<ArrayType>();
|
2009-09-09 19:08:12 +04:00
|
|
|
CanQual<ArrayType> NewArray
|
2009-09-09 10:04:29 +04:00
|
|
|
= Context.getCanonicalType(New->getType())->getAs<ArrayType>();
|
|
|
|
if (OldArray->getElementType() == NewArray->getElementType())
|
|
|
|
MergedT = New->getType();
|
|
|
|
}
|
2009-05-16 17:54:38 +04:00
|
|
|
} else {
|
|
|
|
MergedT = Context.mergeTypes(New->getType(), Old->getType());
|
|
|
|
}
|
2009-01-25 02:49:55 +03:00
|
|
|
if (MergedT.isNull()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition_different_type)
|
2009-01-09 22:42:16 +03:00
|
|
|
<< New->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2008-01-30 03:44:01 +03:00
|
|
|
}
|
2009-01-25 02:49:55 +03:00
|
|
|
New->setType(MergedT);
|
2009-03-12 02:52:16 +03:00
|
|
|
|
2008-01-30 03:44:01 +03:00
|
|
|
// C99 6.2.2p4: Check if we have a static decl followed by a non-static.
|
|
|
|
if (New->getStorageClass() == VarDecl::Static &&
|
2009-04-14 06:25:56 +04:00
|
|
|
(Old->getStorageClass() == VarDecl::None || Old->hasExternalStorage())) {
|
2008-11-24 08:29:24 +03:00
|
|
|
Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2008-01-30 03:44:01 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
// C99 6.2.2p4:
|
2009-03-20 01:01:50 +03:00
|
|
|
// For an identifier declared with the storage-class specifier
|
|
|
|
// extern in a scope in which a prior declaration of that
|
|
|
|
// identifier is visible,23) if the prior declaration specifies
|
|
|
|
// internal or external linkage, the linkage of the identifier at
|
|
|
|
// the later declaration is the same as the linkage specified at
|
|
|
|
// the prior declaration. If no prior declaration is visible, or
|
|
|
|
// if the prior declaration specifies no linkage, then the
|
|
|
|
// identifier has external linkage.
|
2009-03-23 19:17:01 +03:00
|
|
|
if (New->hasExternalStorage() && Old->hasLinkage())
|
2009-03-20 01:01:50 +03:00
|
|
|
/* Okay */;
|
|
|
|
else if (New->getStorageClass() != VarDecl::Static &&
|
|
|
|
Old->getStorageClass() == VarDecl::Static) {
|
2008-11-24 08:29:24 +03:00
|
|
|
Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2008-01-30 03:44:01 +03:00
|
|
|
}
|
2009-04-14 06:25:56 +04:00
|
|
|
|
2008-09-17 18:05:40 +04:00
|
|
|
// Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-14 06:25:56 +04:00
|
|
|
// FIXME: The test for external storage here seems wrong? We still
|
|
|
|
// need to check for mismatches.
|
|
|
|
if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
|
2009-03-12 02:52:16 +03:00
|
|
|
// Don't complain about out-of-line definitions of static members.
|
|
|
|
!(Old->getLexicalDeclContext()->isRecord() &&
|
|
|
|
!New->getLexicalDeclContext()->isRecord())) {
|
2008-11-24 00:45:46 +03:00
|
|
|
Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
2009-04-25 12:06:05 +04:00
|
|
|
return New->setInvalidDecl();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-03-11 02:43:53 +03:00
|
|
|
|
2009-04-20 00:27:55 +04:00
|
|
|
if (New->isThreadSpecified() && !Old->isThreadSpecified()) {
|
|
|
|
Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
|
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
|
|
|
} else if (!New->isThreadSpecified() && Old->isThreadSpecified()) {
|
|
|
|
Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
|
|
|
|
Diag(Old->getLocation(), diag::note_previous_definition);
|
|
|
|
}
|
|
|
|
|
2009-03-11 02:43:53 +03:00
|
|
|
// Keep a chain of previous declarations.
|
|
|
|
New->setPreviousDeclaration(Old);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-07-24 06:49:01 +04:00
|
|
|
/// CheckFallThrough - Check that we don't fall off the end of a
|
|
|
|
/// Statement that should return a value.
|
|
|
|
///
|
|
|
|
/// \returns AlwaysFallThrough iff we always fall off the end of the statement,
|
2009-10-27 05:07:23 +03:00
|
|
|
/// MaybeFallThrough iff we might or might not fall off the end,
|
|
|
|
/// NeverFallThroughOrReturn iff we never fall off the end of the statement or
|
|
|
|
/// return. We assume NeverFallThrough iff we never fall off the end of the
|
|
|
|
/// statement but we may return. We assume that functions not marked noreturn
|
|
|
|
/// will return.
|
2009-07-23 03:56:57 +04:00
|
|
|
Sema::ControlFlowKind Sema::CheckFallThrough(Stmt *Root) {
|
2009-10-21 03:48:29 +04:00
|
|
|
// FIXME: Eventually share this CFG object when we have other warnings based
|
|
|
|
// of the CFG. This can be done using AnalysisContext.
|
2009-07-23 03:56:57 +04:00
|
|
|
llvm::OwningPtr<CFG> cfg (CFG::buildCFG(Root, &Context));
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-23 03:56:57 +04:00
|
|
|
// FIXME: They should never return 0, fix that, delete this code.
|
|
|
|
if (cfg == 0)
|
2009-10-27 04:59:05 +03:00
|
|
|
// FIXME: This should be NeverFallThrough
|
|
|
|
return NeverFallThroughOrReturn;
|
2009-07-24 02:40:11 +04:00
|
|
|
// The CFG leaves in dead things, and we don't want to dead code paths to
|
|
|
|
// confuse us, so we mark all live things first.
|
2009-07-23 03:56:57 +04:00
|
|
|
std::queue<CFGBlock*> workq;
|
2009-07-23 09:01:54 +04:00
|
|
|
llvm::BitVector live(cfg->getNumBlockIDs());
|
2009-07-23 03:56:57 +04:00
|
|
|
// Prep work queue
|
|
|
|
workq.push(&cfg->getEntry());
|
|
|
|
// Solve
|
|
|
|
while (!workq.empty()) {
|
|
|
|
CFGBlock *item = workq.front();
|
|
|
|
workq.pop();
|
2009-07-23 09:01:54 +04:00
|
|
|
live.set(item->getBlockID());
|
2009-07-24 02:40:11 +04:00
|
|
|
for (CFGBlock::succ_iterator I=item->succ_begin(),
|
|
|
|
E=item->succ_end();
|
|
|
|
I != E;
|
|
|
|
++I) {
|
|
|
|
if ((*I) && !live[(*I)->getBlockID()]) {
|
|
|
|
live.set((*I)->getBlockID());
|
|
|
|
workq.push(*I);
|
2009-07-23 03:56:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-24 02:40:11 +04:00
|
|
|
// Now we know what is live, we check the live precessors of the exit block
|
|
|
|
// and look for fall through paths, being careful to ignore normal returns,
|
|
|
|
// and exceptional paths.
|
2009-07-23 03:56:57 +04:00
|
|
|
bool HasLiveReturn = false;
|
|
|
|
bool HasFakeEdge = false;
|
|
|
|
bool HasPlainEdge = false;
|
2009-10-27 04:07:53 +03:00
|
|
|
for (CFGBlock::pred_iterator I=cfg->getExit().pred_begin(),
|
2009-07-24 02:40:11 +04:00
|
|
|
E = cfg->getExit().pred_end();
|
|
|
|
I != E;
|
|
|
|
++I) {
|
|
|
|
CFGBlock& B = **I;
|
|
|
|
if (!live[B.getBlockID()])
|
2009-07-23 03:56:57 +04:00
|
|
|
continue;
|
2009-07-24 02:40:11 +04:00
|
|
|
if (B.size() == 0) {
|
2009-07-23 03:56:57 +04:00
|
|
|
// A labeled empty statement, or the entry block...
|
|
|
|
HasPlainEdge = true;
|
|
|
|
continue;
|
|
|
|
}
|
2009-07-24 02:40:11 +04:00
|
|
|
Stmt *S = B[B.size()-1];
|
2009-07-23 03:56:57 +04:00
|
|
|
if (isa<ReturnStmt>(S)) {
|
|
|
|
HasLiveReturn = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (isa<ObjCAtThrowStmt>(S)) {
|
|
|
|
HasFakeEdge = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (isa<CXXThrowExpr>(S)) {
|
|
|
|
HasFakeEdge = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bool NoReturnEdge = false;
|
2009-07-24 02:40:11 +04:00
|
|
|
if (CallExpr *C = dyn_cast<CallExpr>(S)) {
|
|
|
|
Expr *CEE = C->getCallee()->IgnoreParenCasts();
|
2009-07-26 01:26:53 +04:00
|
|
|
if (CEE->getType().getNoReturnAttr()) {
|
|
|
|
NoReturnEdge = true;
|
|
|
|
HasFakeEdge = true;
|
|
|
|
} else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) {
|
2009-07-24 02:40:11 +04:00
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
|
|
|
|
if (FD->hasAttr<NoReturnAttr>()) {
|
|
|
|
NoReturnEdge = true;
|
|
|
|
HasFakeEdge = true;
|
2009-07-23 03:56:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 02:40:11 +04:00
|
|
|
}
|
|
|
|
// FIXME: Add noreturn message sends.
|
2009-07-23 03:56:57 +04:00
|
|
|
if (NoReturnEdge == false)
|
|
|
|
HasPlainEdge = true;
|
|
|
|
}
|
2009-10-27 04:59:05 +03:00
|
|
|
if (!HasPlainEdge) {
|
|
|
|
if (HasLiveReturn)
|
|
|
|
return NeverFallThrough;
|
|
|
|
return NeverFallThroughOrReturn;
|
|
|
|
}
|
2009-07-24 02:40:11 +04:00
|
|
|
if (HasFakeEdge || HasLiveReturn)
|
|
|
|
return MaybeFallThrough;
|
|
|
|
// This says AlwaysFallThrough for calls to functions that are not marked
|
|
|
|
// noreturn, that don't return. If people would like this warning to be more
|
|
|
|
// accurate, such functions should be marked as noreturn.
|
|
|
|
return AlwaysFallThrough;
|
2009-07-23 03:56:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// CheckFallThroughForFunctionDef - Check that we don't fall off the end of a
|
2009-07-24 06:49:01 +04:00
|
|
|
/// function that should return a value. Check that we don't fall off the end
|
2009-07-29 02:04:01 +04:00
|
|
|
/// of a noreturn function. We assume that functions and blocks not marked
|
|
|
|
/// noreturn will return.
|
2009-07-23 03:56:57 +04:00
|
|
|
void Sema::CheckFallThroughForFunctionDef(Decl *D, Stmt *Body) {
|
2009-07-24 02:40:11 +04:00
|
|
|
// FIXME: Would be nice if we had a better way to control cascading errors,
|
|
|
|
// but for now, avoid them. The problem is that when Parse sees:
|
|
|
|
// int foo() { return a; }
|
|
|
|
// The return is eaten and the Sema code sees just:
|
|
|
|
// int foo() { }
|
|
|
|
// which this code would then warn about.
|
2009-07-23 03:56:57 +04:00
|
|
|
if (getDiagnostics().hasErrorOccurred())
|
|
|
|
return;
|
2009-10-26 01:43:07 +03:00
|
|
|
|
2009-07-24 06:49:01 +04:00
|
|
|
bool ReturnsVoid = false;
|
|
|
|
bool HasNoReturn = false;
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
|
2009-10-02 03:25:31 +04:00
|
|
|
// If the result type of the function is a dependent type, we don't know
|
|
|
|
// whether it will be void or not, so don't
|
|
|
|
if (FD->getResultType()->isDependentType())
|
|
|
|
return;
|
2009-07-24 06:49:01 +04:00
|
|
|
if (FD->getResultType()->isVoidType())
|
|
|
|
ReturnsVoid = true;
|
|
|
|
if (FD->hasAttr<NoReturnAttr>())
|
|
|
|
HasNoReturn = true;
|
|
|
|
} else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
if (MD->getResultType()->isVoidType())
|
|
|
|
ReturnsVoid = true;
|
|
|
|
if (MD->hasAttr<NoReturnAttr>())
|
|
|
|
HasNoReturn = true;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-29 03:11:12 +04:00
|
|
|
// Short circuit for compilation speed.
|
2009-07-24 06:49:01 +04:00
|
|
|
if ((Diags.getDiagnosticLevel(diag::warn_maybe_falloff_nonvoid_function)
|
|
|
|
== Diagnostic::Ignored || ReturnsVoid)
|
|
|
|
&& (Diags.getDiagnosticLevel(diag::warn_noreturn_function_has_return_expr)
|
2009-07-29 03:11:12 +04:00
|
|
|
== Diagnostic::Ignored || !HasNoReturn)
|
|
|
|
&& (Diags.getDiagnosticLevel(diag::warn_suggest_noreturn_block)
|
|
|
|
== Diagnostic::Ignored || !ReturnsVoid))
|
2009-07-23 03:56:57 +04:00
|
|
|
return;
|
2009-10-02 03:25:31 +04:00
|
|
|
// FIXME: Function try block
|
2009-07-23 03:56:57 +04:00
|
|
|
if (CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) {
|
|
|
|
switch (CheckFallThrough(Body)) {
|
|
|
|
case MaybeFallThrough:
|
2009-07-24 06:49:01 +04:00
|
|
|
if (HasNoReturn)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::warn_falloff_noreturn_function);
|
|
|
|
else if (!ReturnsVoid)
|
|
|
|
Diag(Compound->getRBracLoc(),diag::warn_maybe_falloff_nonvoid_function);
|
2009-07-23 03:56:57 +04:00
|
|
|
break;
|
|
|
|
case AlwaysFallThrough:
|
2009-07-24 06:49:01 +04:00
|
|
|
if (HasNoReturn)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::warn_falloff_noreturn_function);
|
|
|
|
else if (!ReturnsVoid)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::warn_falloff_nonvoid_function);
|
2009-07-23 03:56:57 +04:00
|
|
|
break;
|
2009-10-27 04:59:05 +03:00
|
|
|
case NeverFallThroughOrReturn:
|
2009-10-26 01:43:07 +03:00
|
|
|
if (ReturnsVoid && !HasNoReturn)
|
2009-07-29 03:11:12 +04:00
|
|
|
Diag(Compound->getLBracLoc(), diag::warn_suggest_noreturn_function);
|
2009-07-23 03:56:57 +04:00
|
|
|
break;
|
2009-10-27 04:59:05 +03:00
|
|
|
case NeverFallThrough:
|
|
|
|
break;
|
2009-07-23 03:56:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-29 02:04:01 +04:00
|
|
|
/// CheckFallThroughForBlock - Check that we don't fall off the end of a block
|
|
|
|
/// that should return a value. Check that we don't fall off the end of a
|
|
|
|
/// noreturn block. We assume that functions and blocks not marked noreturn
|
|
|
|
/// will return.
|
|
|
|
void Sema::CheckFallThroughForBlock(QualType BlockTy, Stmt *Body) {
|
|
|
|
// FIXME: Would be nice if we had a better way to control cascading errors,
|
|
|
|
// but for now, avoid them. The problem is that when Parse sees:
|
|
|
|
// int foo() { return a; }
|
|
|
|
// The return is eaten and the Sema code sees just:
|
|
|
|
// int foo() { }
|
|
|
|
// which this code would then warn about.
|
|
|
|
if (getDiagnostics().hasErrorOccurred())
|
|
|
|
return;
|
|
|
|
bool ReturnsVoid = false;
|
|
|
|
bool HasNoReturn = false;
|
2009-10-26 01:43:07 +03:00
|
|
|
if (const FunctionType *FT =BlockTy->getPointeeType()->getAs<FunctionType>()){
|
2009-07-29 02:04:01 +04:00
|
|
|
if (FT->getResultType()->isVoidType())
|
|
|
|
ReturnsVoid = true;
|
|
|
|
if (FT->getNoReturnAttr())
|
|
|
|
HasNoReturn = true;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-29 03:11:12 +04:00
|
|
|
// Short circuit for compilation speed.
|
|
|
|
if (ReturnsVoid
|
|
|
|
&& !HasNoReturn
|
|
|
|
&& (Diags.getDiagnosticLevel(diag::warn_suggest_noreturn_block)
|
|
|
|
== Diagnostic::Ignored || !ReturnsVoid))
|
2009-07-29 02:04:01 +04:00
|
|
|
return;
|
|
|
|
// FIXME: Funtion try block
|
|
|
|
if (CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) {
|
|
|
|
switch (CheckFallThrough(Body)) {
|
|
|
|
case MaybeFallThrough:
|
|
|
|
if (HasNoReturn)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::err_noreturn_block_has_return_expr);
|
|
|
|
else if (!ReturnsVoid)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::err_maybe_falloff_nonvoid_block);
|
|
|
|
break;
|
|
|
|
case AlwaysFallThrough:
|
|
|
|
if (HasNoReturn)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::err_noreturn_block_has_return_expr);
|
|
|
|
else if (!ReturnsVoid)
|
|
|
|
Diag(Compound->getRBracLoc(), diag::err_falloff_nonvoid_block);
|
|
|
|
break;
|
2009-10-27 04:59:05 +03:00
|
|
|
case NeverFallThroughOrReturn:
|
2009-07-29 03:11:12 +04:00
|
|
|
if (ReturnsVoid)
|
|
|
|
Diag(Compound->getLBracLoc(), diag::warn_suggest_noreturn_block);
|
2009-07-29 02:04:01 +04:00
|
|
|
break;
|
2009-10-27 04:59:05 +03:00
|
|
|
case NeverFallThrough:
|
|
|
|
break;
|
2009-07-29 02:04:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-08 08:40:51 +04:00
|
|
|
/// CheckParmsForFunctionDef - Check that the parameters of the given
|
|
|
|
/// function are appropriate for the definition of a function. This
|
|
|
|
/// takes care of any checks that cannot be performed on the
|
|
|
|
/// declaration itself, e.g., that the types of each of the function
|
|
|
|
/// parameters are complete.
|
|
|
|
bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
|
|
|
|
bool HasInvalidParm = false;
|
|
|
|
for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
|
|
|
|
ParmVarDecl *Param = FD->getParamDecl(p);
|
|
|
|
|
|
|
|
// C99 6.7.5.3p4: the parameters in a parameter type list in a
|
|
|
|
// function declarator that is part of a function definition of
|
|
|
|
// that function shall not have incomplete type.
|
2009-03-24 22:52:54 +03:00
|
|
|
//
|
|
|
|
// This is also C++ [dcl.fct]p6.
|
2009-01-19 22:26:10 +03:00
|
|
|
if (!Param->isInvalidDecl() &&
|
2009-03-09 19:13:40 +03:00
|
|
|
RequireCompleteType(Param->getLocation(), Param->getType(),
|
2009-01-19 22:26:10 +03:00
|
|
|
diag::err_typecheck_decl_incomplete_type)) {
|
2008-04-08 08:40:51 +04:00
|
|
|
Param->setInvalidDecl();
|
|
|
|
HasInvalidParm = true;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-12-17 10:32:46 +03:00
|
|
|
// C99 6.9.1p5: If the declarator includes a parameter type list, the
|
|
|
|
// declaration of each parameter shall include an identifier.
|
2009-09-09 19:08:12 +04:00
|
|
|
if (Param->getIdentifier() == 0 &&
|
2009-02-16 23:58:07 +03:00
|
|
|
!Param->isImplicit() &&
|
|
|
|
!getLangOptions().CPlusPlus)
|
2008-12-17 10:32:46 +03:00
|
|
|
Diag(Param->getLocation(), diag::err_parameter_name_omitted);
|
2008-04-08 08:40:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return HasInvalidParm;
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
|
|
|
|
/// no declarator (e.g. "struct foo;") is parsed.
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
|
2009-04-10 01:26:42 +04:00
|
|
|
// FIXME: Error on auto/register at file scope
|
|
|
|
// FIXME: Error on inline/virtual/explicit
|
|
|
|
// FIXME: Error on invalid restrict
|
2009-04-20 00:27:55 +04:00
|
|
|
// FIXME: Warn on useless __thread
|
2009-04-10 01:26:42 +04:00
|
|
|
// FIXME: Warn on useless const/volatile
|
|
|
|
// FIXME: Warn on useless static/extern/typedef/private_extern/mutable
|
|
|
|
// FIXME: Warn on useless attributes
|
2009-10-08 03:34:25 +04:00
|
|
|
Decl *TagD = 0;
|
2009-02-09 18:09:02 +03:00
|
|
|
TagDecl *Tag = 0;
|
|
|
|
if (DS.getTypeSpecType() == DeclSpec::TST_class ||
|
|
|
|
DS.getTypeSpecType() == DeclSpec::TST_struct ||
|
|
|
|
DS.getTypeSpecType() == DeclSpec::TST_union ||
|
2009-05-13 03:25:50 +04:00
|
|
|
DS.getTypeSpecType() == DeclSpec::TST_enum) {
|
2009-10-08 03:34:25 +04:00
|
|
|
TagD = static_cast<Decl *>(DS.getTypeRep());
|
|
|
|
|
|
|
|
if (!TagD) // We probably had an error
|
2009-05-13 03:25:50 +04:00
|
|
|
return DeclPtrTy();
|
|
|
|
|
2009-08-06 06:15:43 +04:00
|
|
|
// Note that the above type specs guarantee that the
|
|
|
|
// type rep is a Decl, whereas in many of the others
|
|
|
|
// it's a Type.
|
2009-10-08 03:34:25 +04:00
|
|
|
Tag = dyn_cast<TagDecl>(TagD);
|
2009-05-13 03:25:50 +04:00
|
|
|
}
|
2009-02-09 18:09:02 +03:00
|
|
|
|
2009-09-26 10:47:28 +04:00
|
|
|
if (DS.isFriendSpecified()) {
|
2009-10-08 03:34:25 +04:00
|
|
|
// If we're dealing with a class template decl, assume that the
|
|
|
|
// template routines are handling it.
|
|
|
|
if (TagD && isa<ClassTemplateDecl>(TagD))
|
2009-09-26 10:47:28 +04:00
|
|
|
return DeclPtrTy();
|
2009-10-08 03:34:25 +04:00
|
|
|
return ActOnFriendTypeDecl(S, DS, MultiTemplateParamsArg(*this, 0, 0));
|
2009-09-26 10:47:28 +04:00
|
|
|
}
|
|
|
|
|
2009-01-13 01:49:06 +03:00
|
|
|
if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
|
2009-10-26 01:21:57 +03:00
|
|
|
// If there are attributes in the DeclSpec, apply them to the record.
|
|
|
|
if (const AttributeList *AL = DS.getAttributes())
|
|
|
|
ProcessDeclAttributeList(S, Record, AL);
|
|
|
|
|
2009-01-13 01:49:06 +03:00
|
|
|
if (!Record->getDeclName() && Record->isDefinition() &&
|
2009-03-07 02:06:59 +03:00
|
|
|
DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
|
|
|
|
if (getLangOptions().CPlusPlus ||
|
|
|
|
Record->getDeclContext()->isRecord())
|
|
|
|
return BuildAnonymousStructOrUnion(S, DS, Record);
|
|
|
|
|
|
|
|
Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
|
|
|
|
<< DS.getSourceRange();
|
|
|
|
}
|
2009-01-13 01:49:06 +03:00
|
|
|
|
|
|
|
// Microsoft allows unnamed struct/union fields. Don't complain
|
|
|
|
// about them.
|
|
|
|
// FIXME: Should we support Microsoft's extensions in this area?
|
|
|
|
if (Record->getDeclName() && getLangOptions().Microsoft)
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(Tag);
|
2009-01-13 01:49:06 +03:00
|
|
|
}
|
2009-09-26 10:47:28 +04:00
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
if (!DS.isMissingDeclaratorOk() &&
|
2009-02-07 01:42:48 +03:00
|
|
|
DS.getTypeSpecType() != DeclSpec::TST_error) {
|
2009-01-22 19:23:54 +03:00
|
|
|
// Warn about typedefs of enums without names, since this is an
|
|
|
|
// extension in both Microsoft an GNU.
|
2009-01-17 05:55:50 +03:00
|
|
|
if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
|
|
|
|
Tag && isa<EnumDecl>(Tag)) {
|
2009-01-22 19:23:54 +03:00
|
|
|
Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
|
2009-01-14 02:10:51 +03:00
|
|
|
<< DS.getSourceRange();
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(Tag);
|
2009-01-14 02:10:51 +03:00
|
|
|
}
|
|
|
|
|
2008-12-28 18:28:59 +03:00
|
|
|
Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
|
|
|
|
<< DS.getSourceRange();
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy();
|
2008-12-28 18:28:59 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(Tag);
|
2009-01-07 03:43:41 +03:00
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
/// We are trying to introduce the given name into the given context;
|
|
|
|
/// check if there's an existing declaration that can't be overloaded.
|
|
|
|
///
|
|
|
|
/// \return true if this is a forbidden redeclaration
|
|
|
|
bool Sema::CheckRedeclaration(DeclContext *DC,
|
|
|
|
DeclarationName Name,
|
|
|
|
SourceLocation NameLoc,
|
|
|
|
unsigned diagnostic) {
|
|
|
|
LookupResult R(*this, Name, NameLoc, LookupOrdinaryName,
|
|
|
|
ForRedeclaration);
|
|
|
|
LookupQualifiedName(R, DC);
|
|
|
|
|
|
|
|
if (R.empty()) return false;
|
|
|
|
|
|
|
|
if (R.getResultKind() == LookupResult::Found &&
|
|
|
|
isa<TagDecl>(R.getFoundDecl()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Pick a representative declaration.
|
|
|
|
NamedDecl *PrevDecl = (*R.begin())->getUnderlyingDecl();
|
|
|
|
|
|
|
|
Diag(NameLoc, diagnostic) << Name;
|
|
|
|
Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-07 03:43:41 +03:00
|
|
|
/// InjectAnonymousStructOrUnionMembers - Inject the members of the
|
|
|
|
/// anonymous struct or union AnonRecord into the owning context Owner
|
|
|
|
/// and scope S. This routine will be invoked just after we realize
|
|
|
|
/// that an unnamed union or struct is actually an anonymous union or
|
|
|
|
/// struct, e.g.,
|
|
|
|
///
|
|
|
|
/// @code
|
|
|
|
/// union {
|
|
|
|
/// int i;
|
|
|
|
/// float f;
|
|
|
|
/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
|
|
|
|
/// // f into the surrounding scope.x
|
|
|
|
/// @endcode
|
|
|
|
///
|
|
|
|
/// This routine is recursive, injecting the names of nested anonymous
|
|
|
|
/// structs/unions into the owning context and scope as well.
|
|
|
|
bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
|
|
|
|
RecordDecl *AnonRecord) {
|
2009-11-19 01:49:29 +03:00
|
|
|
unsigned diagKind
|
|
|
|
= AnonRecord->isUnion() ? diag::err_anonymous_union_member_redecl
|
|
|
|
: diag::err_anonymous_struct_member_redecl;
|
|
|
|
|
2009-01-07 03:43:41 +03:00
|
|
|
bool Invalid = false;
|
2009-06-30 06:36:12 +04:00
|
|
|
for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
|
|
|
|
FEnd = AnonRecord->field_end();
|
2009-01-07 03:43:41 +03:00
|
|
|
F != FEnd; ++F) {
|
|
|
|
if ((*F)->getDeclName()) {
|
2009-11-19 01:49:29 +03:00
|
|
|
if (CheckRedeclaration(Owner, (*F)->getDeclName(),
|
|
|
|
(*F)->getLocation(), diagKind)) {
|
2009-01-07 03:43:41 +03:00
|
|
|
// C++ [class.union]p2:
|
|
|
|
// The names of the members of an anonymous union shall be
|
|
|
|
// distinct from the names of any other entity in the
|
|
|
|
// scope in which the anonymous union is declared.
|
|
|
|
Invalid = true;
|
|
|
|
} else {
|
|
|
|
// C++ [class.union]p2:
|
|
|
|
// For the purpose of name lookup, after the anonymous union
|
|
|
|
// definition, the members of the anonymous union are
|
|
|
|
// considered to have been defined in the scope in which the
|
|
|
|
// anonymous union is declared.
|
2009-06-30 06:36:12 +04:00
|
|
|
Owner->makeDeclVisibleInContext(*F);
|
2009-03-28 22:18:32 +03:00
|
|
|
S->AddDecl(DeclPtrTy::make(*F));
|
2009-01-07 03:43:41 +03:00
|
|
|
IdResolver.AddDecl(*F);
|
|
|
|
}
|
|
|
|
} else if (const RecordType *InnerRecordType
|
2009-07-30 01:53:49 +04:00
|
|
|
= (*F)->getType()->getAs<RecordType>()) {
|
2009-01-07 03:43:41 +03:00
|
|
|
RecordDecl *InnerRecord = InnerRecordType->getDecl();
|
|
|
|
if (InnerRecord->isAnonymousStructOrUnion())
|
2009-09-09 19:08:12 +04:00
|
|
|
Invalid = Invalid ||
|
2009-01-07 03:43:41 +03:00
|
|
|
InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ActOnAnonymousStructOrUnion - Handle the declaration of an
|
|
|
|
/// anonymous structure or union. Anonymous unions are a C++ feature
|
|
|
|
/// (C++ [class.union]) and a GNU C extension; anonymous structures
|
2009-09-09 19:08:12 +04:00
|
|
|
/// are a GNU C and GNU C++ extension.
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
|
|
|
|
RecordDecl *Record) {
|
2009-01-07 03:43:41 +03:00
|
|
|
DeclContext *Owner = Record->getDeclContext();
|
|
|
|
|
|
|
|
// Diagnose whether this anonymous struct/union is an extension.
|
|
|
|
if (Record->isUnion() && !getLangOptions().CPlusPlus)
|
|
|
|
Diag(Record->getLocation(), diag::ext_anonymous_union);
|
|
|
|
else if (!Record->isUnion())
|
|
|
|
Diag(Record->getLocation(), diag::ext_anonymous_struct);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-07 03:43:41 +03:00
|
|
|
// C and C++ require different kinds of checks for anonymous
|
|
|
|
// structs/unions.
|
|
|
|
bool Invalid = false;
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
const char* PrevSpec = 0;
|
2009-08-04 00:12:06 +04:00
|
|
|
unsigned DiagID;
|
2009-01-07 03:43:41 +03:00
|
|
|
// C++ [class.union]p3:
|
|
|
|
// Anonymous unions declared in a named namespace or in the
|
|
|
|
// global namespace shall be declared static.
|
|
|
|
if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
|
|
|
|
(isa<TranslationUnitDecl>(Owner) ||
|
2009-09-09 19:08:12 +04:00
|
|
|
(isa<NamespaceDecl>(Owner) &&
|
2009-01-07 03:43:41 +03:00
|
|
|
cast<NamespaceDecl>(Owner)->getDeclName()))) {
|
|
|
|
Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
|
|
|
|
Invalid = true;
|
|
|
|
|
|
|
|
// Recover by adding 'static'.
|
2009-08-04 00:12:06 +04:00
|
|
|
DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(),
|
|
|
|
PrevSpec, DiagID);
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-01-07 03:43:41 +03:00
|
|
|
// C++ [class.union]p3:
|
|
|
|
// A storage class is not allowed in a declaration of an
|
|
|
|
// anonymous union in a class scope.
|
|
|
|
else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
|
|
|
|
isa<RecordDecl>(Owner)) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(DS.getStorageClassSpecLoc(),
|
2009-01-07 03:43:41 +03:00
|
|
|
diag::err_anonymous_union_with_storage_spec);
|
|
|
|
Invalid = true;
|
|
|
|
|
|
|
|
// Recover by removing the storage specifier.
|
|
|
|
DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
|
2009-08-04 00:12:06 +04:00
|
|
|
PrevSpec, DiagID);
|
2009-01-07 03:43:41 +03:00
|
|
|
}
|
2009-01-07 22:46:03 +03:00
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
// C++ [class.union]p2:
|
2009-01-07 22:46:03 +03:00
|
|
|
// The member-specification of an anonymous union shall only
|
|
|
|
// define non-static data members. [Note: nested types and
|
|
|
|
// functions cannot be declared within an anonymous union. ]
|
2009-06-30 06:36:12 +04:00
|
|
|
for (DeclContext::decl_iterator Mem = Record->decls_begin(),
|
|
|
|
MemEnd = Record->decls_end();
|
2009-01-07 22:46:03 +03:00
|
|
|
Mem != MemEnd; ++Mem) {
|
|
|
|
if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
|
|
|
|
// C++ [class.union]p3:
|
|
|
|
// An anonymous union shall not have private or protected
|
|
|
|
// members (clause 11).
|
|
|
|
if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
|
|
|
|
Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
|
|
|
|
<< (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
|
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
} else if ((*Mem)->isImplicit()) {
|
|
|
|
// Any implicit members are fine.
|
2009-02-03 03:34:39 +03:00
|
|
|
} else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
|
|
|
|
// This is a type that showed up in an
|
|
|
|
// elaborated-type-specifier inside the anonymous struct or
|
|
|
|
// union, but which actually declares a type outside of the
|
|
|
|
// anonymous struct or union. It's okay.
|
2009-01-07 22:46:03 +03:00
|
|
|
} else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
|
|
|
|
if (!MemRecord->isAnonymousStructOrUnion() &&
|
|
|
|
MemRecord->getDeclName()) {
|
|
|
|
// This is a nested type declaration.
|
|
|
|
Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
|
|
|
|
<< (int)Record->isUnion();
|
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// We have something that isn't a non-static data
|
|
|
|
// member. Complain about it.
|
|
|
|
unsigned DK = diag::err_anonymous_record_bad_member;
|
|
|
|
if (isa<TypeDecl>(*Mem))
|
|
|
|
DK = diag::err_anonymous_record_with_type;
|
|
|
|
else if (isa<FunctionDecl>(*Mem))
|
|
|
|
DK = diag::err_anonymous_record_with_function;
|
|
|
|
else if (isa<VarDecl>(*Mem))
|
|
|
|
DK = diag::err_anonymous_record_with_static;
|
|
|
|
Diag((*Mem)->getLocation(), DK)
|
|
|
|
<< (int)Record->isUnion();
|
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-01-07 03:43:41 +03:00
|
|
|
|
|
|
|
if (!Record->isUnion() && !Owner->isRecord()) {
|
2009-01-13 01:49:06 +03:00
|
|
|
Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
|
|
|
|
<< (int)getLangOptions().CPlusPlus;
|
2009-01-07 03:43:41 +03:00
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
|
2009-10-23 03:31:08 +04:00
|
|
|
// Mock up a declarator.
|
|
|
|
Declarator Dc(DS, Declarator::TypeNameContext);
|
|
|
|
DeclaratorInfo *DInfo = 0;
|
|
|
|
GetTypeForDeclarator(Dc, S, &DInfo);
|
|
|
|
assert(DInfo && "couldn't build declarator info for anonymous struct/union");
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
// Create a declaration for this anonymous struct/union.
|
2009-01-20 04:17:11 +03:00
|
|
|
NamedDecl *Anon = 0;
|
2009-01-07 03:43:41 +03:00
|
|
|
if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
|
|
|
|
Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
|
2009-09-09 19:08:12 +04:00
|
|
|
/*IdentifierInfo=*/0,
|
2009-08-21 04:31:54 +04:00
|
|
|
Context.getTypeDeclType(Record),
|
2009-10-23 03:31:08 +04:00
|
|
|
DInfo,
|
2009-08-21 04:31:54 +04:00
|
|
|
/*BitWidth=*/0, /*Mutable=*/false);
|
2009-01-07 22:46:03 +03:00
|
|
|
Anon->setAccess(AS_public);
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
FieldCollector->Add(cast<FieldDecl>(Anon));
|
2009-01-07 03:43:41 +03:00
|
|
|
} else {
|
|
|
|
VarDecl::StorageClass SC;
|
|
|
|
switch (DS.getStorageClassSpec()) {
|
|
|
|
default: assert(0 && "Unknown storage class!");
|
|
|
|
case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
|
|
|
|
case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
|
|
|
|
case DeclSpec::SCS_static: SC = VarDecl::Static; break;
|
|
|
|
case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
|
|
|
|
case DeclSpec::SCS_register: SC = VarDecl::Register; break;
|
|
|
|
case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
|
|
|
|
case DeclSpec::SCS_mutable:
|
|
|
|
// mutable can only appear on non-static class members, so it's always
|
|
|
|
// an error here
|
|
|
|
Diag(Record->getLocation(), diag::err_mutable_nonmember);
|
|
|
|
Invalid = true;
|
|
|
|
SC = VarDecl::None;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
|
2009-09-09 19:08:12 +04:00
|
|
|
/*IdentifierInfo=*/0,
|
2009-08-21 04:31:54 +04:00
|
|
|
Context.getTypeDeclType(Record),
|
2009-10-23 03:31:08 +04:00
|
|
|
DInfo,
|
2009-08-21 04:31:54 +04:00
|
|
|
SC);
|
2009-01-07 03:43:41 +03:00
|
|
|
}
|
2009-01-07 22:46:03 +03:00
|
|
|
Anon->setImplicit();
|
2009-01-07 03:43:41 +03:00
|
|
|
|
|
|
|
// Add the anonymous struct/union object to the current
|
|
|
|
// context. We'll be referencing this object when we refer to one of
|
|
|
|
// its members.
|
2009-06-30 06:36:12 +04:00
|
|
|
Owner->addDecl(Anon);
|
2008-12-28 18:28:59 +03:00
|
|
|
|
2009-01-07 03:43:41 +03:00
|
|
|
// Inject the members of the anonymous struct/union into the owning
|
|
|
|
// context and into the identifier resolver chain for name lookup
|
|
|
|
// purposes.
|
2009-01-13 01:49:06 +03:00
|
|
|
if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
|
|
|
|
Invalid = true;
|
2009-01-07 03:43:41 +03:00
|
|
|
|
|
|
|
// Mark this as an anonymous struct/union type. Note that we do not
|
|
|
|
// do this until after we have already checked and injected the
|
|
|
|
// members of this anonymous struct/union type, because otherwise
|
|
|
|
// the members could be injected twice: once by DeclContext when it
|
|
|
|
// builds its lookup table, and once by
|
2009-09-09 19:08:12 +04:00
|
|
|
// InjectAnonymousStructOrUnionMembers.
|
2009-01-07 03:43:41 +03:00
|
|
|
Record->setAnonymousStructOrUnion(true);
|
|
|
|
|
|
|
|
if (Invalid)
|
|
|
|
Anon->setInvalidDecl();
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(Anon);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2007-09-02 06:04:30 +04:00
|
|
|
|
2008-11-18 01:58:34 +03:00
|
|
|
/// GetNameForDeclarator - Determine the full declaration name for the
|
|
|
|
/// given Declarator.
|
|
|
|
DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
|
2009-11-03 19:56:39 +03:00
|
|
|
return GetNameFromUnqualifiedId(D.getName());
|
|
|
|
}
|
2008-11-18 01:58:34 +03:00
|
|
|
|
2009-11-03 19:56:39 +03:00
|
|
|
/// \brief Retrieves the canonicalized name from a parsed unqualified-id.
|
2009-12-01 01:42:35 +03:00
|
|
|
DeclarationName Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
|
2009-11-03 19:56:39 +03:00
|
|
|
switch (Name.getKind()) {
|
|
|
|
case UnqualifiedId::IK_Identifier:
|
|
|
|
return DeclarationName(Name.Identifier);
|
2009-11-03 04:35:08 +03:00
|
|
|
|
2009-11-03 19:56:39 +03:00
|
|
|
case UnqualifiedId::IK_OperatorFunctionId:
|
|
|
|
return Context.DeclarationNames.getCXXOperatorName(
|
2009-11-29 06:04:53 +03:00
|
|
|
Name.OperatorFunctionId.Operator);
|
2009-11-28 07:44:28 +03:00
|
|
|
|
|
|
|
case UnqualifiedId::IK_LiteralOperatorId:
|
2009-11-29 10:34:05 +03:00
|
|
|
return Context.DeclarationNames.getCXXLiteralOperatorName(
|
|
|
|
Name.Identifier);
|
2009-11-28 07:44:28 +03:00
|
|
|
|
2009-11-03 19:56:39 +03:00
|
|
|
case UnqualifiedId::IK_ConversionFunctionId: {
|
|
|
|
QualType Ty = GetTypeFromParser(Name.ConversionFunctionId);
|
|
|
|
if (Ty.isNull())
|
|
|
|
return DeclarationName();
|
|
|
|
|
|
|
|
return Context.DeclarationNames.getCXXConversionFunctionName(
|
2009-11-29 06:04:53 +03:00
|
|
|
Context.getCanonicalType(Ty));
|
2009-11-03 19:56:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
case UnqualifiedId::IK_ConstructorName: {
|
|
|
|
QualType Ty = GetTypeFromParser(Name.ConstructorName);
|
|
|
|
if (Ty.isNull())
|
|
|
|
return DeclarationName();
|
|
|
|
|
|
|
|
return Context.DeclarationNames.getCXXConstructorName(
|
2009-11-29 06:04:53 +03:00
|
|
|
Context.getCanonicalType(Ty));
|
2009-11-03 19:56:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
case UnqualifiedId::IK_DestructorName: {
|
|
|
|
QualType Ty = GetTypeFromParser(Name.DestructorName);
|
|
|
|
if (Ty.isNull())
|
|
|
|
return DeclarationName();
|
|
|
|
|
|
|
|
return Context.DeclarationNames.getCXXDestructorName(
|
|
|
|
Context.getCanonicalType(Ty));
|
|
|
|
}
|
2009-09-26 01:45:23 +04:00
|
|
|
|
2009-11-03 19:56:39 +03:00
|
|
|
case UnqualifiedId::IK_TemplateId: {
|
|
|
|
TemplateName TName
|
2009-12-02 11:04:21 +03:00
|
|
|
= TemplateName::getFromVoidPointer(Name.TemplateId->Template);
|
|
|
|
return Context.getNameForTemplate(TName);
|
2009-11-03 19:56:39 +03:00
|
|
|
}
|
2008-11-18 01:58:34 +03:00
|
|
|
}
|
2009-11-03 19:56:39 +03:00
|
|
|
|
2008-11-18 01:58:34 +03:00
|
|
|
assert(false && "Unknown name kind");
|
2009-11-03 19:56:39 +03:00
|
|
|
return DeclarationName();
|
2008-11-18 01:58:34 +03:00
|
|
|
}
|
|
|
|
|
2009-02-06 20:46:57 +03:00
|
|
|
/// isNearlyMatchingFunction - Determine whether the C++ functions
|
|
|
|
/// Declaration and Definition are "nearly" matching. This heuristic
|
|
|
|
/// is used to improve diagnostics in the case where an out-of-line
|
|
|
|
/// function definition doesn't match any declaration within
|
|
|
|
/// the class or namespace.
|
|
|
|
static bool isNearlyMatchingFunction(ASTContext &Context,
|
|
|
|
FunctionDecl *Declaration,
|
|
|
|
FunctionDecl *Definition) {
|
2008-12-16 02:53:10 +03:00
|
|
|
if (Declaration->param_size() != Definition->param_size())
|
|
|
|
return false;
|
|
|
|
for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
|
|
|
|
QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
|
|
|
|
QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
|
|
|
|
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88969 91177308-0d34-0410-b5e6-96231b3b80d8
2009-11-17 00:35:15 +03:00
|
|
|
if (!Context.hasSameUnqualifiedType(DeclParamTy.getNonReferenceType(),
|
|
|
|
DefParamTy.getNonReferenceType()))
|
2008-12-16 02:53:10 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
Sema::DeclPtrTy
|
|
|
|
Sema::HandleDeclarator(Scope *S, Declarator &D,
|
2009-06-24 03:11:28 +04:00
|
|
|
MultiTemplateParamsArg TemplateParamLists,
|
|
|
|
bool IsFunctionDefinition) {
|
2008-11-18 01:58:34 +03:00
|
|
|
DeclarationName Name = GetNameForDeclarator(D);
|
|
|
|
|
2007-07-25 04:24:17 +04:00
|
|
|
// All of these full declarators require an identifier. If it doesn't have
|
|
|
|
// one, the ParsedFreeStandingDeclSpec action should be used.
|
2008-11-18 01:58:34 +03:00
|
|
|
if (!Name) {
|
2009-04-25 12:06:05 +04:00
|
|
|
if (!D.isInvalidType()) // Reject this if we think it is valid.
|
2008-11-11 09:13:16 +03:00
|
|
|
Diag(D.getDeclSpec().getSourceRange().getBegin(),
|
2008-11-19 08:08:23 +03:00
|
|
|
diag::err_declarator_need_ident)
|
|
|
|
<< D.getDeclSpec().getSourceRange() << D.getSourceRange();
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy();
|
2007-07-25 04:24:17 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-26 10:24:45 +04:00
|
|
|
// The scope passed in may not be a decl scope. Zip up the scope tree until
|
|
|
|
// we find one that is.
|
2008-12-11 19:49:14 +03:00
|
|
|
while ((S->getFlags() & Scope::DeclScope) == 0 ||
|
2009-02-04 22:02:06 +03:00
|
|
|
(S->getFlags() & Scope::TemplateParamScope) != 0)
|
2007-08-26 10:24:45 +04:00
|
|
|
S = S->getParent();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-06 20:20:37 +04:00
|
|
|
// If this is an out-of-line definition of a member of a class template
|
|
|
|
// or class template partial specialization, we may need to rebuild the
|
|
|
|
// type specifier in the declarator. See RebuildTypeInCurrentInstantiation()
|
|
|
|
// for more information.
|
|
|
|
// FIXME: cope with decltype(expr) and typeof(expr) once the rebuilder can
|
|
|
|
// handle expressions properly.
|
|
|
|
DeclSpec &DS = const_cast<DeclSpec&>(D.getDeclSpec());
|
|
|
|
if (D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid() &&
|
|
|
|
isDependentScopeSpecifier(D.getCXXScopeSpec()) &&
|
|
|
|
(DS.getTypeSpecType() == DeclSpec::TST_typename ||
|
|
|
|
DS.getTypeSpecType() == DeclSpec::TST_typeofType ||
|
|
|
|
DS.getTypeSpecType() == DeclSpec::TST_typeofExpr ||
|
|
|
|
DS.getTypeSpecType() == DeclSpec::TST_decltype)) {
|
|
|
|
if (DeclContext *DC = computeDeclContext(D.getCXXScopeSpec(), true)) {
|
2009-08-19 05:28:28 +04:00
|
|
|
// FIXME: Preserve type source info.
|
|
|
|
QualType T = GetTypeFromParser(DS.getTypeRep());
|
2009-08-06 20:20:37 +04:00
|
|
|
EnterDeclaratorContext(S, DC);
|
|
|
|
T = RebuildTypeInCurrentInstantiation(T, D.getIdentifierLoc(), Name);
|
|
|
|
ExitDeclaratorContext(S);
|
|
|
|
if (T.isNull())
|
|
|
|
return DeclPtrTy();
|
|
|
|
DS.UpdateTypeRep(T.getAsOpaquePtr());
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-11-08 20:17:31 +03:00
|
|
|
DeclContext *DC;
|
2009-01-20 04:17:11 +03:00
|
|
|
NamedDecl *New;
|
2009-02-16 20:45:42 +03:00
|
|
|
|
2009-08-19 05:27:57 +04:00
|
|
|
DeclaratorInfo *DInfo = 0;
|
|
|
|
QualType R = GetTypeForDeclarator(D, S, &DInfo);
|
2009-02-24 23:03:32 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
|
|
|
|
ForRedeclaration);
|
|
|
|
|
2008-11-08 20:17:31 +03:00
|
|
|
// See if this is a redefinition of a variable in the same scope.
|
2009-03-06 22:06:37 +03:00
|
|
|
if (D.getCXXScopeSpec().isInvalid()) {
|
|
|
|
DC = CurContext;
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-03-06 22:06:37 +03:00
|
|
|
} else if (!D.getCXXScopeSpec().isSet()) {
|
2009-11-19 01:49:29 +03:00
|
|
|
bool IsLinkageLookup = false;
|
2009-02-24 23:03:32 +03:00
|
|
|
|
|
|
|
// If the declaration we're planning to build will be a function
|
|
|
|
// or object with linkage, then look for another declaration with
|
|
|
|
// linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
|
|
|
|
if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
|
|
|
|
/* Do nothing*/;
|
|
|
|
else if (R->isFunctionType()) {
|
2009-07-07 21:00:05 +04:00
|
|
|
if (CurContext->isFunctionOrMethod() ||
|
|
|
|
D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
|
2009-11-19 01:49:29 +03:00
|
|
|
IsLinkageLookup = true;
|
2009-02-24 23:03:32 +03:00
|
|
|
} else if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern)
|
2009-11-19 01:49:29 +03:00
|
|
|
IsLinkageLookup = true;
|
2009-07-07 21:00:05 +04:00
|
|
|
else if (CurContext->getLookupContext()->isTranslationUnit() &&
|
|
|
|
D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
|
2009-11-19 01:49:29 +03:00
|
|
|
IsLinkageLookup = true;
|
2009-02-24 23:03:32 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (IsLinkageLookup)
|
|
|
|
Previous.clear(LookupRedeclarationWithLinkage);
|
2009-11-17 05:14:36 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
DC = CurContext;
|
|
|
|
LookupName(Previous, S, /* CreateBuiltins = */ IsLinkageLookup);
|
2008-11-08 20:17:31 +03:00
|
|
|
} else { // Something like "int foo::x;"
|
2009-07-22 03:53:31 +04:00
|
|
|
DC = computeDeclContext(D.getCXXScopeSpec(), true);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-26 04:04:55 +04:00
|
|
|
if (!DC) {
|
|
|
|
// If we could not compute the declaration context, it's because the
|
|
|
|
// declaration context is dependent but does not refer to a class,
|
|
|
|
// class template, or class template partial specialization. Complain
|
|
|
|
// and return early, to avoid the coming semantic disaster.
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getIdentifierLoc(),
|
2009-08-26 04:04:55 +04:00
|
|
|
diag::err_template_qualified_declarator_no_match)
|
|
|
|
<< (NestedNameSpecifier*)D.getCXXScopeSpec().getScopeRep()
|
|
|
|
<< D.getCXXScopeSpec().getRange();
|
|
|
|
return DeclPtrTy();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-10-13 20:30:37 +04:00
|
|
|
if (!DC->isDependentContext() &&
|
|
|
|
RequireCompleteDeclContext(D.getCXXScopeSpec()))
|
|
|
|
return DeclPtrTy();
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupQualifiedName(Previous, DC);
|
|
|
|
|
|
|
|
// Don't consider using declarations as previous declarations for
|
|
|
|
// out-of-line members.
|
|
|
|
RemoveUsingDecls(Previous);
|
2008-11-08 20:17:31 +03:00
|
|
|
|
|
|
|
// C++ 7.3.1.2p2:
|
|
|
|
// Members (including explicit specializations of templates) of a named
|
|
|
|
// namespace can also be defined outside that namespace by explicit
|
|
|
|
// qualification of the name being defined, provided that the entity being
|
|
|
|
// defined was already declared in the namespace and the definition appears
|
|
|
|
// after the point of declaration in a namespace that encloses the
|
|
|
|
// declarations namespace.
|
|
|
|
//
|
2008-12-16 02:53:10 +03:00
|
|
|
// Note that we only check the context at this point. We don't yet
|
|
|
|
// have enough information to make sure that PrevDecl is actually
|
|
|
|
// the declaration we want to match. For example, given:
|
|
|
|
//
|
2008-12-12 11:25:50 +03:00
|
|
|
// class X {
|
|
|
|
// void f();
|
2008-12-16 02:53:10 +03:00
|
|
|
// void f(float);
|
2008-12-12 11:25:50 +03:00
|
|
|
// };
|
|
|
|
//
|
2008-12-16 02:53:10 +03:00
|
|
|
// void X::f(int) { } // ill-formed
|
|
|
|
//
|
|
|
|
// In this case, PrevDecl will point to the overload set
|
|
|
|
// containing the two f's declared in X, but neither of them
|
2009-09-09 19:08:12 +04:00
|
|
|
// matches.
|
2009-02-06 20:46:57 +03:00
|
|
|
|
|
|
|
// First check whether we named the global scope.
|
|
|
|
if (isa<TranslationUnitDecl>(DC)) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
|
2009-02-06 20:46:57 +03:00
|
|
|
<< Name << D.getCXXScopeSpec().getRange();
|
2009-11-08 14:36:54 +03:00
|
|
|
} else {
|
|
|
|
DeclContext *Cur = CurContext;
|
|
|
|
while (isa<LinkageSpecDecl>(Cur))
|
|
|
|
Cur = Cur->getParent();
|
|
|
|
if (!Cur->Encloses(DC)) {
|
|
|
|
// The qualifying scope doesn't enclose the original declaration.
|
|
|
|
// Emit diagnostic based on current scope.
|
|
|
|
SourceLocation L = D.getIdentifierLoc();
|
|
|
|
SourceRange R = D.getCXXScopeSpec().getRange();
|
|
|
|
if (isa<FunctionDecl>(Cur))
|
|
|
|
Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
|
|
|
|
else
|
|
|
|
Diag(L, diag::err_invalid_declarator_scope)
|
|
|
|
<< Name << cast<NamedDecl>(DC) << R;
|
|
|
|
D.setInvalidType();
|
|
|
|
}
|
2008-11-08 20:17:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.isSingleResult() &&
|
|
|
|
Previous.getFoundDecl()->isTemplateParameter()) {
|
2008-12-05 21:15:24 +03:00
|
|
|
// Maybe we will complain about the shadowed template parameter.
|
2009-09-09 19:08:12 +04:00
|
|
|
if (!D.isInvalidType())
|
2009-11-19 01:49:29 +03:00
|
|
|
if (DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
|
|
|
|
Previous.getFoundDecl()))
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-12-05 21:15:24 +03:00
|
|
|
// Just pretend that we didn't see the previous declaration.
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2008-12-05 21:15:24 +03:00
|
|
|
}
|
|
|
|
|
2008-04-14 01:07:44 +04:00
|
|
|
// In C++, the previous declaration we find might be a tag type
|
|
|
|
// (class or enum). In this case, the new declaration will hide the
|
2009-01-28 20:15:10 +03:00
|
|
|
// tag type. Note that this does does not apply if we're declaring a
|
|
|
|
// typedef (C++ [dcl.typedef]p4).
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.isSingleTagDecl() &&
|
2009-01-28 20:15:10 +03:00
|
|
|
D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2008-04-14 01:07:44 +04:00
|
|
|
|
2009-02-16 20:45:42 +03:00
|
|
|
bool Redeclaration = false;
|
2007-07-11 21:01:13 +04:00
|
|
|
if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
|
2009-06-24 03:11:28 +04:00
|
|
|
if (TemplateParamLists.size()) {
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_template_typedef);
|
|
|
|
return DeclPtrTy();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
New = ActOnTypedefDeclarator(S, D, DC, R, DInfo, Previous, Redeclaration);
|
2009-02-24 23:03:32 +03:00
|
|
|
} else if (R->isFunctionType()) {
|
2009-11-19 01:49:29 +03:00
|
|
|
New = ActOnFunctionDeclarator(S, D, DC, R, DInfo, Previous,
|
2009-06-24 03:11:28 +04:00
|
|
|
move(TemplateParamLists),
|
2009-04-25 12:06:05 +04:00
|
|
|
IsFunctionDefinition, Redeclaration);
|
2007-07-11 21:01:13 +04:00
|
|
|
} else {
|
2009-11-19 01:49:29 +03:00
|
|
|
New = ActOnVariableDeclarator(S, D, DC, R, DInfo, Previous,
|
2009-07-22 21:18:37 +04:00
|
|
|
move(TemplateParamLists),
|
|
|
|
Redeclaration);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
|
|
|
|
if (New == 0)
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-09-25 03:14:47 +04:00
|
|
|
// If this has an identifier and is not an invalid redeclaration or
|
|
|
|
// function template specialization, add it to the scope stack.
|
|
|
|
if (Name && !(Redeclaration && New->isInvalidDecl()) &&
|
|
|
|
!(isa<FunctionDecl>(New) &&
|
|
|
|
cast<FunctionDecl>(New)->isFunctionTemplateSpecialization()))
|
2008-04-12 04:47:19 +04:00
|
|
|
PushOnScopeChains(New, S);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(New);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-02-21 03:44:51 +03:00
|
|
|
/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
|
|
|
|
/// types into constant array types in certain situations which would otherwise
|
|
|
|
/// be errors (for GCC compatibility).
|
|
|
|
static QualType TryToFixInvalidVariablyModifiedType(QualType T,
|
|
|
|
ASTContext &Context,
|
|
|
|
bool &SizeIsNegative) {
|
|
|
|
// This method tries to turn a variable array into a constant
|
|
|
|
// array even when the size isn't an ICE. This is necessary
|
|
|
|
// for compatibility with code that depends on gcc's buggy
|
|
|
|
// constant expression folding, like struct {char x[(int)(char*)2];}
|
|
|
|
SizeIsNegative = false;
|
|
|
|
|
2009-09-24 23:53:00 +04:00
|
|
|
QualifierCollector Qs;
|
|
|
|
const Type *Ty = Qs.strip(T);
|
|
|
|
|
|
|
|
if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
|
2009-02-21 03:44:51 +03:00
|
|
|
QualType Pointee = PTy->getPointeeType();
|
|
|
|
QualType FixedType =
|
|
|
|
TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative);
|
|
|
|
if (FixedType.isNull()) return FixedType;
|
2009-02-21 03:58:02 +03:00
|
|
|
FixedType = Context.getPointerType(FixedType);
|
2009-09-24 23:53:00 +04:00
|
|
|
return Qs.apply(FixedType);
|
2009-02-21 03:44:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
|
2009-02-26 06:58:54 +03:00
|
|
|
if (!VLATy)
|
|
|
|
return QualType();
|
|
|
|
// FIXME: We should probably handle this case
|
|
|
|
if (VLATy->getElementType()->isVariablyModifiedType())
|
|
|
|
return QualType();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-21 03:44:51 +03:00
|
|
|
Expr::EvalResult EvalResult;
|
|
|
|
if (!VLATy->getSizeExpr() ||
|
2009-02-26 06:58:54 +03:00
|
|
|
!VLATy->getSizeExpr()->Evaluate(EvalResult, Context) ||
|
|
|
|
!EvalResult.Val.isInt())
|
2009-02-21 03:44:51 +03:00
|
|
|
return QualType();
|
2009-02-26 06:58:54 +03:00
|
|
|
|
2009-02-21 03:44:51 +03:00
|
|
|
llvm::APSInt &Res = EvalResult.Val.getInt();
|
2009-07-06 19:59:29 +04:00
|
|
|
if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned())) {
|
2009-10-16 04:14:28 +04:00
|
|
|
// TODO: preserve the size expression in declarator info
|
|
|
|
return Context.getConstantArrayType(VLATy->getElementType(),
|
|
|
|
Res, ArrayType::Normal, 0);
|
2009-07-06 19:59:29 +04:00
|
|
|
}
|
2009-02-21 03:44:51 +03:00
|
|
|
|
|
|
|
SizeIsNegative = true;
|
|
|
|
return QualType();
|
|
|
|
}
|
|
|
|
|
2009-03-02 03:19:53 +03:00
|
|
|
/// \brief Register the given locally-scoped external C declaration so
|
|
|
|
/// that it can be found later for redeclarations
|
2009-09-09 19:08:12 +04:00
|
|
|
void
|
2009-11-19 01:49:29 +03:00
|
|
|
Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND,
|
|
|
|
const LookupResult &Previous,
|
2009-03-02 03:19:53 +03:00
|
|
|
Scope *S) {
|
|
|
|
assert(ND->getLexicalDeclContext()->isFunctionOrMethod() &&
|
|
|
|
"Decl is not a locally-scoped decl!");
|
|
|
|
// Note that we have a locally-scoped external with this name.
|
|
|
|
LocallyScopedExternalDecls[ND->getDeclName()] = ND;
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (!Previous.isSingleResult())
|
2009-03-02 03:19:53 +03:00
|
|
|
return;
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
NamedDecl *PrevDecl = Previous.getFoundDecl();
|
|
|
|
|
2009-03-02 03:19:53 +03:00
|
|
|
// If there was a previous declaration of this variable, it may be
|
|
|
|
// in our identifier chain. Update the identifier chain with the new
|
|
|
|
// declaration.
|
2009-03-24 02:06:20 +03:00
|
|
|
if (S && IdResolver.ReplaceDecl(PrevDecl, ND)) {
|
2009-03-02 03:19:53 +03:00
|
|
|
// The previous declaration was found on the identifer resolver
|
|
|
|
// chain, so remove it from its scope.
|
2009-03-28 22:18:32 +03:00
|
|
|
while (S && !S->isDeclScope(DeclPtrTy::make(PrevDecl)))
|
2009-03-02 03:19:53 +03:00
|
|
|
S = S->getParent();
|
|
|
|
|
|
|
|
if (S)
|
2009-03-28 22:18:32 +03:00
|
|
|
S->RemoveDecl(DeclPtrTy::make(PrevDecl));
|
2009-03-02 03:19:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-07 23:37:57 +04:00
|
|
|
/// \brief Diagnose function specifiers on a declaration of an identifier that
|
|
|
|
/// does not identify a function.
|
|
|
|
void Sema::DiagnoseFunctionSpecifiers(Declarator& D) {
|
|
|
|
// FIXME: We should probably indicate the identifier in question to avoid
|
|
|
|
// confusion for constructs like "inline int a(), b;"
|
|
|
|
if (D.getDeclSpec().isInlineSpecified())
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getInlineSpecLoc(),
|
2009-04-07 23:37:57 +04:00
|
|
|
diag::err_inline_non_function);
|
|
|
|
|
|
|
|
if (D.getDeclSpec().isVirtualSpecified())
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getVirtualSpecLoc(),
|
2009-04-07 23:37:57 +04:00
|
|
|
diag::err_virtual_non_function);
|
|
|
|
|
|
|
|
if (D.getDeclSpec().isExplicitSpecified())
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getExplicitSpecLoc(),
|
2009-04-07 23:37:57 +04:00
|
|
|
diag::err_explicit_non_function);
|
|
|
|
}
|
|
|
|
|
2009-01-20 04:17:11 +03:00
|
|
|
NamedDecl*
|
2009-01-16 06:34:13 +03:00
|
|
|
Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
|
2009-08-19 05:27:57 +04:00
|
|
|
QualType R, DeclaratorInfo *DInfo,
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupResult &Previous, bool &Redeclaration) {
|
2009-01-16 06:34:13 +03:00
|
|
|
// Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
|
|
|
|
if (D.getCXXScopeSpec().isSet()) {
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
|
|
|
|
<< D.getCXXScopeSpec().getRange();
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-01-16 06:34:13 +03:00
|
|
|
// Pretend we didn't see the scope specifier.
|
|
|
|
DC = 0;
|
|
|
|
}
|
|
|
|
|
2009-03-12 02:00:04 +03:00
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
// Check that there are no default arguments (C++ only).
|
2009-01-16 06:34:13 +03:00
|
|
|
CheckExtraCXXDefaultArguments(D);
|
2009-03-12 02:00:04 +03:00
|
|
|
}
|
|
|
|
|
2009-04-07 23:37:57 +04:00
|
|
|
DiagnoseFunctionSpecifiers(D);
|
|
|
|
|
2009-04-20 00:27:55 +04:00
|
|
|
if (D.getDeclSpec().isThreadSpecified())
|
|
|
|
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
|
|
|
|
|
2009-10-24 12:00:42 +04:00
|
|
|
TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, DInfo);
|
2009-01-16 06:34:13 +03:00
|
|
|
if (!NewTD) return 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-16 06:34:13 +03:00
|
|
|
// Handle attributes prior to checking for duplicates in MergeVarDecl
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributes(S, NewTD, D);
|
2009-11-19 01:49:29 +03:00
|
|
|
|
2009-01-16 06:34:13 +03:00
|
|
|
// Merge the decl with the existing one if appropriate. If the decl is
|
|
|
|
// in an outer scope, it isn't the same thing.
|
2009-11-19 01:49:29 +03:00
|
|
|
FilterLookupForScope(*this, Previous, DC, S, /*ConsiderLinkage*/ false);
|
|
|
|
if (!Previous.empty()) {
|
2009-02-16 20:45:42 +03:00
|
|
|
Redeclaration = true;
|
2009-11-19 01:49:29 +03:00
|
|
|
MergeTypeDefDecl(NewTD, Previous);
|
2009-01-16 06:34:13 +03:00
|
|
|
}
|
|
|
|
|
2009-04-19 09:21:20 +04:00
|
|
|
// C99 6.7.7p2: If a typedef name specifies a variably modified type
|
|
|
|
// then it shall have block scope.
|
|
|
|
QualType T = NewTD->getUnderlyingType();
|
|
|
|
if (T->isVariablyModifiedType()) {
|
|
|
|
CurFunctionNeedsScopeChecking = true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-19 09:21:20 +04:00
|
|
|
if (S->getFnParent() == 0) {
|
2009-02-21 03:44:51 +03:00
|
|
|
bool SizeIsNegative;
|
|
|
|
QualType FixedTy =
|
|
|
|
TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative);
|
|
|
|
if (!FixedTy.isNull()) {
|
|
|
|
Diag(D.getIdentifierLoc(), diag::warn_illegal_constant_array_size);
|
2009-10-24 12:00:42 +04:00
|
|
|
NewTD->setTypeDeclaratorInfo(Context.getTrivialDeclaratorInfo(FixedTy));
|
2009-02-21 03:44:51 +03:00
|
|
|
} else {
|
|
|
|
if (SizeIsNegative)
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_typecheck_negative_array_size);
|
|
|
|
else if (T->isVariableArrayType())
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
|
|
|
|
else
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
|
2009-04-25 12:06:05 +04:00
|
|
|
NewTD->setInvalidDecl();
|
2009-02-21 03:44:51 +03:00
|
|
|
}
|
2009-01-16 06:34:13 +03:00
|
|
|
}
|
|
|
|
}
|
2009-07-07 20:35:42 +04:00
|
|
|
|
|
|
|
// If this is the C FILE type, notify the AST context.
|
|
|
|
if (IdentifierInfo *II = NewTD->getIdentifier())
|
|
|
|
if (!NewTD->isInvalidDecl() &&
|
2009-07-28 06:25:19 +04:00
|
|
|
NewTD->getDeclContext()->getLookupContext()->isTranslationUnit()) {
|
|
|
|
if (II->isStr("FILE"))
|
|
|
|
Context.setFILEDecl(NewTD);
|
|
|
|
else if (II->isStr("jmp_buf"))
|
|
|
|
Context.setjmp_bufDecl(NewTD);
|
|
|
|
else if (II->isStr("sigjmp_buf"))
|
|
|
|
Context.setsigjmp_bufDecl(NewTD);
|
|
|
|
}
|
|
|
|
|
2009-01-16 06:34:13 +03:00
|
|
|
return NewTD;
|
|
|
|
}
|
|
|
|
|
2009-02-24 22:23:27 +03:00
|
|
|
/// \brief Determines whether the given declaration is an out-of-scope
|
|
|
|
/// previous declaration.
|
|
|
|
///
|
|
|
|
/// This routine should be invoked when name lookup has found a
|
|
|
|
/// previous declaration (PrevDecl) that is not in the scope where a
|
|
|
|
/// new declaration by the same name is being introduced. If the new
|
|
|
|
/// declaration occurs in a local scope, previous declarations with
|
|
|
|
/// linkage may still be considered previous declarations (C99
|
|
|
|
/// 6.2.2p4-5, C++ [basic.link]p6).
|
|
|
|
///
|
|
|
|
/// \param PrevDecl the previous declaration found by name
|
|
|
|
/// lookup
|
2009-09-09 19:08:12 +04:00
|
|
|
///
|
2009-02-24 22:23:27 +03:00
|
|
|
/// \param DC the context in which the new declaration is being
|
|
|
|
/// declared.
|
|
|
|
///
|
|
|
|
/// \returns true if PrevDecl is an out-of-scope previous declaration
|
|
|
|
/// for a new delcaration with the same name.
|
2009-09-09 19:08:12 +04:00
|
|
|
static bool
|
2009-02-24 22:23:27 +03:00
|
|
|
isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
|
|
|
|
ASTContext &Context) {
|
|
|
|
if (!PrevDecl)
|
|
|
|
return 0;
|
|
|
|
|
2009-02-24 23:03:32 +03:00
|
|
|
if (!PrevDecl->hasLinkage())
|
|
|
|
return false;
|
2009-02-24 22:23:27 +03:00
|
|
|
|
|
|
|
if (Context.getLangOptions().CPlusPlus) {
|
|
|
|
// C++ [basic.link]p6:
|
|
|
|
// 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.
|
|
|
|
DeclContext *OuterContext = DC->getLookupContext();
|
|
|
|
if (!OuterContext->isFunctionOrMethod())
|
|
|
|
// This rule only applies to block-scope declarations.
|
|
|
|
return false;
|
|
|
|
else {
|
|
|
|
DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
|
|
|
|
if (PrevOuterContext->isRecord())
|
|
|
|
// We found a member function: ignore it.
|
|
|
|
return false;
|
|
|
|
else {
|
|
|
|
// Find the innermost enclosing namespace for the new and
|
|
|
|
// previous declarations.
|
|
|
|
while (!OuterContext->isFileContext())
|
|
|
|
OuterContext = OuterContext->getParent();
|
|
|
|
while (!PrevOuterContext->isFileContext())
|
|
|
|
PrevOuterContext = PrevOuterContext->getParent();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-24 22:23:27 +03:00
|
|
|
// The previous declaration is in a different namespace, so it
|
|
|
|
// isn't the same function.
|
2009-09-09 19:08:12 +04:00
|
|
|
if (OuterContext->getPrimaryContext() !=
|
2009-02-24 22:23:27 +03:00
|
|
|
PrevOuterContext->getPrimaryContext())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-20 04:17:11 +03:00
|
|
|
NamedDecl*
|
2009-01-16 05:36:34 +03:00
|
|
|
Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
|
2009-08-19 05:27:57 +04:00
|
|
|
QualType R, DeclaratorInfo *DInfo,
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupResult &Previous,
|
2009-07-22 21:18:37 +04:00
|
|
|
MultiTemplateParamsArg TemplateParamLists,
|
2009-02-16 20:45:42 +03:00
|
|
|
bool &Redeclaration) {
|
2009-01-16 05:36:34 +03:00
|
|
|
DeclarationName Name = GetNameForDeclarator(D);
|
|
|
|
|
|
|
|
// Check that there are no default arguments (C++ only).
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
CheckExtraCXXDefaultArguments(D);
|
|
|
|
|
|
|
|
VarDecl *NewVD;
|
|
|
|
VarDecl::StorageClass SC;
|
|
|
|
switch (D.getDeclSpec().getStorageClassSpec()) {
|
|
|
|
default: assert(0 && "Unknown storage class!");
|
|
|
|
case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
|
|
|
|
case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
|
|
|
|
case DeclSpec::SCS_static: SC = VarDecl::Static; break;
|
|
|
|
case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
|
|
|
|
case DeclSpec::SCS_register: SC = VarDecl::Register; break;
|
|
|
|
case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
|
|
|
|
case DeclSpec::SCS_mutable:
|
|
|
|
// mutable can only appear on non-static class members, so it's always
|
|
|
|
// an error here
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-01-16 05:36:34 +03:00
|
|
|
SC = VarDecl::None;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
IdentifierInfo *II = Name.getAsIdentifierInfo();
|
|
|
|
if (!II) {
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
|
|
|
|
<< Name.getAsString();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-07 23:37:57 +04:00
|
|
|
DiagnoseFunctionSpecifiers(D);
|
2009-03-12 02:00:04 +03:00
|
|
|
|
2009-03-11 23:22:50 +03:00
|
|
|
if (!DC->isRecord() && S->getFnParent() == 0) {
|
|
|
|
// C99 6.9p2: The storage-class specifiers auto and register shall not
|
|
|
|
// appear in the declaration specifiers in an external declaration.
|
|
|
|
if (SC == VarDecl::Auto || SC == VarDecl::Register) {
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-05-13 01:44:00 +04:00
|
|
|
// If this is a register variable with an asm label specified, then this
|
|
|
|
// is a GNU extension.
|
|
|
|
if (SC == VarDecl::Register && D.getAsmLabel())
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_unsupported_global_register);
|
|
|
|
else
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-01-16 05:36:34 +03:00
|
|
|
}
|
|
|
|
}
|
2009-03-12 02:52:16 +03:00
|
|
|
if (DC->isRecord() && !CurContext->isRecord()) {
|
|
|
|
// This is an out-of-line definition of a static data member.
|
|
|
|
if (SC == VarDecl::Static) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getStorageClassSpecLoc(),
|
2009-03-12 02:52:16 +03:00
|
|
|
diag::err_static_out_of_line)
|
|
|
|
<< CodeModificationHint::CreateRemoval(
|
|
|
|
SourceRange(D.getDeclSpec().getStorageClassSpecLoc()));
|
|
|
|
} else if (SC == VarDecl::None)
|
|
|
|
SC = VarDecl::Static;
|
|
|
|
}
|
2009-06-24 04:28:53 +04:00
|
|
|
if (SC == VarDecl::Static) {
|
|
|
|
if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
|
|
|
|
if (RD->isLocalClass())
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getIdentifierLoc(),
|
2009-06-24 04:28:53 +04:00
|
|
|
diag::err_static_data_member_not_allowed_in_local_class)
|
|
|
|
<< Name << RD->getDeclName();
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-22 21:18:37 +04:00
|
|
|
// Match up the template parameter lists with the scope specifier, then
|
|
|
|
// determine whether we have a template or a template specialization.
|
2009-10-08 02:35:40 +04:00
|
|
|
bool isExplicitSpecialization = false;
|
2009-07-22 21:18:37 +04:00
|
|
|
if (TemplateParameterList *TemplateParams
|
2009-10-08 02:35:40 +04:00
|
|
|
= MatchTemplateParametersToScopeSpecifier(
|
2009-07-22 21:18:37 +04:00
|
|
|
D.getDeclSpec().getSourceRange().getBegin(),
|
2009-10-08 02:35:40 +04:00
|
|
|
D.getCXXScopeSpec(),
|
2009-07-23 02:05:02 +04:00
|
|
|
(TemplateParameterList**)TemplateParamLists.get(),
|
2009-10-08 02:35:40 +04:00
|
|
|
TemplateParamLists.size(),
|
|
|
|
isExplicitSpecialization)) {
|
2009-07-22 21:18:37 +04:00
|
|
|
if (TemplateParams->size() > 0) {
|
|
|
|
// There is no such thing as a variable template.
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_template_variable)
|
|
|
|
<< II
|
|
|
|
<< SourceRange(TemplateParams->getTemplateLoc(),
|
|
|
|
TemplateParams->getRAngleLoc());
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
// There is an extraneous 'template<>' for this variable. Complain
|
|
|
|
// about it, but allow the declaration of the variable.
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(TemplateParams->getTemplateLoc(),
|
2009-07-23 03:48:44 +04:00
|
|
|
diag::err_template_variable_noparams)
|
2009-07-22 21:18:37 +04:00
|
|
|
<< II
|
|
|
|
<< SourceRange(TemplateParams->getTemplateLoc(),
|
2009-09-09 19:08:12 +04:00
|
|
|
TemplateParams->getRAngleLoc());
|
2009-10-08 02:35:40 +04:00
|
|
|
|
|
|
|
isExplicitSpecialization = true;
|
2009-07-22 21:18:37 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
|
2009-08-21 04:31:54 +04:00
|
|
|
II, R, DInfo, SC);
|
2009-04-20 00:27:55 +04:00
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D.isInvalidType())
|
|
|
|
NewVD->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-20 00:27:55 +04:00
|
|
|
if (D.getDeclSpec().isThreadSpecified()) {
|
|
|
|
if (NewVD->hasLocalStorage())
|
|
|
|
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_thread_non_global);
|
2009-04-20 01:48:33 +04:00
|
|
|
else if (!Context.Target.isTLSSupported())
|
|
|
|
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_thread_unsupported);
|
2009-04-20 00:27:55 +04:00
|
|
|
else
|
|
|
|
NewVD->setThreadSpecified(true);
|
|
|
|
}
|
2009-01-20 04:17:11 +03:00
|
|
|
|
2009-03-12 02:52:16 +03:00
|
|
|
// Set the lexical context. If the declarator has a C++ scope specifier, the
|
|
|
|
// lexical context will be different from the semantic context.
|
|
|
|
NewVD->setLexicalDeclContext(CurContext);
|
|
|
|
|
2009-01-16 05:36:34 +03:00
|
|
|
// Handle attributes prior to checking for duplicates in MergeVarDecl
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributes(S, NewVD, D);
|
2009-01-16 05:36:34 +03:00
|
|
|
|
|
|
|
// Handle GNU asm-label extension (encoded as an attribute).
|
|
|
|
if (Expr *E = (Expr*) D.getAsmLabel()) {
|
|
|
|
// The parser guarantees this is a string.
|
2009-09-09 19:08:12 +04:00
|
|
|
StringLiteral *SE = cast<StringLiteral>(E);
|
2009-11-30 20:08:26 +03:00
|
|
|
NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getString()));
|
2009-01-16 05:36:34 +03:00
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
// Don't consider existing declarations that are in a different
|
|
|
|
// scope and are out-of-semantic-context declarations (if the new
|
|
|
|
// declaration has linkage).
|
|
|
|
FilterLookupForScope(*this, Previous, DC, S, NewVD->hasLinkage());
|
2009-10-08 11:24:58 +04:00
|
|
|
|
2009-03-26 02:32:15 +03:00
|
|
|
// Merge the decl with the existing one if appropriate.
|
2009-11-19 01:49:29 +03:00
|
|
|
if (!Previous.empty()) {
|
|
|
|
if (Previous.isSingleResult() &&
|
|
|
|
isa<FieldDecl>(Previous.getFoundDecl()) &&
|
|
|
|
D.getCXXScopeSpec().isSet()) {
|
2009-03-26 02:32:15 +03:00
|
|
|
// The user tried to define a non-static data member
|
|
|
|
// out-of-line (C++ [dcl.meaning]p1).
|
|
|
|
Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
|
|
|
|
<< D.getCXXScopeSpec().getRange();
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2009-04-25 12:06:05 +04:00
|
|
|
NewVD->setInvalidDecl();
|
2009-03-26 02:32:15 +03:00
|
|
|
}
|
|
|
|
} else if (D.getCXXScopeSpec().isSet()) {
|
|
|
|
// No previous declaration in the qualifying scope.
|
2009-10-14 01:16:44 +04:00
|
|
|
Diag(D.getIdentifierLoc(), diag::err_no_member)
|
|
|
|
<< Name << computeDeclContext(D.getCXXScopeSpec(), true)
|
|
|
|
<< D.getCXXScopeSpec().getRange();
|
2009-04-25 12:06:05 +04:00
|
|
|
NewVD->setInvalidDecl();
|
2009-03-26 02:32:15 +03:00
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
CheckVariableDeclaration(NewVD, Previous, Redeclaration);
|
2009-03-26 02:32:15 +03:00
|
|
|
|
2009-10-08 11:24:58 +04:00
|
|
|
// This is an explicit specialization of a static data member. Check it.
|
|
|
|
if (isExplicitSpecialization && !NewVD->isInvalidDecl() &&
|
2009-11-19 01:49:29 +03:00
|
|
|
CheckMemberSpecialization(NewVD, Previous))
|
2009-10-08 11:24:58 +04:00
|
|
|
NewVD->setInvalidDecl();
|
2009-11-19 01:49:29 +03:00
|
|
|
|
2009-07-26 02:29:44 +04:00
|
|
|
// attributes declared post-definition are currently ignored
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.isSingleResult()) {
|
|
|
|
const VarDecl *Def = 0;
|
|
|
|
VarDecl *PrevDecl = dyn_cast<VarDecl>(Previous.getFoundDecl());
|
|
|
|
if (PrevDecl && PrevDecl->getDefinition(Def) && D.hasAttributes()) {
|
2009-07-26 02:29:44 +04:00
|
|
|
Diag(NewVD->getLocation(), diag::warn_attribute_precede_definition);
|
|
|
|
Diag(Def->getLocation(), diag::note_previous_definition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-26 02:32:15 +03:00
|
|
|
// If this is a locally-scoped extern C variable, update the map of
|
|
|
|
// such variables.
|
2009-09-12 04:17:51 +04:00
|
|
|
if (CurContext->isFunctionOrMethod() && NewVD->isExternC() &&
|
2009-04-25 12:06:05 +04:00
|
|
|
!NewVD->isInvalidDecl())
|
2009-11-19 01:49:29 +03:00
|
|
|
RegisterLocallyScopedExternCDecl(NewVD, Previous, S);
|
2009-03-26 02:32:15 +03:00
|
|
|
|
|
|
|
return NewVD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Perform semantic checking on a newly-created variable
|
|
|
|
/// declaration.
|
|
|
|
///
|
|
|
|
/// This routine performs all of the type-checking required for a
|
2009-05-01 19:47:09 +04:00
|
|
|
/// variable declaration once it has been built. It is used both to
|
2009-03-26 02:32:15 +03:00
|
|
|
/// check variables after they have been parsed and their declarators
|
2009-05-01 19:47:09 +04:00
|
|
|
/// have been translated into a declaration, and to check variables
|
|
|
|
/// that have been instantiated from a template.
|
2009-03-26 02:32:15 +03:00
|
|
|
///
|
2009-04-25 12:06:05 +04:00
|
|
|
/// Sets NewVD->isInvalidDecl() if an error was encountered.
|
2009-11-19 01:49:29 +03:00
|
|
|
void Sema::CheckVariableDeclaration(VarDecl *NewVD,
|
|
|
|
LookupResult &Previous,
|
2009-03-26 02:32:15 +03:00
|
|
|
bool &Redeclaration) {
|
2009-04-25 12:06:05 +04:00
|
|
|
// If the decl is already known invalid, don't check it.
|
|
|
|
if (NewVD->isInvalidDecl())
|
|
|
|
return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-26 02:32:15 +03:00
|
|
|
QualType T = NewVD->getType();
|
|
|
|
|
|
|
|
if (T->isObjCInterfaceType()) {
|
|
|
|
Diag(NewVD->getLocation(), diag::err_statically_allocated_object);
|
2009-04-25 12:06:05 +04:00
|
|
|
return NewVD->setInvalidDecl();
|
2009-03-26 02:32:15 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-16 05:36:34 +03:00
|
|
|
// Emit an error if an address space was applied to decl with local storage.
|
|
|
|
// This includes arrays of objects with address space qualifiers, but not
|
|
|
|
// automatic variables that point to other address spaces.
|
|
|
|
// ISO/IEC TR 18037 S5.1.2
|
2009-03-26 02:32:15 +03:00
|
|
|
if (NewVD->hasLocalStorage() && (T.getAddressSpace() != 0)) {
|
|
|
|
Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl);
|
2009-04-25 12:06:05 +04:00
|
|
|
return NewVD->setInvalidDecl();
|
2009-01-16 05:36:34 +03:00
|
|
|
}
|
2009-02-21 22:44:02 +03:00
|
|
|
|
2009-04-14 04:57:29 +04:00
|
|
|
if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
|
2009-06-30 06:34:44 +04:00
|
|
|
&& !NewVD->hasAttr<BlocksAttr>())
|
2009-03-26 02:32:15 +03:00
|
|
|
Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
|
2009-02-21 22:44:02 +03:00
|
|
|
|
2009-04-19 09:21:20 +04:00
|
|
|
bool isVM = T->isVariablyModifiedType();
|
2009-07-20 00:17:11 +04:00
|
|
|
if (isVM || NewVD->hasAttr<CleanupAttr>() ||
|
|
|
|
NewVD->hasAttr<BlocksAttr>())
|
2009-04-19 09:21:20 +04:00
|
|
|
CurFunctionNeedsScopeChecking = true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-19 09:21:20 +04:00
|
|
|
if ((isVM && NewVD->hasLinkage()) ||
|
|
|
|
(T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
|
2009-03-01 00:56:50 +03:00
|
|
|
bool SizeIsNegative;
|
|
|
|
QualType FixedTy =
|
2009-03-26 02:32:15 +03:00
|
|
|
TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (FixedTy.isNull() && T->isVariableArrayType()) {
|
2009-03-26 02:32:15 +03:00
|
|
|
const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
|
2009-09-09 19:08:12 +04:00
|
|
|
// FIXME: This won't give the correct result for
|
|
|
|
// int a[10][n];
|
2009-03-01 00:56:50 +03:00
|
|
|
SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-01 00:56:50 +03:00
|
|
|
if (NewVD->isFileVarDecl())
|
|
|
|
Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
|
2009-04-25 12:06:05 +04:00
|
|
|
<< SizeRange;
|
2009-03-01 00:56:50 +03:00
|
|
|
else if (NewVD->getStorageClass() == VarDecl::Static)
|
|
|
|
Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
|
2009-04-25 12:06:05 +04:00
|
|
|
<< SizeRange;
|
2009-03-01 00:56:50 +03:00
|
|
|
else
|
|
|
|
Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
|
2009-04-25 12:06:05 +04:00
|
|
|
<< SizeRange;
|
|
|
|
return NewVD->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (FixedTy.isNull()) {
|
2009-03-01 00:56:50 +03:00
|
|
|
if (NewVD->isFileVarDecl())
|
|
|
|
Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
|
|
|
|
else
|
|
|
|
Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
|
2009-04-25 12:06:05 +04:00
|
|
|
return NewVD->setInvalidDecl();
|
2009-03-01 00:56:50 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
|
|
|
|
NewVD->setType(FixedTy);
|
2009-03-01 00:56:50 +03:00
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.empty() && NewVD->isExternC()) {
|
2009-03-02 03:19:53 +03:00
|
|
|
// Since we did not find anything by this name and we're declaring
|
|
|
|
// an extern "C" variable, look for a non-visible extern "C"
|
|
|
|
// declaration with the same name.
|
|
|
|
llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
|
2009-03-26 02:32:15 +03:00
|
|
|
= LocallyScopedExternalDecls.find(NewVD->getDeclName());
|
2009-03-02 03:19:53 +03:00
|
|
|
if (Pos != LocallyScopedExternalDecls.end())
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.addDecl(Pos->second);
|
2009-03-02 03:19:53 +03:00
|
|
|
}
|
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (T->isVoidType() && !NewVD->hasExternalStorage()) {
|
2009-03-26 02:32:15 +03:00
|
|
|
Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
|
|
|
|
<< T;
|
2009-04-25 12:06:05 +04:00
|
|
|
return NewVD->setInvalidDecl();
|
2009-03-26 02:32:15 +03:00
|
|
|
}
|
2009-01-16 05:36:34 +03:00
|
|
|
|
2009-06-30 06:34:44 +04:00
|
|
|
if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
|
2009-04-30 04:19:40 +04:00
|
|
|
Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
|
|
|
|
return NewVD->setInvalidDecl();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-06-30 06:34:44 +04:00
|
|
|
if (isVM && NewVD->hasAttr<BlocksAttr>()) {
|
2009-05-02 03:41:47 +04:00
|
|
|
Diag(NewVD->getLocation(), diag::err_block_on_vm);
|
|
|
|
return NewVD->setInvalidDecl();
|
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (!Previous.empty()) {
|
2009-02-16 20:45:42 +03:00
|
|
|
Redeclaration = true;
|
2009-11-19 01:49:29 +03:00
|
|
|
MergeVarDecl(NewVD, Previous);
|
2009-03-11 00:58:27 +03:00
|
|
|
}
|
2009-01-16 05:36:34 +03:00
|
|
|
}
|
|
|
|
|
2009-10-06 21:59:45 +04:00
|
|
|
/// \brief Data used with FindOverriddenMethod
|
|
|
|
struct FindOverriddenMethodData {
|
|
|
|
Sema *S;
|
|
|
|
CXXMethodDecl *Method;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// \brief Member lookup function that determines whether a given C++
|
|
|
|
/// method overrides a method in a base class, to be used with
|
|
|
|
/// CXXRecordDecl::lookupInBases().
|
2009-11-12 06:15:40 +03:00
|
|
|
static bool FindOverriddenMethod(const CXXBaseSpecifier *Specifier,
|
2009-10-06 21:59:45 +04:00
|
|
|
CXXBasePath &Path,
|
|
|
|
void *UserData) {
|
|
|
|
RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
|
2009-11-26 23:50:40 +03:00
|
|
|
|
2009-10-06 21:59:45 +04:00
|
|
|
FindOverriddenMethodData *Data
|
|
|
|
= reinterpret_cast<FindOverriddenMethodData*>(UserData);
|
2009-11-26 23:50:40 +03:00
|
|
|
|
|
|
|
DeclarationName Name = Data->Method->getDeclName();
|
|
|
|
|
|
|
|
// FIXME: Do we care about other names here too?
|
|
|
|
if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
|
|
|
|
// We really want to find the base class constructor here.
|
|
|
|
QualType T = Data->S->Context.getTypeDeclType(BaseRecord);
|
|
|
|
CanQualType CT = Data->S->Context.getCanonicalType(T);
|
|
|
|
|
2009-11-27 04:26:58 +03:00
|
|
|
Name = Data->S->Context.DeclarationNames.getCXXDestructorName(CT);
|
2009-11-26 23:50:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (Path.Decls = BaseRecord->lookup(Name);
|
2009-10-06 21:59:45 +04:00
|
|
|
Path.Decls.first != Path.Decls.second;
|
|
|
|
++Path.Decls.first) {
|
|
|
|
if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*Path.Decls.first)) {
|
2009-11-19 01:49:29 +03:00
|
|
|
if (MD->isVirtual() && !Data->S->IsOverload(Data->Method, MD))
|
2009-10-06 21:59:45 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-19 00:51:29 +03:00
|
|
|
/// AddOverriddenMethods - See if a method overrides any in the base classes,
|
|
|
|
/// and if so, check that it's a valid override and remember it.
|
|
|
|
void Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
|
|
|
|
// Look for virtual methods in base classes that this method might override.
|
|
|
|
CXXBasePaths Paths;
|
|
|
|
FindOverriddenMethodData Data;
|
|
|
|
Data.Method = MD;
|
|
|
|
Data.S = this;
|
|
|
|
if (DC->lookupInBases(&FindOverriddenMethod, &Data, Paths)) {
|
|
|
|
for (CXXBasePaths::decl_iterator I = Paths.found_decls_begin(),
|
|
|
|
E = Paths.found_decls_end(); I != E; ++I) {
|
|
|
|
if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(*I)) {
|
|
|
|
if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
|
2009-11-21 11:43:09 +03:00
|
|
|
!CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
|
|
|
|
!CheckOverridingFunctionAttributes(MD, OldMD))
|
2009-12-04 08:51:56 +03:00
|
|
|
MD->addOverriddenMethod(OldMD->getCanonicalDecl());
|
2009-11-19 00:51:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
NamedDecl*
|
2009-01-16 04:13:29 +03:00
|
|
|
Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
|
2009-08-19 05:27:57 +04:00
|
|
|
QualType R, DeclaratorInfo *DInfo,
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupResult &Previous,
|
2009-06-24 03:11:28 +04:00
|
|
|
MultiTemplateParamsArg TemplateParamLists,
|
2009-04-25 12:06:05 +04:00
|
|
|
bool IsFunctionDefinition, bool &Redeclaration) {
|
2009-01-16 04:13:29 +03:00
|
|
|
assert(R.getTypePtr()->isFunctionType());
|
|
|
|
|
|
|
|
DeclarationName Name = GetNameForDeclarator(D);
|
|
|
|
FunctionDecl::StorageClass SC = FunctionDecl::None;
|
|
|
|
switch (D.getDeclSpec().getStorageClassSpec()) {
|
|
|
|
default: assert(0 && "Unknown storage class!");
|
|
|
|
case DeclSpec::SCS_auto:
|
|
|
|
case DeclSpec::SCS_register:
|
|
|
|
case DeclSpec::SCS_mutable:
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getStorageClassSpecLoc(),
|
2009-02-24 04:23:02 +03:00
|
|
|
diag::err_typecheck_sclass_func);
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-01-16 04:13:29 +03:00
|
|
|
break;
|
|
|
|
case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
|
|
|
|
case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
|
2009-02-24 04:23:02 +03:00
|
|
|
case DeclSpec::SCS_static: {
|
2009-03-12 02:52:16 +03:00
|
|
|
if (CurContext->getLookupContext()->isFunctionOrMethod()) {
|
2009-02-24 04:23:02 +03:00
|
|
|
// C99 6.7.1p5:
|
|
|
|
// The declaration of an identifier for a function that has
|
|
|
|
// block scope shall have no explicit storage-class specifier
|
|
|
|
// other than extern
|
|
|
|
// See also (C++ [dcl.stc]p4).
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getStorageClassSpecLoc(),
|
2009-02-24 04:23:02 +03:00
|
|
|
diag::err_static_block_func);
|
|
|
|
SC = FunctionDecl::None;
|
|
|
|
} else
|
2009-09-09 19:08:12 +04:00
|
|
|
SC = FunctionDecl::Static;
|
2009-02-24 04:23:02 +03:00
|
|
|
break;
|
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
|
|
|
|
}
|
|
|
|
|
2009-04-20 00:27:55 +04:00
|
|
|
if (D.getDeclSpec().isThreadSpecified())
|
|
|
|
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
|
|
|
|
|
2009-08-11 10:59:38 +04:00
|
|
|
bool isFriend = D.getDeclSpec().isFriendSpecified();
|
2009-01-16 04:13:29 +03:00
|
|
|
bool isInline = D.getDeclSpec().isInlineSpecified();
|
2009-03-12 02:00:04 +03:00
|
|
|
bool isVirtual = D.getDeclSpec().isVirtualSpecified();
|
2009-01-16 04:13:29 +03:00
|
|
|
bool isExplicit = D.getDeclSpec().isExplicitSpecified();
|
|
|
|
|
2009-03-22 23:18:17 +03:00
|
|
|
// Check that the return type is not an abstract class type.
|
2009-03-24 04:19:16 +03:00
|
|
|
// For record types, this is done by the AbstractClassUsageDiagnoser once
|
2009-09-09 19:08:12 +04:00
|
|
|
// the class has been completely parsed.
|
2009-03-24 04:19:16 +03:00
|
|
|
if (!DC->isRecord() &&
|
2009-09-09 19:08:12 +04:00
|
|
|
RequireNonAbstractType(D.getIdentifierLoc(),
|
2009-09-22 03:43:11 +04:00
|
|
|
R->getAs<FunctionType>()->getResultType(),
|
2009-09-09 19:08:12 +04:00
|
|
|
diag::err_abstract_type_in_decl,
|
2009-03-24 04:19:16 +03:00
|
|
|
AbstractReturnType))
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-11 23:17:25 +04:00
|
|
|
// Do not allow returning a objc interface by-value.
|
2009-09-22 03:43:11 +04:00
|
|
|
if (R->getAs<FunctionType>()->getResultType()->isObjCInterfaceType()) {
|
2009-04-11 23:17:25 +04:00
|
|
|
Diag(D.getIdentifierLoc(),
|
|
|
|
diag::err_object_cannot_be_passed_returned_by_value) << 0
|
2009-09-22 03:43:11 +04:00
|
|
|
<< R->getAs<FunctionType>()->getResultType();
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-04-11 23:17:25 +04:00
|
|
|
}
|
2009-06-24 03:11:28 +04:00
|
|
|
|
2009-03-12 02:00:04 +03:00
|
|
|
bool isVirtualOkay = false;
|
2009-01-16 04:13:29 +03:00
|
|
|
FunctionDecl *NewFD;
|
2009-08-28 11:59:38 +04:00
|
|
|
|
2009-08-11 10:59:38 +04:00
|
|
|
if (isFriend) {
|
|
|
|
// C++ [class.friend]p5
|
|
|
|
// A function can be defined in a friend declaration of a
|
|
|
|
// class . . . . Such a function is implicitly inline.
|
|
|
|
isInline |= IsFunctionDefinition;
|
2009-08-28 11:59:38 +04:00
|
|
|
}
|
2009-08-11 10:59:38 +04:00
|
|
|
|
2009-11-03 04:35:08 +03:00
|
|
|
if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
|
2009-01-16 04:13:29 +03:00
|
|
|
// This is a C++ constructor declaration.
|
|
|
|
assert(DC->isRecord() &&
|
|
|
|
"Constructors can only be declared in a member context");
|
|
|
|
|
2009-04-25 12:28:21 +04:00
|
|
|
R = CheckConstructorDeclarator(D, R, SC);
|
2009-01-16 04:13:29 +03:00
|
|
|
|
|
|
|
// Create the new declaration
|
2009-09-09 19:08:12 +04:00
|
|
|
NewFD = CXXConstructorDecl::Create(Context,
|
2009-01-16 04:13:29 +03:00
|
|
|
cast<CXXRecordDecl>(DC),
|
2009-08-19 05:27:57 +04:00
|
|
|
D.getIdentifierLoc(), Name, R, DInfo,
|
2009-01-16 04:13:29 +03:00
|
|
|
isExplicit, isInline,
|
|
|
|
/*isImplicitlyDeclared=*/false);
|
2009-11-03 04:35:08 +03:00
|
|
|
} else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
|
2009-01-16 04:13:29 +03:00
|
|
|
// This is a C++ destructor declaration.
|
|
|
|
if (DC->isRecord()) {
|
2009-04-25 12:28:21 +04:00
|
|
|
R = CheckDestructorDeclarator(D, SC);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-16 04:13:29 +03:00
|
|
|
NewFD = CXXDestructorDecl::Create(Context,
|
|
|
|
cast<CXXRecordDecl>(DC),
|
2009-09-09 19:08:12 +04:00
|
|
|
D.getIdentifierLoc(), Name, R,
|
2009-01-16 04:13:29 +03:00
|
|
|
isInline,
|
|
|
|
/*isImplicitlyDeclared=*/false);
|
|
|
|
|
2009-03-12 02:00:04 +03:00
|
|
|
isVirtualOkay = true;
|
2009-01-16 04:13:29 +03:00
|
|
|
} else {
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
|
|
|
|
|
|
|
|
// Create a FunctionDecl to satisfy the function definition parsing
|
|
|
|
// code path.
|
|
|
|
NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
|
2009-09-09 19:08:12 +04:00
|
|
|
Name, R, DInfo, SC, isInline,
|
2009-08-21 04:31:54 +04:00
|
|
|
/*hasPrototype=*/true);
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
2009-11-03 04:35:08 +03:00
|
|
|
} else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
|
2009-01-16 04:13:29 +03:00
|
|
|
if (!DC->isRecord()) {
|
|
|
|
Diag(D.getIdentifierLoc(),
|
|
|
|
diag::err_conv_function_not_member);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 12:35:12 +04:00
|
|
|
CheckConversionDeclarator(D, R, SC);
|
|
|
|
NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
|
2009-08-19 05:27:57 +04:00
|
|
|
D.getIdentifierLoc(), Name, R, DInfo,
|
2009-04-25 12:35:12 +04:00
|
|
|
isInline, isExplicit);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 12:35:12 +04:00
|
|
|
isVirtualOkay = true;
|
2009-01-16 04:13:29 +03:00
|
|
|
} else if (DC->isRecord()) {
|
2009-05-01 02:41:11 +04:00
|
|
|
// If the of the function is the same as the name of the record, then this
|
2009-09-09 19:08:12 +04:00
|
|
|
// must be an invalid constructor that has a return type.
|
|
|
|
// (The parser checks for a return type and makes the declarator a
|
2009-05-01 02:41:11 +04:00
|
|
|
// constructor if it has no return type).
|
2009-09-09 19:08:12 +04:00
|
|
|
// must have an invalid constructor that has a return type
|
2009-05-01 02:41:11 +04:00
|
|
|
if (Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
|
|
|
|
<< SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
|
|
|
|
<< SourceRange(D.getIdentifierLoc());
|
|
|
|
return 0;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-15 21:59:32 +03:00
|
|
|
bool isStatic = SC == FunctionDecl::Static;
|
|
|
|
|
|
|
|
// [class.free]p1:
|
|
|
|
// Any allocation function for a class T is a static member
|
|
|
|
// (even if not explicitly declared static).
|
|
|
|
if (Name.getCXXOverloadedOperator() == OO_New ||
|
|
|
|
Name.getCXXOverloadedOperator() == OO_Array_New)
|
|
|
|
isStatic = true;
|
2009-11-15 22:08:46 +03:00
|
|
|
|
|
|
|
// [class.free]p6 Any deallocation function for a class X is a static member
|
|
|
|
// (even if not explicitly declared static).
|
|
|
|
if (Name.getCXXOverloadedOperator() == OO_Delete ||
|
|
|
|
Name.getCXXOverloadedOperator() == OO_Array_Delete)
|
|
|
|
isStatic = true;
|
2009-11-15 21:59:32 +03:00
|
|
|
|
2009-01-16 04:13:29 +03:00
|
|
|
// This is a C++ method declaration.
|
|
|
|
NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
|
2009-08-19 05:27:57 +04:00
|
|
|
D.getIdentifierLoc(), Name, R, DInfo,
|
2009-11-15 21:59:32 +03:00
|
|
|
isStatic, isInline);
|
2009-03-12 02:00:04 +03:00
|
|
|
|
2009-11-15 22:08:46 +03:00
|
|
|
isVirtualOkay = !isStatic;
|
2009-01-16 04:13:29 +03:00
|
|
|
} else {
|
2009-03-19 21:33:54 +03:00
|
|
|
// Determine whether the function was written with a
|
|
|
|
// prototype. This true when:
|
|
|
|
// - we're in C++ (where every function has a prototype),
|
|
|
|
// - there is a prototype in the declarator, or
|
|
|
|
// - the type R of the function is some kind of typedef or other reference
|
|
|
|
// to a type name (which eventually refers to a function type).
|
2009-09-09 19:08:12 +04:00
|
|
|
bool HasPrototype =
|
2009-03-18 02:17:04 +03:00
|
|
|
getLangOptions().CPlusPlus ||
|
2009-03-19 21:14:46 +03:00
|
|
|
(D.getNumTypeObjects() && D.getTypeObject(0).Fun.hasPrototype) ||
|
2009-03-23 19:26:51 +03:00
|
|
|
(!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-16 04:13:29 +03:00
|
|
|
NewFD = FunctionDecl::Create(Context, DC,
|
|
|
|
D.getIdentifierLoc(),
|
2009-08-21 04:31:54 +04:00
|
|
|
Name, R, DInfo, SC, isInline, HasPrototype);
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D.isInvalidType())
|
2009-04-25 09:44:12 +04:00
|
|
|
NewFD->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-01-16 04:13:29 +03:00
|
|
|
// Set the lexical context. If the declarator has a C++
|
2009-08-28 11:59:38 +04:00
|
|
|
// scope specifier, or is the object of a friend declaration, the
|
|
|
|
// lexical context will be different from the semantic context.
|
2009-01-16 04:13:29 +03:00
|
|
|
NewFD->setLexicalDeclContext(CurContext);
|
|
|
|
|
2009-07-22 03:53:31 +04:00
|
|
|
// Match up the template parameter lists with the scope specifier, then
|
|
|
|
// determine whether we have a template or a template specialization.
|
2009-06-24 04:23:40 +04:00
|
|
|
FunctionTemplateDecl *FunctionTemplate = 0;
|
2009-10-08 02:35:40 +04:00
|
|
|
bool isExplicitSpecialization = false;
|
2009-09-25 03:14:47 +04:00
|
|
|
bool isFunctionTemplateSpecialization = false;
|
2009-07-22 03:53:31 +04:00
|
|
|
if (TemplateParameterList *TemplateParams
|
|
|
|
= MatchTemplateParametersToScopeSpecifier(
|
|
|
|
D.getDeclSpec().getSourceRange().getBegin(),
|
|
|
|
D.getCXXScopeSpec(),
|
2009-07-23 02:05:02 +04:00
|
|
|
(TemplateParameterList**)TemplateParamLists.get(),
|
2009-10-08 02:35:40 +04:00
|
|
|
TemplateParamLists.size(),
|
|
|
|
isExplicitSpecialization)) {
|
2009-06-24 04:23:40 +04:00
|
|
|
if (TemplateParams->size() > 0) {
|
|
|
|
// This is a function template
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-25 21:23:04 +04:00
|
|
|
// Check that we can declare a template here.
|
|
|
|
if (CheckTemplateDeclScope(S, TemplateParams))
|
|
|
|
return 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-27 20:57:43 +04:00
|
|
|
FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
|
2009-06-24 04:23:40 +04:00
|
|
|
NewFD->getLocation(),
|
|
|
|
Name, TemplateParams,
|
|
|
|
NewFD);
|
2009-08-27 20:57:43 +04:00
|
|
|
FunctionTemplate->setLexicalDeclContext(CurContext);
|
2009-06-24 04:23:40 +04:00
|
|
|
NewFD->setDescribedFunctionTemplate(FunctionTemplate);
|
|
|
|
} else {
|
2009-09-25 03:14:47 +04:00
|
|
|
// This is a function template specialization.
|
|
|
|
isFunctionTemplateSpecialization = true;
|
2009-06-24 04:23:40 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-23 02:05:02 +04:00
|
|
|
// FIXME: Free this memory properly.
|
|
|
|
TemplateParamLists.release();
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-09-25 03:14:47 +04:00
|
|
|
|
2009-03-12 02:00:04 +03:00
|
|
|
// C++ [dcl.fct.spec]p5:
|
|
|
|
// The virtual specifier shall only be used in declarations of
|
|
|
|
// nonstatic class member functions that appear within a
|
|
|
|
// member-specification of a class declaration; see 10.3.
|
|
|
|
//
|
2009-04-25 12:06:05 +04:00
|
|
|
if (isVirtual && !NewFD->isInvalidDecl()) {
|
2009-03-12 02:00:04 +03:00
|
|
|
if (!isVirtualOkay) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getVirtualSpecLoc(),
|
2009-03-12 02:00:04 +03:00
|
|
|
diag::err_virtual_non_function);
|
|
|
|
} else if (!CurContext->isRecord()) {
|
|
|
|
// 'virtual' was specified outside of the class.
|
|
|
|
Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_out_of_class)
|
|
|
|
<< CodeModificationHint::CreateRemoval(
|
|
|
|
SourceRange(D.getDeclSpec().getVirtualSpecLoc()));
|
|
|
|
} else {
|
|
|
|
// Okay: Add virtual to the method.
|
|
|
|
CXXRecordDecl *CurClass = cast<CXXRecordDecl>(DC);
|
2009-12-03 21:44:40 +03:00
|
|
|
CurClass->setMethodAsVirtual(NewFD);
|
2009-03-12 02:00:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
// Filter out previous declarations that don't match the scope.
|
|
|
|
FilterLookupForScope(*this, Previous, DC, S, NewFD->hasLinkage());
|
|
|
|
|
2009-10-13 18:39:41 +04:00
|
|
|
if (isFriend) {
|
2009-11-19 01:49:29 +03:00
|
|
|
// DC is the namespace in which the function is being declared.
|
|
|
|
assert((DC->isFileContext() || !Previous.empty()) &&
|
|
|
|
"previously-undeclared friend function being created "
|
|
|
|
"in a non-namespace context");
|
|
|
|
|
2009-10-13 18:39:41 +04:00
|
|
|
if (FunctionTemplate) {
|
|
|
|
FunctionTemplate->setObjectOfFriendDecl(
|
2009-11-19 01:49:29 +03:00
|
|
|
/* PreviouslyDeclared= */ !Previous.empty());
|
2009-10-13 18:39:41 +04:00
|
|
|
FunctionTemplate->setAccess(AS_public);
|
|
|
|
}
|
|
|
|
else
|
2009-11-19 01:49:29 +03:00
|
|
|
NewFD->setObjectOfFriendDecl(/* PreviouslyDeclared= */ !Previous.empty());
|
2009-10-13 18:39:41 +04:00
|
|
|
|
|
|
|
NewFD->setAccess(AS_public);
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
if (SC == FunctionDecl::Static && isa<CXXMethodDecl>(NewFD) &&
|
2009-03-12 02:52:16 +03:00
|
|
|
!CurContext->isRecord()) {
|
|
|
|
// C++ [class.static]p1:
|
|
|
|
// A data or function member of a class may be declared static
|
|
|
|
// in a class definition, in which case it is a static member of
|
|
|
|
// the class.
|
|
|
|
|
|
|
|
// Complain about the 'static' specifier if it's on an out-of-line
|
|
|
|
// member function definition.
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(D.getDeclSpec().getStorageClassSpecLoc(),
|
2009-03-12 02:52:16 +03:00
|
|
|
diag::err_static_out_of_line)
|
|
|
|
<< CodeModificationHint::CreateRemoval(
|
|
|
|
SourceRange(D.getDeclSpec().getStorageClassSpecLoc()));
|
|
|
|
}
|
|
|
|
|
2009-01-16 04:13:29 +03:00
|
|
|
// Handle GNU asm-label extension (encoded as an attribute).
|
|
|
|
if (Expr *E = (Expr*) D.getAsmLabel()) {
|
|
|
|
// The parser guarantees this is a string.
|
2009-09-09 19:08:12 +04:00
|
|
|
StringLiteral *SE = cast<StringLiteral>(E);
|
2009-11-30 20:08:26 +03:00
|
|
|
NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getString()));
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
|
|
|
|
2009-04-25 10:12:16 +04:00
|
|
|
// Copy the parameter declarations from the declarator D to the function
|
|
|
|
// declaration NewFD, if they are available. First scavenge them into Params.
|
|
|
|
llvm::SmallVector<ParmVarDecl*, 16> Params;
|
2009-01-16 04:13:29 +03:00
|
|
|
if (D.getNumTypeObjects() > 0) {
|
|
|
|
DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
|
|
|
|
|
|
|
|
// Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
|
|
|
|
// function that takes no arguments, not a function that takes a
|
|
|
|
// single void argument.
|
|
|
|
// We let through "const void" here because Sema::GetTypeForDeclarator
|
|
|
|
// already checks for that case.
|
|
|
|
if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
|
|
|
|
FTI.ArgInfo[0].Param &&
|
2009-03-28 22:18:32 +03:00
|
|
|
FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType()) {
|
2009-04-25 10:12:16 +04:00
|
|
|
// Empty arg list, don't push any params.
|
2009-03-28 22:18:32 +03:00
|
|
|
ParmVarDecl *Param = FTI.ArgInfo[0].Param.getAs<ParmVarDecl>();
|
2009-01-16 04:13:29 +03:00
|
|
|
|
|
|
|
// In C++, the empty parameter-type-list must be spelled "void"; a
|
|
|
|
// typedef of void is not permitted.
|
|
|
|
if (getLangOptions().CPlusPlus &&
|
2009-04-25 09:44:12 +04:00
|
|
|
Param->getType().getUnqualifiedType() != Context.VoidTy)
|
2009-04-02 03:51:29 +04:00
|
|
|
Diag(Param->getLocation(), diag::err_param_typedef_of_void);
|
2009-04-25 10:12:16 +04:00
|
|
|
// FIXME: Leaks decl?
|
2009-01-16 04:13:29 +03:00
|
|
|
} else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
|
2009-07-14 07:18:53 +04:00
|
|
|
for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
|
|
|
|
ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
|
|
|
|
assert(Param->getDeclContext() != NewFD && "Was set before ?");
|
|
|
|
Param->setDeclContext(NewFD);
|
|
|
|
Params.push_back(Param);
|
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-09-22 03:43:11 +04:00
|
|
|
} else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
|
2009-04-25 10:03:53 +04:00
|
|
|
// When we're declaring a function with a typedef, typeof, etc as in the
|
2009-01-16 04:13:29 +03:00
|
|
|
// following example, we'll need to synthesize (unnamed)
|
|
|
|
// parameters for use in the declaration.
|
|
|
|
//
|
|
|
|
// @code
|
|
|
|
// typedef void fn(int);
|
|
|
|
// fn f;
|
|
|
|
// @endcode
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 10:03:53 +04:00
|
|
|
// Synthesize a parameter for each argument type.
|
|
|
|
for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
|
|
|
|
AE = FT->arg_type_end(); AI != AE; ++AI) {
|
|
|
|
ParmVarDecl *Param = ParmVarDecl::Create(Context, DC,
|
|
|
|
SourceLocation(), 0,
|
2009-08-19 05:27:57 +04:00
|
|
|
*AI, /*DInfo=*/0,
|
|
|
|
VarDecl::None, 0);
|
2009-04-25 10:03:53 +04:00
|
|
|
Param->setImplicit();
|
|
|
|
Params.push_back(Param);
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
2009-04-25 22:38:18 +04:00
|
|
|
} else {
|
|
|
|
assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
|
|
|
|
"Should not need args for typedef of non-prototype fn");
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
2009-04-25 10:12:16 +04:00
|
|
|
// Finally, we know we have the right number of parameters, install them.
|
2009-05-21 13:52:38 +04:00
|
|
|
NewFD->setParams(Context, Params.data(), Params.size());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-09-26 03:53:26 +04:00
|
|
|
// If the declarator is a template-id, translate the parser's template
|
|
|
|
// argument list into our AST format.
|
|
|
|
bool HasExplicitTemplateArgs = false;
|
2009-11-23 04:53:49 +03:00
|
|
|
TemplateArgumentListInfo TemplateArgs;
|
2009-11-03 04:35:08 +03:00
|
|
|
if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
|
|
|
|
TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
|
2009-11-23 04:53:49 +03:00
|
|
|
TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
|
|
|
|
TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
|
2009-09-26 03:53:26 +04:00
|
|
|
ASTTemplateArgsPtr TemplateArgsPtr(*this,
|
|
|
|
TemplateId->getTemplateArgs(),
|
|
|
|
TemplateId->NumArgs);
|
|
|
|
translateTemplateArguments(TemplateArgsPtr,
|
|
|
|
TemplateArgs);
|
|
|
|
TemplateArgsPtr.release();
|
|
|
|
|
|
|
|
HasExplicitTemplateArgs = true;
|
|
|
|
|
|
|
|
if (FunctionTemplate) {
|
2009-10-08 02:35:40 +04:00
|
|
|
// FIXME: Diagnose function template with explicit template
|
2009-09-26 03:53:26 +04:00
|
|
|
// arguments.
|
|
|
|
HasExplicitTemplateArgs = false;
|
|
|
|
} else if (!isFunctionTemplateSpecialization &&
|
|
|
|
!D.getDeclSpec().isFriendSpecified()) {
|
|
|
|
// We have encountered something that the user meant to be a
|
|
|
|
// specialization (because it has explicitly-specified template
|
|
|
|
// arguments) but that was not introduced with a "template<>" (or had
|
|
|
|
// too few of them).
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_template_spec_needs_header)
|
|
|
|
<< SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc)
|
|
|
|
<< CodeModificationHint::CreateInsertion(
|
|
|
|
D.getDeclSpec().getSourceRange().getBegin(),
|
|
|
|
"template<> ");
|
|
|
|
isFunctionTemplateSpecialization = true;
|
|
|
|
}
|
|
|
|
}
|
2009-11-19 01:49:29 +03:00
|
|
|
|
2009-10-08 02:35:40 +04:00
|
|
|
if (isFunctionTemplateSpecialization) {
|
2009-11-23 04:53:49 +03:00
|
|
|
if (CheckFunctionTemplateSpecialization(NewFD,
|
|
|
|
(HasExplicitTemplateArgs ? &TemplateArgs : 0),
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous))
|
2009-10-08 02:35:40 +04:00
|
|
|
NewFD->setInvalidDecl();
|
|
|
|
} else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD) &&
|
2009-11-19 01:49:29 +03:00
|
|
|
CheckMemberSpecialization(NewFD, Previous))
|
2009-09-25 03:14:47 +04:00
|
|
|
NewFD->setInvalidDecl();
|
2009-10-13 20:30:37 +04:00
|
|
|
|
2009-03-24 02:06:20 +03:00
|
|
|
// Perform semantic checking on the function declaration.
|
|
|
|
bool OverloadableAttrRequired = false; // FIXME: HACK!
|
2009-11-19 01:49:29 +03:00
|
|
|
CheckFunctionDeclaration(NewFD, Previous, isExplicitSpecialization,
|
2009-10-13 20:30:37 +04:00
|
|
|
Redeclaration, /*FIXME:*/OverloadableAttrRequired);
|
2009-03-24 02:06:20 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
assert((NewFD->isInvalidDecl() || !Redeclaration ||
|
|
|
|
Previous.getResultKind() != LookupResult::FoundOverloaded) &&
|
|
|
|
"previous declaration set still overloaded");
|
|
|
|
|
2009-11-25 20:50:39 +03:00
|
|
|
// If we have a function template, check the template parameter
|
|
|
|
// list. This will check and merge default template arguments.
|
|
|
|
if (FunctionTemplate) {
|
|
|
|
FunctionTemplateDecl *PrevTemplate = FunctionTemplate->getPreviousDeclaration();
|
|
|
|
CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
|
|
|
|
PrevTemplate? PrevTemplate->getTemplateParameters() : 0,
|
|
|
|
D.getDeclSpec().isFriendSpecified()? TPC_FriendFunctionTemplate
|
|
|
|
: TPC_FunctionTemplate);
|
|
|
|
}
|
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D.getCXXScopeSpec().isSet() && !NewFD->isInvalidDecl()) {
|
2009-03-24 02:06:20 +03:00
|
|
|
// An out-of-line member function declaration must also be a
|
|
|
|
// definition (C++ [dcl.meaning]p1).
|
2009-10-08 19:54:21 +04:00
|
|
|
// Note that this is not the case for explicit specializations of
|
|
|
|
// function templates or member functions of class templates, per
|
|
|
|
// C++ [temp.expl.spec]p2.
|
2009-09-17 23:51:30 +04:00
|
|
|
if (!IsFunctionDefinition && !isFriend &&
|
2009-10-13 02:27:17 +04:00
|
|
|
!isFunctionTemplateSpecialization && !isExplicitSpecialization) {
|
2009-03-24 02:06:20 +03:00
|
|
|
Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
|
|
|
|
<< D.getCXXScopeSpec().getRange();
|
2009-04-25 12:06:05 +04:00
|
|
|
NewFD->setInvalidDecl();
|
2009-11-19 01:49:29 +03:00
|
|
|
} else if (!Redeclaration) {
|
2009-03-24 02:06:20 +03:00
|
|
|
// The user tried to provide an out-of-line definition for a
|
|
|
|
// function that is a member of a class or namespace, but there
|
2009-09-09 19:08:12 +04:00
|
|
|
// was no such member function declared (C++ [class.mfct]p2,
|
2009-03-24 02:06:20 +03:00
|
|
|
// C++ [namespace.memdef]p2). For example:
|
2009-09-09 19:08:12 +04:00
|
|
|
//
|
2009-03-24 02:06:20 +03:00
|
|
|
// class X {
|
|
|
|
// void f() const;
|
2009-09-09 19:08:12 +04:00
|
|
|
// };
|
2009-03-24 02:06:20 +03:00
|
|
|
//
|
|
|
|
// void X::f() { } // ill-formed
|
|
|
|
//
|
|
|
|
// Complain about this problem, and attempt to suggest close
|
|
|
|
// matches (e.g., those that differ only in cv-qualifiers and
|
|
|
|
// whether the parameter types are references).
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
|
2009-10-14 01:16:44 +04:00
|
|
|
<< Name << DC << D.getCXXScopeSpec().getRange();
|
2009-04-25 12:06:05 +04:00
|
|
|
NewFD->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupResult Prev(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
|
2009-11-18 10:57:50 +03:00
|
|
|
ForRedeclaration);
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupQualifiedName(Prev, DC);
|
2009-09-09 19:08:12 +04:00
|
|
|
assert(!Prev.isAmbiguous() &&
|
2009-03-24 02:06:20 +03:00
|
|
|
"Cannot have an ambiguity in previous-declaration lookup");
|
|
|
|
for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
|
|
|
|
Func != FuncEnd; ++Func) {
|
|
|
|
if (isa<FunctionDecl>(*Func) &&
|
|
|
|
isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
|
|
|
|
Diag((*Func)->getLocation(), diag::note_member_def_close_match);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle attributes. We need to have merged decls when handling attributes
|
|
|
|
// (for example to check for conflicts, etc).
|
|
|
|
// FIXME: This needs to happen before we merge declarations. Then,
|
|
|
|
// let attribute merging cope with attribute conflicts.
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributes(S, NewFD, D);
|
2009-07-26 02:29:44 +04:00
|
|
|
|
|
|
|
// attributes declared post-definition are currently ignored
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Redeclaration && Previous.isSingleResult()) {
|
|
|
|
const FunctionDecl *Def;
|
|
|
|
FunctionDecl *PrevFD = dyn_cast<FunctionDecl>(Previous.getFoundDecl());
|
2009-07-26 02:29:44 +04:00
|
|
|
if (PrevFD && PrevFD->getBody(Def) && D.hasAttributes()) {
|
|
|
|
Diag(NewFD->getLocation(), diag::warn_attribute_precede_definition);
|
|
|
|
Diag(Def->getLocation(), diag::note_previous_definition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-24 02:06:20 +03:00
|
|
|
AddKnownFunctionAttributes(NewFD);
|
|
|
|
|
2009-06-30 06:34:44 +04:00
|
|
|
if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
|
2009-03-24 02:06:20 +03:00
|
|
|
// If a function name is overloadable in C, then every function
|
|
|
|
// with that name must be marked "overloadable".
|
|
|
|
Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
|
|
|
|
<< Redeclaration << NewFD;
|
2009-11-19 01:49:29 +03:00
|
|
|
if (!Previous.empty())
|
|
|
|
Diag(Previous.getRepresentativeDecl()->getLocation(),
|
2009-03-24 02:06:20 +03:00
|
|
|
diag::note_attribute_overloadable_prev_overload);
|
2009-06-30 06:34:44 +04:00
|
|
|
NewFD->addAttr(::new (Context) OverloadableAttr());
|
2009-03-24 02:06:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a locally-scoped extern C function, update the
|
|
|
|
// map of such names.
|
2009-09-12 04:17:51 +04:00
|
|
|
if (CurContext->isFunctionOrMethod() && NewFD->isExternC()
|
2009-04-25 12:06:05 +04:00
|
|
|
&& !NewFD->isInvalidDecl())
|
2009-11-19 01:49:29 +03:00
|
|
|
RegisterLocallyScopedExternCDecl(NewFD, Previous, S);
|
2009-03-24 02:06:20 +03:00
|
|
|
|
2009-06-25 22:22:24 +04:00
|
|
|
// Set this FunctionDecl's range up to the right paren.
|
|
|
|
NewFD->setLocEnd(D.getSourceRange().getEnd());
|
|
|
|
|
2009-06-26 02:08:12 +04:00
|
|
|
if (FunctionTemplate && NewFD->isInvalidDecl())
|
|
|
|
FunctionTemplate->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-06-26 02:08:12 +04:00
|
|
|
if (FunctionTemplate)
|
|
|
|
return FunctionTemplate;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-24 02:06:20 +03:00
|
|
|
return NewFD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Perform semantic checking of a new function declaration.
|
|
|
|
///
|
|
|
|
/// Performs semantic analysis of the new function declaration
|
|
|
|
/// NewFD. This routine performs all semantic checking that does not
|
|
|
|
/// require the actual declarator involved in the declaration, and is
|
|
|
|
/// used both for the declaration of functions as they are parsed
|
|
|
|
/// (called via ActOnDeclarator) and for the declaration of functions
|
|
|
|
/// that have been instantiated via C++ template instantiation (called
|
|
|
|
/// via InstantiateDecl).
|
|
|
|
///
|
2009-10-13 20:30:37 +04:00
|
|
|
/// \param IsExplicitSpecialiation whether this new function declaration is
|
|
|
|
/// an explicit specialization of the previous declaration.
|
|
|
|
///
|
2009-04-25 12:06:05 +04:00
|
|
|
/// This sets NewFD->isInvalidDecl() to true if there was an error.
|
2009-11-19 01:49:29 +03:00
|
|
|
void Sema::CheckFunctionDeclaration(FunctionDecl *NewFD,
|
|
|
|
LookupResult &Previous,
|
2009-10-13 20:30:37 +04:00
|
|
|
bool IsExplicitSpecialization,
|
2009-03-24 02:06:20 +03:00
|
|
|
bool &Redeclaration,
|
|
|
|
bool &OverloadableAttrRequired) {
|
2009-04-25 12:06:05 +04:00
|
|
|
// If NewFD is already known erroneous, don't do any of this checking.
|
|
|
|
if (NewFD->isInvalidDecl())
|
|
|
|
return;
|
2009-03-24 02:06:20 +03:00
|
|
|
|
2009-05-16 16:15:55 +04:00
|
|
|
if (NewFD->getResultType()->isVariablyModifiedType()) {
|
|
|
|
// Functions returning a variably modified type violate C99 6.7.5.2p2
|
|
|
|
// because all functions have linkage.
|
|
|
|
Diag(NewFD->getLocation(), diag::err_vm_func_decl);
|
|
|
|
return NewFD->setInvalidDecl();
|
|
|
|
}
|
|
|
|
|
2009-09-12 04:17:51 +04:00
|
|
|
if (NewFD->isMain())
|
|
|
|
CheckMain(NewFD);
|
2009-07-24 07:03:21 +04:00
|
|
|
|
2009-03-24 02:06:20 +03:00
|
|
|
// Check for a previous declaration of this name.
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.empty() && NewFD->isExternC()) {
|
2009-03-02 03:19:53 +03:00
|
|
|
// Since we did not find anything by this name and we're declaring
|
|
|
|
// an extern "C" function, look for a non-visible extern "C"
|
|
|
|
// declaration with the same name.
|
|
|
|
llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
|
2009-03-24 02:06:20 +03:00
|
|
|
= LocallyScopedExternalDecls.find(NewFD->getDeclName());
|
2009-03-02 03:19:53 +03:00
|
|
|
if (Pos != LocallyScopedExternalDecls.end())
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.addDecl(Pos->second);
|
2009-03-02 03:19:53 +03:00
|
|
|
}
|
|
|
|
|
2009-02-24 04:23:02 +03:00
|
|
|
// Merge or overload the declaration with an existing declaration of
|
|
|
|
// the same name, if appropriate.
|
2009-11-19 01:49:29 +03:00
|
|
|
if (!Previous.empty()) {
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64336 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-12 02:02:49 +03:00
|
|
|
// Determine whether NewFD is an overload of PrevDecl or
|
2009-01-16 04:13:29 +03:00
|
|
|
// a declaration that requires merging. If it's an overload,
|
|
|
|
// there's no more work to do here; we'll just add the new
|
|
|
|
// function to the scope.
|
2009-02-13 03:26:38 +03:00
|
|
|
|
|
|
|
if (!getLangOptions().CPlusPlus &&
|
2009-11-19 01:49:29 +03:00
|
|
|
AllowOverloadingOfFunction(Previous, Context)) {
|
2009-02-13 03:26:38 +03:00
|
|
|
OverloadableAttrRequired = true;
|
|
|
|
|
2009-02-18 09:34:51 +03:00
|
|
|
// Functions marked "overloadable" must have a prototype (that
|
|
|
|
// we can't get through declaration merging).
|
2009-09-22 03:43:11 +04:00
|
|
|
if (!NewFD->getType()->getAs<FunctionProtoType>()) {
|
2009-02-18 09:34:51 +03:00
|
|
|
Diag(NewFD->getLocation(), diag::err_attribute_overloadable_no_prototype)
|
|
|
|
<< NewFD;
|
|
|
|
Redeclaration = true;
|
|
|
|
|
|
|
|
// Turn this into a variadic function with no parameters.
|
2009-03-24 02:06:20 +03:00
|
|
|
QualType R = Context.getFunctionType(
|
2009-09-22 03:43:11 +04:00
|
|
|
NewFD->getType()->getAs<FunctionType>()->getResultType(),
|
2009-03-24 02:06:20 +03:00
|
|
|
0, 0, true, 0);
|
2009-02-18 09:34:51 +03:00
|
|
|
NewFD->setType(R);
|
2009-04-25 12:06:05 +04:00
|
|
|
return NewFD->setInvalidDecl();
|
2009-02-18 09:34:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
NamedDecl *OldDecl = 0;
|
|
|
|
if (!Previous.empty()) {
|
|
|
|
if (!AllowOverloadingOfFunction(Previous, Context)) {
|
|
|
|
Redeclaration = true;
|
|
|
|
OldDecl = Previous.getFoundDecl();
|
|
|
|
} else if (!IsOverload(NewFD, Previous, OldDecl)) {
|
|
|
|
if (!isUsingDecl(OldDecl))
|
|
|
|
Redeclaration = true;
|
|
|
|
}
|
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Redeclaration) {
|
2009-03-24 02:06:20 +03:00
|
|
|
// NewFD and OldDecl represent declarations that need to be
|
2009-09-09 19:08:12 +04:00
|
|
|
// merged.
|
2009-02-16 20:45:42 +03:00
|
|
|
if (MergeFunctionDecl(NewFD, OldDecl))
|
2009-04-25 12:06:05 +04:00
|
|
|
return NewFD->setInvalidDecl();
|
2009-01-16 04:13:29 +03:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
|
|
|
Previous.addDecl(OldDecl);
|
|
|
|
|
2009-06-26 02:08:12 +04:00
|
|
|
if (FunctionTemplateDecl *OldTemplateDecl
|
2009-10-13 02:27:17 +04:00
|
|
|
= dyn_cast<FunctionTemplateDecl>(OldDecl)) {
|
2009-10-13 20:30:37 +04:00
|
|
|
NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl());
|
2009-10-13 02:27:17 +04:00
|
|
|
FunctionTemplateDecl *NewTemplateDecl
|
|
|
|
= NewFD->getDescribedFunctionTemplate();
|
|
|
|
assert(NewTemplateDecl && "Template/non-template mismatch");
|
|
|
|
if (CXXMethodDecl *Method
|
|
|
|
= dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) {
|
|
|
|
Method->setAccess(OldTemplateDecl->getAccess());
|
|
|
|
NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
|
|
|
|
}
|
2009-10-13 20:30:37 +04:00
|
|
|
|
|
|
|
// If this is an explicit specialization of a member that is a function
|
|
|
|
// template, mark it as a member specialization.
|
|
|
|
if (IsExplicitSpecialization &&
|
|
|
|
NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
|
|
|
|
NewTemplateDecl->setMemberSpecialization();
|
|
|
|
assert(OldTemplateDecl->isMemberSpecialization());
|
|
|
|
}
|
2009-10-13 02:27:17 +04:00
|
|
|
} else {
|
2009-07-14 07:18:53 +04:00
|
|
|
if (isa<CXXMethodDecl>(NewFD)) // Set access for out-of-line definitions
|
|
|
|
NewFD->setAccess(OldDecl->getAccess());
|
2009-06-26 02:08:12 +04:00
|
|
|
NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
|
2009-07-14 07:18:53 +04:00
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
2009-02-06 20:46:57 +03:00
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
|
2009-09-14 01:33:06 +04:00
|
|
|
// Semantic checking for this function declaration (in isolation).
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
// C++-specific checks.
|
|
|
|
if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
|
|
|
|
CheckConstructor(Constructor);
|
2009-11-16 01:49:34 +03:00
|
|
|
} else if (CXXDestructorDecl *Destructor =
|
|
|
|
dyn_cast<CXXDestructorDecl>(NewFD)) {
|
|
|
|
CXXRecordDecl *Record = Destructor->getParent();
|
2009-09-14 01:33:06 +04:00
|
|
|
QualType ClassType = Context.getTypeDeclType(Record);
|
2009-11-16 01:49:34 +03:00
|
|
|
|
|
|
|
// FIXME: Shouldn't we be able to perform thisc heck even when the class
|
|
|
|
// type is dependent? Both gcc and edg can handle that.
|
2009-09-14 01:33:06 +04:00
|
|
|
if (!ClassType->isDependentType()) {
|
|
|
|
DeclarationName Name
|
|
|
|
= Context.DeclarationNames.getCXXDestructorName(
|
|
|
|
Context.getCanonicalType(ClassType));
|
|
|
|
if (NewFD->getDeclName() != Name) {
|
|
|
|
Diag(NewFD->getLocation(), diag::err_destructor_name);
|
|
|
|
return NewFD->setInvalidDecl();
|
|
|
|
}
|
|
|
|
}
|
2009-11-16 01:49:34 +03:00
|
|
|
|
2009-09-14 01:33:06 +04:00
|
|
|
Record->setUserDeclaredDestructor(true);
|
|
|
|
// C++ [class]p4: A POD-struct is an aggregate class that has [...] no
|
|
|
|
// user-defined destructor.
|
|
|
|
Record->setPOD(false);
|
|
|
|
|
|
|
|
// C++ [class.dtor]p3: A destructor is trivial if it is an implicitly-
|
|
|
|
// declared destructor.
|
|
|
|
// FIXME: C++0x: don't do this for "= default" destructors
|
|
|
|
Record->setHasTrivialDestructor(false);
|
|
|
|
} else if (CXXConversionDecl *Conversion
|
2009-12-01 20:24:26 +03:00
|
|
|
= dyn_cast<CXXConversionDecl>(NewFD)) {
|
2009-09-14 01:33:06 +04:00
|
|
|
ActOnConversionDeclarator(Conversion);
|
2009-12-01 20:24:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Find any virtual functions that this function overrides.
|
2009-12-01 20:35:23 +03:00
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
|
|
|
|
if (!Method->isFunctionTemplateSpecialization() &&
|
|
|
|
!Method->getDescribedFunctionTemplate())
|
|
|
|
AddOverriddenMethods(Method->getParent(), Method);
|
|
|
|
}
|
2009-09-14 01:33:06 +04:00
|
|
|
|
2009-12-02 10:16:50 +03:00
|
|
|
// Additional checks for the destructor; make sure we do this after we
|
|
|
|
// figure out whether the destructor is virtual.
|
|
|
|
if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(NewFD))
|
|
|
|
if (!Destructor->getParent()->isDependentType())
|
|
|
|
CheckDestructor(Destructor);
|
|
|
|
|
2009-09-14 01:33:06 +04:00
|
|
|
// Extra checking for C++ overloaded operators (C++ [over.oper]).
|
|
|
|
if (NewFD->isOverloadedOperator() &&
|
|
|
|
CheckOverloadedOperatorDeclaration(NewFD))
|
|
|
|
return NewFD->setInvalidDecl();
|
|
|
|
|
|
|
|
// In C++, check default arguments now that we have merged decls. Unless
|
|
|
|
// the lexical context is the class, because in this case this is done
|
|
|
|
// during delayed parsing anyway.
|
|
|
|
if (!CurContext->isRecord())
|
|
|
|
CheckCXXDefaultArguments(NewFD);
|
|
|
|
}
|
2009-01-16 04:13:29 +03:00
|
|
|
}
|
|
|
|
|
2009-07-24 07:03:21 +04:00
|
|
|
void Sema::CheckMain(FunctionDecl* FD) {
|
2009-07-25 08:36:53 +04:00
|
|
|
// C++ [basic.start.main]p3: A program that declares main to be inline
|
|
|
|
// or static is ill-formed.
|
|
|
|
// C99 6.7.4p4: In a hosted environment, the inline function specifier
|
|
|
|
// shall not appear in a declaration of main.
|
|
|
|
// static main is not an error under C99, but we should warn about it.
|
2009-10-28 00:01:01 +03:00
|
|
|
bool isInline = FD->isInlineSpecified();
|
2009-07-25 08:36:53 +04:00
|
|
|
bool isStatic = FD->getStorageClass() == FunctionDecl::Static;
|
|
|
|
if (isInline || isStatic) {
|
|
|
|
unsigned diagID = diag::warn_unusual_main_decl;
|
|
|
|
if (isInline || getLangOptions().CPlusPlus)
|
|
|
|
diagID = diag::err_unusual_main_decl;
|
|
|
|
|
|
|
|
int which = isStatic + (isInline << 1) - 1;
|
|
|
|
Diag(FD->getLocation(), diagID) << which;
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType T = FD->getType();
|
|
|
|
assert(T->isFunctionType() && "function decl is not of function type");
|
2009-09-22 03:43:11 +04:00
|
|
|
const FunctionType* FT = T->getAs<FunctionType>();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-25 08:36:53 +04:00
|
|
|
if (!Context.hasSameUnqualifiedType(FT->getResultType(), Context.IntTy)) {
|
|
|
|
// TODO: add a replacement fixit to turn the return type into 'int'.
|
|
|
|
Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint);
|
|
|
|
FD->setInvalidDecl(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Treat protoless main() as nullary.
|
|
|
|
if (isa<FunctionNoProtoType>(FT)) return;
|
|
|
|
|
|
|
|
const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
|
|
|
|
unsigned nparams = FTP->getNumArgs();
|
|
|
|
assert(FD->getNumParams() == nparams);
|
|
|
|
|
|
|
|
if (nparams > 3) {
|
|
|
|
Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
|
|
|
|
FD->setInvalidDecl(true);
|
|
|
|
nparams = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: a lot of the following diagnostics would be improved
|
|
|
|
// if we had some location information about types.
|
|
|
|
|
|
|
|
QualType CharPP =
|
|
|
|
Context.getPointerType(Context.getPointerType(Context.CharTy));
|
|
|
|
QualType Expected[] = { Context.IntTy, CharPP, CharPP };
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < nparams; ++i) {
|
|
|
|
QualType AT = FTP->getArgType(i);
|
|
|
|
|
|
|
|
bool mismatch = true;
|
|
|
|
|
|
|
|
if (Context.hasSameUnqualifiedType(AT, Expected[i]))
|
|
|
|
mismatch = false;
|
|
|
|
else if (Expected[i] == CharPP) {
|
|
|
|
// As an extension, the following forms are okay:
|
|
|
|
// char const **
|
|
|
|
// char const * const *
|
|
|
|
// char * const *
|
|
|
|
|
2009-09-24 23:53:00 +04:00
|
|
|
QualifierCollector qs;
|
2009-07-25 08:36:53 +04:00
|
|
|
const PointerType* PT;
|
2009-07-30 01:53:49 +04:00
|
|
|
if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
|
|
|
|
(PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
|
2009-07-25 08:36:53 +04:00
|
|
|
(QualType(qs.strip(PT->getPointeeType()), 0) == Context.CharTy)) {
|
|
|
|
qs.removeConst();
|
|
|
|
mismatch = !qs.empty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mismatch) {
|
|
|
|
Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
|
|
|
|
// TODO: suggest replacing given type with expected type
|
|
|
|
FD->setInvalidDecl(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nparams == 1 && !FD->isInvalidDecl()) {
|
|
|
|
Diag(FD->getLocation(), diag::warn_main_one_arg);
|
|
|
|
}
|
2009-07-24 07:03:21 +04:00
|
|
|
}
|
|
|
|
|
2008-05-20 17:48:25 +04:00
|
|
|
bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
|
2009-02-27 07:17:12 +03:00
|
|
|
// FIXME: Need strict checking. In C89, we need to check for
|
|
|
|
// any assignment, increment, decrement, function-calls, or
|
|
|
|
// commas outside of a sizeof. In C99, it's the same list,
|
|
|
|
// except that the aforementioned are allowed in unevaluated
|
|
|
|
// expressions. Everything else falls under the
|
|
|
|
// "may accept other forms of constant expressions" exception.
|
|
|
|
// (We never end up here for C++, so the constant expression
|
|
|
|
// rules there don't matter.)
|
2009-02-25 00:54:33 +03:00
|
|
|
if (Init->isConstantInitializer(Context))
|
2009-02-22 09:45:27 +03:00
|
|
|
return false;
|
2009-02-26 07:47:58 +03:00
|
|
|
Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
|
|
|
|
<< Init->getSourceRange();
|
2008-05-20 17:48:25 +04:00
|
|
|
return true;
|
2008-01-11 01:15:12 +03:00
|
|
|
}
|
|
|
|
|
2009-08-16 09:13:48 +04:00
|
|
|
void Sema::AddInitializerToDecl(DeclPtrTy dcl, ExprArg init) {
|
|
|
|
AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
|
2009-01-14 18:45:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// AddInitializerToDecl - Adds the initializer Init to the
|
|
|
|
/// declaration dcl. If DirectInit is true, this is C++ direct
|
|
|
|
/// initialization rather than copy initialization.
|
2009-03-28 22:18:32 +03:00
|
|
|
void Sema::AddInitializerToDecl(DeclPtrTy dcl, ExprArg init, bool DirectInit) {
|
|
|
|
Decl *RealDecl = dcl.getAs<Decl>();
|
2007-10-20 00:10:30 +04:00
|
|
|
// If there is no declaration, there was an error parsing it. Just ignore
|
|
|
|
// the initializer.
|
2009-02-27 07:17:12 +03:00
|
|
|
if (RealDecl == 0)
|
2007-10-20 00:10:30 +04:00
|
|
|
return;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-12 02:00:04 +03:00
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
|
|
|
|
// With declarators parsed the way they are, the parser cannot
|
|
|
|
// distinguish between a normal initializer and a pure-specifier.
|
|
|
|
// Thus this grotesque test.
|
|
|
|
IntegerLiteral *IL;
|
|
|
|
Expr *Init = static_cast<Expr *>(init.get());
|
|
|
|
if ((IL = dyn_cast<IntegerLiteral>(Init)) && IL->getValue() == 0 &&
|
2009-12-01 20:24:26 +03:00
|
|
|
Context.getCanonicalType(IL->getType()) == Context.IntTy)
|
|
|
|
CheckPureMethod(Method, Init->getSourceRange());
|
|
|
|
else {
|
2009-03-12 02:00:04 +03:00
|
|
|
Diag(Method->getLocation(), diag::err_member_function_initialization)
|
|
|
|
<< Method->getDeclName() << Init->getSourceRange();
|
|
|
|
Method->setInvalidDecl();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-13 00:13:48 +04:00
|
|
|
VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
|
|
|
|
if (!VDecl) {
|
2009-03-12 02:00:04 +03:00
|
|
|
if (getLangOptions().CPlusPlus &&
|
|
|
|
RealDecl->getLexicalDeclContext()->isRecord() &&
|
|
|
|
isa<NamedDecl>(RealDecl))
|
|
|
|
Diag(RealDecl->getLocation(), diag::err_member_initialization)
|
|
|
|
<< cast<NamedDecl>(RealDecl)->getDeclName();
|
|
|
|
else
|
|
|
|
Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
|
2007-09-13 00:13:48 +04:00
|
|
|
RealDecl->setInvalidDecl();
|
|
|
|
return;
|
2009-02-27 07:17:12 +03:00
|
|
|
}
|
|
|
|
|
2009-11-14 06:40:14 +03:00
|
|
|
// A definition must end up with a complete type, which means it must be
|
|
|
|
// complete with the restriction that an array type might be completed by the
|
|
|
|
// initializer; note that later code assumes this restriction.
|
|
|
|
QualType BaseDeclType = VDecl->getType();
|
|
|
|
if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
|
|
|
|
BaseDeclType = Array->getElementType();
|
|
|
|
if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
|
2009-04-14 01:28:54 +04:00
|
|
|
diag::err_typecheck_decl_incomplete_type)) {
|
|
|
|
RealDecl->setInvalidDecl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-03 21:33:45 +03:00
|
|
|
// The variable can not have an abstract class type.
|
|
|
|
if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
|
|
|
|
diag::err_abstract_type_in_decl,
|
|
|
|
AbstractVariableType))
|
|
|
|
VDecl->setInvalidDecl();
|
|
|
|
|
2009-03-11 02:43:53 +03:00
|
|
|
const VarDecl *Def = 0;
|
|
|
|
if (VDecl->getDefinition(Def)) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(VDecl->getLocation(), diag::err_redefinition)
|
2009-03-11 02:43:53 +03:00
|
|
|
<< VDecl->getDeclName();
|
|
|
|
Diag(Def->getLocation(), diag::note_previous_definition);
|
|
|
|
VDecl->setInvalidDecl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-27 07:17:12 +03:00
|
|
|
// Take ownership of the expression, now that we're sure we have somewhere
|
|
|
|
// to put it.
|
2009-05-01 23:30:39 +04:00
|
|
|
Expr *Init = init.takeAs<Expr>();
|
2009-02-27 07:17:12 +03:00
|
|
|
assert(Init && "missing initializer");
|
|
|
|
|
2007-09-12 18:07:44 +04:00
|
|
|
// Get the decls type and save a reference for later, since
|
2008-01-11 01:15:12 +03:00
|
|
|
// CheckInitializerTypes may change it.
|
2007-09-13 00:13:48 +04:00
|
|
|
QualType DclT = VDecl->getType(), SavT = DclT;
|
2008-04-16 02:42:06 +04:00
|
|
|
if (VDecl->isBlockVarDecl()) {
|
2009-04-14 06:25:56 +04:00
|
|
|
if (VDecl->hasExternalStorage()) { // C99 6.7.8p5
|
2007-09-13 00:13:48 +04:00
|
|
|
Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
|
2008-04-16 02:42:06 +04:00
|
|
|
VDecl->setInvalidDecl();
|
|
|
|
} else if (!VDecl->isInvalidDecl()) {
|
2008-11-05 18:29:30 +03:00
|
|
|
if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
|
2009-05-31 00:41:30 +04:00
|
|
|
VDecl->getDeclName(), DirectInit))
|
2008-04-16 02:42:06 +04:00
|
|
|
VDecl->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-22 09:00:02 +04:00
|
|
|
// C++ 3.6.2p2, allow dynamic initialization of static initializers.
|
2009-02-20 04:34:21 +03:00
|
|
|
// Don't check invalid declarations to avoid emitting useless diagnostics.
|
|
|
|
if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
|
2009-04-14 06:25:56 +04:00
|
|
|
if (VDecl->getStorageClass() == VarDecl::Static) // C99 6.7.8p4.
|
2008-08-22 09:00:02 +04:00
|
|
|
CheckForConstantInitializer(Init, DclT);
|
|
|
|
}
|
2007-09-12 18:07:44 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
} else if (VDecl->isStaticDataMember() &&
|
2009-03-12 02:00:04 +03:00
|
|
|
VDecl->getLexicalDeclContext()->isRecord()) {
|
|
|
|
// This is an in-class initialization for a static data member, e.g.,
|
|
|
|
//
|
|
|
|
// struct S {
|
|
|
|
// static const int value = 17;
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Attach the initializer
|
2009-05-26 22:54:04 +04:00
|
|
|
VDecl->setInit(Context, Init);
|
2009-03-12 02:00:04 +03:00
|
|
|
|
|
|
|
// C++ [class.mem]p4:
|
|
|
|
// A member-declarator can contain a constant-initializer only
|
|
|
|
// if it declares a static member (9.4) of const integral or
|
|
|
|
// const enumeration type, see 9.4.2.
|
|
|
|
QualType T = VDecl->getType();
|
2009-09-09 19:08:12 +04:00
|
|
|
if (!T->isDependentType() &&
|
2009-03-12 02:00:04 +03:00
|
|
|
(!Context.getCanonicalType(T).isConstQualified() ||
|
|
|
|
!T->isIntegralType())) {
|
|
|
|
Diag(VDecl->getLocation(), diag::err_member_initialization)
|
|
|
|
<< VDecl->getDeclName() << Init->getSourceRange();
|
|
|
|
VDecl->setInvalidDecl();
|
|
|
|
} else {
|
|
|
|
// C++ [class.static.data]p4:
|
|
|
|
// If a static data member is of const integral or const
|
|
|
|
// enumeration type, its declaration in the class definition
|
|
|
|
// can specify a constant-initializer which shall be an
|
|
|
|
// integral constant expression (5.19).
|
|
|
|
if (!Init->isTypeDependent() &&
|
|
|
|
!Init->getType()->isIntegralType()) {
|
|
|
|
// We have a non-dependent, non-integral or enumeration type.
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(Init->getSourceRange().getBegin(),
|
2009-03-12 02:00:04 +03:00
|
|
|
diag::err_in_class_initializer_non_integral_type)
|
|
|
|
<< Init->getType() << Init->getSourceRange();
|
|
|
|
VDecl->setInvalidDecl();
|
|
|
|
} else if (!Init->isTypeDependent() && !Init->isValueDependent()) {
|
|
|
|
// Check whether the expression is a constant expression.
|
|
|
|
llvm::APSInt Value;
|
|
|
|
SourceLocation Loc;
|
|
|
|
if (!Init->isIntegerConstantExpr(Value, Context, &Loc)) {
|
|
|
|
Diag(Loc, diag::err_in_class_initializer_non_constant)
|
|
|
|
<< Init->getSourceRange();
|
|
|
|
VDecl->setInvalidDecl();
|
2009-03-26 02:32:15 +03:00
|
|
|
} else if (!VDecl->getType()->isDependentType())
|
2009-10-20 12:27:19 +04:00
|
|
|
ImpCastExprToType(Init, VDecl->getType(), CastExpr::CK_IntegralCast);
|
2009-03-12 02:00:04 +03:00
|
|
|
}
|
|
|
|
}
|
2008-04-16 02:42:06 +04:00
|
|
|
} else if (VDecl->isFileVarDecl()) {
|
2009-04-15 19:20:03 +04:00
|
|
|
if (VDecl->getStorageClass() == VarDecl::Extern)
|
2007-09-13 00:13:48 +04:00
|
|
|
Diag(VDecl->getLocation(), diag::warn_extern_init);
|
2008-04-16 02:42:06 +04:00
|
|
|
if (!VDecl->isInvalidDecl())
|
2008-11-05 18:29:30 +03:00
|
|
|
if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
|
2009-01-14 18:45:31 +03:00
|
|
|
VDecl->getDeclName(), DirectInit))
|
2008-04-16 02:42:06 +04:00
|
|
|
VDecl->setInvalidDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-08-22 09:00:02 +04:00
|
|
|
// C++ 3.6.2p2, allow dynamic initialization of static initializers.
|
2009-02-20 04:34:21 +03:00
|
|
|
// Don't check invalid declarations to avoid emitting useless diagnostics.
|
|
|
|
if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
|
2008-08-22 09:00:02 +04:00
|
|
|
// C99 6.7.8p4. All file scoped initializers need to be constant.
|
|
|
|
CheckForConstantInitializer(Init, DclT);
|
|
|
|
}
|
2007-09-12 18:07:44 +04:00
|
|
|
}
|
|
|
|
// If the type changed, it means we had an incomplete type that was
|
2009-09-09 19:08:12 +04:00
|
|
|
// completed by the initializer. For example:
|
2007-09-12 18:07:44 +04:00
|
|
|
// int ary[] = { 1, 3, 5 };
|
|
|
|
// "ary" transitions from a VariableArrayType to a ConstantArrayType.
|
2007-11-29 22:09:19 +03:00
|
|
|
if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
|
2007-09-13 00:13:48 +04:00
|
|
|
VDecl->setType(DclT);
|
2007-11-29 22:09:19 +03:00
|
|
|
Init->setType(DclT);
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
Init = MaybeCreateCXXExprWithTemporaries(Init,
|
2009-08-16 09:13:48 +04:00
|
|
|
/*ShouldDestroyTemporaries=*/true);
|
2007-09-12 18:07:44 +04:00
|
|
|
// Attach the initializer to the decl.
|
2009-05-26 22:54:04 +04:00
|
|
|
VDecl->setInit(Context, Init);
|
2009-04-21 21:11:58 +04:00
|
|
|
|
|
|
|
// If the previous declaration of VDecl was a tentative definition,
|
|
|
|
// remove it from the set of tentative definitions.
|
|
|
|
if (VDecl->getPreviousDeclaration() &&
|
|
|
|
VDecl->getPreviousDeclaration()->isTentativeDefinition(Context)) {
|
2009-09-08 22:19:27 +04:00
|
|
|
bool Deleted = TentativeDefinitions.erase(VDecl->getDeclName());
|
|
|
|
assert(Deleted && "Unrecorded tentative definition?"); Deleted=Deleted;
|
2009-04-21 21:11:58 +04:00
|
|
|
}
|
|
|
|
|
2007-09-12 18:07:44 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
void Sema::ActOnUninitializedDecl(DeclPtrTy dcl,
|
2009-07-11 04:34:39 +04:00
|
|
|
bool TypeContainsUndeducedAuto) {
|
2009-03-28 22:18:32 +03:00
|
|
|
Decl *RealDecl = dcl.getAs<Decl>();
|
2008-10-29 03:13:59 +03:00
|
|
|
|
2008-11-07 16:01:22 +03:00
|
|
|
// If there is no declaration, there was an error parsing it. Just ignore it.
|
|
|
|
if (RealDecl == 0)
|
|
|
|
return;
|
|
|
|
|
2008-10-29 03:13:59 +03:00
|
|
|
if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
|
|
|
|
QualType Type = Var->getType();
|
2009-04-21 21:11:58 +04:00
|
|
|
|
|
|
|
// Record tentative definitions.
|
2009-09-08 22:19:27 +04:00
|
|
|
if (Var->isTentativeDefinition(Context)) {
|
|
|
|
std::pair<llvm::DenseMap<DeclarationName, VarDecl *>::iterator, bool>
|
2009-09-09 19:08:12 +04:00
|
|
|
InsertPair =
|
2009-09-08 22:19:27 +04:00
|
|
|
TentativeDefinitions.insert(std::make_pair(Var->getDeclName(), Var));
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-09-08 22:19:27 +04:00
|
|
|
// Keep the latest definition in the map. If we see 'int i; int i;' we
|
|
|
|
// want the second one in the map.
|
|
|
|
InsertPair.first->second = Var;
|
|
|
|
|
|
|
|
// However, for the list, we don't care about the order, just make sure
|
|
|
|
// that there are no dupes for a given declaration name.
|
|
|
|
if (InsertPair.second)
|
|
|
|
TentativeDefinitionList.push_back(Var->getDeclName());
|
|
|
|
}
|
2009-04-21 21:11:58 +04:00
|
|
|
|
2008-10-29 03:13:59 +03:00
|
|
|
// C++ [dcl.init.ref]p3:
|
|
|
|
// The initializer can be omitted for a reference only in a
|
|
|
|
// parameter declaration (8.3.5), in the declaration of a
|
|
|
|
// function return type, in the declaration of a class member
|
|
|
|
// within its class declaration (9.2), and where the extern
|
|
|
|
// specifier is explicitly used.
|
2009-04-14 06:25:56 +04:00
|
|
|
if (Type->isReferenceType() && !Var->hasExternalStorage()) {
|
2008-11-20 09:06:08 +03:00
|
|
|
Diag(Var->getLocation(), diag::err_reference_var_requires_init)
|
2008-11-24 08:29:24 +03:00
|
|
|
<< Var->getDeclName()
|
|
|
|
<< SourceRange(Var->getLocation(), Var->getLocation());
|
2008-11-03 23:45:27 +03:00
|
|
|
Var->setInvalidDecl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-11 04:34:39 +04:00
|
|
|
// C++0x [dcl.spec.auto]p3
|
|
|
|
if (TypeContainsUndeducedAuto) {
|
|
|
|
Diag(Var->getLocation(), diag::err_auto_var_requires_init)
|
|
|
|
<< Var->getDeclName() << Type;
|
|
|
|
Var->setInvalidDecl();
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-05 22:47:47 +03:00
|
|
|
// An array without size is an incomplete type, and there are no special
|
|
|
|
// rules in C++ to make such a definition acceptable.
|
|
|
|
if (getLangOptions().CPlusPlus && Type->isIncompleteArrayType() &&
|
|
|
|
!Var->hasExternalStorage()) {
|
|
|
|
Diag(Var->getLocation(),
|
|
|
|
diag::err_typecheck_incomplete_array_needs_initializer);
|
|
|
|
Var->setInvalidDecl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-10-08 11:24:58 +04:00
|
|
|
// 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 (Var->isStaticDataMember() &&
|
|
|
|
Var->getInstantiatedFromStaticDataMember() &&
|
|
|
|
Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
|
|
|
|
return;
|
|
|
|
|
2008-11-03 23:45:27 +03:00
|
|
|
// C++ [dcl.init]p9:
|
|
|
|
// If no initializer is specified for an object, and the object
|
|
|
|
// is of (possibly cv-qualified) non-POD class type (or array
|
|
|
|
// thereof), the object shall be default-initialized; if the
|
|
|
|
// object is of const-qualified type, the underlying class type
|
|
|
|
// shall have a user-declared default constructor.
|
2009-09-10 03:58:28 +04:00
|
|
|
//
|
|
|
|
// FIXME: Diagnose the "user-declared default constructor" bit.
|
2008-11-03 23:45:27 +03:00
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
QualType InitType = Type;
|
|
|
|
if (const ArrayType *Array = Context.getAsArrayType(Type))
|
2009-10-28 22:04:36 +03:00
|
|
|
InitType = Context.getBaseElementType(Array);
|
2009-09-12 04:17:51 +04:00
|
|
|
if ((!Var->hasExternalStorage() && !Var->isExternC()) &&
|
2009-05-29 18:25:00 +04:00
|
|
|
InitType->isRecordType() && !InitType->isDependentType()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
if (!RequireCompleteType(Var->getLocation(), InitType,
|
2009-09-10 03:08:42 +04:00
|
|
|
diag::err_invalid_incomplete_type_use)) {
|
|
|
|
ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
|
|
|
|
|
|
|
|
CXXConstructorDecl *Constructor
|
|
|
|
= PerformInitializationByConstructor(InitType,
|
|
|
|
MultiExprArg(*this, 0, 0),
|
2009-03-03 07:44:36 +03:00
|
|
|
Var->getLocation(),
|
2008-11-05 18:29:30 +03:00
|
|
|
SourceRange(Var->getLocation(),
|
|
|
|
Var->getLocation()),
|
2009-03-03 07:44:36 +03:00
|
|
|
Var->getDeclName(),
|
2009-09-10 03:08:42 +04:00
|
|
|
IK_Default,
|
|
|
|
ConstructorArgs);
|
|
|
|
|
2009-09-10 03:58:28 +04:00
|
|
|
// FIXME: Location info for the variable initialization?
|
|
|
|
if (!Constructor)
|
2009-09-10 03:08:42 +04:00
|
|
|
Var->setInvalidDecl();
|
2009-09-10 03:58:28 +04:00
|
|
|
else {
|
|
|
|
// FIXME: Cope with initialization of arrays
|
|
|
|
if (!Constructor->isTrivial() &&
|
2009-10-28 21:41:06 +03:00
|
|
|
InitializeVarWithConstructor(Var, Constructor,
|
2009-09-10 03:58:28 +04:00
|
|
|
move_arg(ConstructorArgs)))
|
|
|
|
Var->setInvalidDecl();
|
|
|
|
|
2009-09-10 03:08:42 +04:00
|
|
|
FinalizeVarWithDestructor(Var, InitType);
|
2009-09-10 03:58:28 +04:00
|
|
|
}
|
2009-10-08 20:41:22 +04:00
|
|
|
} else {
|
|
|
|
Var->setInvalidDecl();
|
2009-06-27 03:49:16 +04:00
|
|
|
}
|
2008-11-03 23:45:27 +03:00
|
|
|
}
|
2009-12-03 21:33:45 +03:00
|
|
|
|
|
|
|
// The variable can not have an abstract class type.
|
|
|
|
if (RequireNonAbstractType(Var->getLocation(), Type,
|
|
|
|
diag::err_abstract_type_in_decl,
|
|
|
|
AbstractVariableType))
|
|
|
|
Var->setInvalidDecl();
|
2008-11-03 23:45:27 +03:00
|
|
|
}
|
2008-10-29 03:13:59 +03:00
|
|
|
|
2008-10-29 16:50:18 +03:00
|
|
|
#if 0
|
|
|
|
// FIXME: Temporarily disabled because we are not properly parsing
|
2009-09-09 19:08:12 +04:00
|
|
|
// linkage specifications on declarations, e.g.,
|
2008-10-29 16:50:18 +03:00
|
|
|
//
|
|
|
|
// extern "C" const CGPoint CGPointerZero;
|
|
|
|
//
|
2008-10-29 03:13:59 +03:00
|
|
|
// C++ [dcl.init]p9:
|
|
|
|
//
|
|
|
|
// If no initializer is specified for an object, and the
|
|
|
|
// object is of (possibly cv-qualified) non-POD class type (or
|
|
|
|
// array thereof), the object shall be default-initialized; if
|
|
|
|
// the object is of const-qualified type, the underlying class
|
|
|
|
// type shall have a user-declared default
|
|
|
|
// constructor. Otherwise, if no initializer is specified for
|
|
|
|
// an object, the object and its subobjects, if any, have an
|
|
|
|
// indeterminate initial value; if the object or any of its
|
|
|
|
// subobjects are of const-qualified type, the program is
|
|
|
|
// ill-formed.
|
|
|
|
//
|
|
|
|
// This isn't technically an error in C, so we don't diagnose it.
|
|
|
|
//
|
|
|
|
// FIXME: Actually perform the POD/user-defined default
|
|
|
|
// constructor check.
|
|
|
|
if (getLangOptions().CPlusPlus &&
|
2008-10-29 16:50:18 +03:00
|
|
|
Context.getCanonicalType(Type).isConstQualified() &&
|
2009-04-14 06:25:56 +04:00
|
|
|
!Var->hasExternalStorage())
|
2008-11-20 09:38:18 +03:00
|
|
|
Diag(Var->getLocation(), diag::err_const_var_requires_init)
|
|
|
|
<< Var->getName()
|
|
|
|
<< SourceRange(Var->getLocation(), Var->getLocation());
|
2008-10-29 16:50:18 +03:00
|
|
|
#endif
|
2008-10-29 03:13:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-29 05:49:24 +04:00
|
|
|
Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
|
|
|
|
DeclPtrTy *Group,
|
2009-03-29 20:50:03 +04:00
|
|
|
unsigned NumDecls) {
|
|
|
|
llvm::SmallVector<Decl*, 8> Decls;
|
2009-05-29 05:49:24 +04:00
|
|
|
|
|
|
|
if (DS.isTypeSpecOwned())
|
|
|
|
Decls.push_back((Decl*)DS.getTypeRep());
|
|
|
|
|
2009-03-29 20:50:03 +04:00
|
|
|
for (unsigned i = 0; i != NumDecls; ++i)
|
|
|
|
if (Decl *D = Group[i].getAs<Decl>())
|
|
|
|
Decls.push_back(D);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-09-12 18:07:44 +04:00
|
|
|
// Perform semantic analysis that depends on having fully processed both
|
|
|
|
// the declarator and initializer.
|
2009-03-29 20:50:03 +04:00
|
|
|
for (unsigned i = 0, e = Decls.size(); i != e; ++i) {
|
|
|
|
VarDecl *IDecl = dyn_cast<VarDecl>(Decls[i]);
|
2007-09-12 18:07:44 +04:00
|
|
|
if (!IDecl)
|
|
|
|
continue;
|
|
|
|
QualType T = IDecl->getType();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-09-12 18:07:44 +04:00
|
|
|
// Block scope. C99 6.7p7: If an identifier for an object is declared with
|
|
|
|
// no linkage (C99 6.2.2p6), the type for the object shall be complete...
|
2009-04-14 06:25:56 +04:00
|
|
|
if (IDecl->isBlockVarDecl() && !IDecl->hasExternalStorage()) {
|
2009-10-17 23:37:06 +04:00
|
|
|
if (T->isDependentType()) {
|
|
|
|
// If T is dependent, we should not require a complete type.
|
|
|
|
// (RequireCompleteType shouldn't be called with dependent types.)
|
|
|
|
// But we still can at least check if we've got an array of unspecified
|
|
|
|
// size without an initializer.
|
|
|
|
if (!IDecl->isInvalidDecl() && T->isIncompleteArrayType() &&
|
|
|
|
!IDecl->getInit()) {
|
|
|
|
Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)
|
|
|
|
<< T;
|
|
|
|
IDecl->setInvalidDecl();
|
|
|
|
}
|
|
|
|
} else if (!IDecl->isInvalidDecl()) {
|
|
|
|
// If T is an incomplete array type with an initializer list that is
|
|
|
|
// dependent on something, its size has not been fixed. We could attempt
|
|
|
|
// to fix the size for such arrays, but we would still have to check
|
|
|
|
// here for initializers containing a C++0x vararg expansion, e.g.
|
|
|
|
// template <typename... Args> void f(Args... args) {
|
|
|
|
// int vals[] = { args };
|
|
|
|
// }
|
2009-11-10 01:08:55 +03:00
|
|
|
const IncompleteArrayType *IAT = Context.getAsIncompleteArrayType(T);
|
2009-10-17 23:37:06 +04:00
|
|
|
Expr *Init = IDecl->getInit();
|
|
|
|
if (IAT && Init &&
|
|
|
|
(Init->isTypeDependent() || Init->isValueDependent())) {
|
|
|
|
// Check that the member type of the array is complete, at least.
|
|
|
|
if (RequireCompleteType(IDecl->getLocation(), IAT->getElementType(),
|
|
|
|
diag::err_typecheck_decl_incomplete_type))
|
|
|
|
IDecl->setInvalidDecl();
|
|
|
|
} else if (RequireCompleteType(IDecl->getLocation(), T,
|
|
|
|
diag::err_typecheck_decl_incomplete_type))
|
|
|
|
IDecl->setInvalidDecl();
|
|
|
|
}
|
2007-09-12 18:07:44 +04:00
|
|
|
}
|
2009-07-20 22:46:59 +04:00
|
|
|
// File scope. C99 6.9.2p2: A declaration of an identifier for an
|
2007-09-12 18:07:44 +04:00
|
|
|
// object that has file scope without an initializer, and without a
|
|
|
|
// storage-class specifier or with the storage-class specifier "static",
|
|
|
|
// constitutes a tentative definition. Note: A tentative definition with
|
|
|
|
// external linkage is valid (C99 6.2.2p5).
|
2009-07-20 22:46:59 +04:00
|
|
|
if (IDecl->isTentativeDefinition(Context) && !IDecl->isInvalidDecl()) {
|
|
|
|
if (const IncompleteArrayType *ArrayT
|
|
|
|
= Context.getAsIncompleteArrayType(T)) {
|
|
|
|
if (RequireCompleteType(IDecl->getLocation(),
|
|
|
|
ArrayT->getElementType(),
|
|
|
|
diag::err_illegal_decl_array_incomplete_type))
|
|
|
|
IDecl->setInvalidDecl();
|
2009-08-05 01:02:39 +04:00
|
|
|
} else if (IDecl->getStorageClass() == VarDecl::Static) {
|
2008-01-18 23:40:52 +03:00
|
|
|
// C99 6.9.2p3: If the declaration of an identifier for an object is
|
2009-07-20 22:46:59 +04:00
|
|
|
// a tentative definition and has internal linkage (C99 6.2.2p3), the
|
2008-01-18 23:40:52 +03:00
|
|
|
// declared type shall not be an incomplete type.
|
2009-07-20 22:46:59 +04:00
|
|
|
// NOTE: code such as the following
|
|
|
|
// static struct s;
|
|
|
|
// struct s { int a; };
|
|
|
|
// is accepted by gcc. Hence here we issue a warning instead of
|
|
|
|
// an error and we do not invalidate the static declaration.
|
|
|
|
// NOTE: to avoid multiple warnings, only check the first declaration.
|
|
|
|
if (IDecl->getPreviousDeclaration() == 0)
|
|
|
|
RequireCompleteType(IDecl->getLocation(), T,
|
|
|
|
diag::ext_typecheck_decl_incomplete_type);
|
2009-03-11 00:58:27 +03:00
|
|
|
}
|
2007-09-12 18:07:44 +04:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-03-29 20:50:03 +04:00
|
|
|
return DeclGroupPtrTy::make(DeclGroupRef::Create(Context,
|
2009-05-21 13:52:38 +04:00
|
|
|
Decls.data(), Decls.size()));
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-08-28 07:03:08 +04:00
|
|
|
|
2009-03-29 20:50:03 +04:00
|
|
|
|
2008-04-08 08:40:51 +04:00
|
|
|
/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
|
|
|
|
/// to introduce parameters into function prototype scope.
|
2009-09-09 19:08:12 +04:00
|
|
|
Sema::DeclPtrTy
|
2008-04-08 08:40:51 +04:00
|
|
|
Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
|
2008-06-26 10:49:43 +04:00
|
|
|
const DeclSpec &DS = D.getDeclSpec();
|
2008-12-16 02:53:10 +03:00
|
|
|
|
2008-04-08 08:40:51 +04:00
|
|
|
// Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
|
2008-09-04 01:54:21 +04:00
|
|
|
VarDecl::StorageClass StorageClass = VarDecl::None;
|
|
|
|
if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
|
|
|
|
StorageClass = VarDecl::Register;
|
|
|
|
} else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
|
2008-04-08 08:40:51 +04:00
|
|
|
Diag(DS.getStorageClassSpecLoc(),
|
|
|
|
diag::err_invalid_storage_class_in_func_decl);
|
2008-06-26 10:49:43 +04:00
|
|
|
D.getMutableDeclSpec().ClearStorageClassSpecs();
|
2008-04-08 08:40:51 +04:00
|
|
|
}
|
2009-04-20 00:27:55 +04:00
|
|
|
|
|
|
|
if (D.getDeclSpec().isThreadSpecified())
|
|
|
|
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
|
|
|
|
|
2009-04-07 23:37:57 +04:00
|
|
|
DiagnoseFunctionSpecifiers(D);
|
|
|
|
|
2008-05-07 08:49:29 +04:00
|
|
|
// Check that there are no default arguments inside the type of this
|
|
|
|
// parameter (C++ only).
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
CheckExtraCXXDefaultArguments(D);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-19 05:27:57 +04:00
|
|
|
DeclaratorInfo *DInfo = 0;
|
When we parse a tag specifier, keep track of whether that tag
specifier resulted in the creation of a new TagDecl node, which
happens either when the tag specifier was a definition or when the tag
specifier was the first declaration of that tag type. This information
has several uses, the first of which is implemented in this commit:
1) In C++, one is not allowed to define tag types within a type
specifier (e.g., static_cast<struct S { int x; } *>(0) is
ill-formed) or within the result or parameter types of a
function. We now diagnose this.
2) We can extend DeclGroups to contain information about any tags
that are declared/defined within the declaration specifiers of a
variable, e.g.,
struct Point { int x, y, z; } p;
This will help improve AST printing and template instantiation,
among other things.
3) For C99, we can keep track of whether a tag type is defined
within the type of a parameter, to properly cope with cases like,
e.g.,
int bar(struct T2 { int x; } y) {
struct T2 z;
}
We can also do similar things wherever there is a type specifier,
e.g., to keep track of where the definition of S occurs in this
legal C99 code:
(struct S { int x, y; } *)0
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72555 91177308-0d34-0410-b5e6-96231b3b80d8
2009-05-29 03:31:59 +04:00
|
|
|
TagDecl *OwnedDecl = 0;
|
2009-10-26 00:45:37 +03:00
|
|
|
QualType parmDeclType = GetTypeForDeclarator(D, S, &DInfo, &OwnedDecl);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
When we parse a tag specifier, keep track of whether that tag
specifier resulted in the creation of a new TagDecl node, which
happens either when the tag specifier was a definition or when the tag
specifier was the first declaration of that tag type. This information
has several uses, the first of which is implemented in this commit:
1) In C++, one is not allowed to define tag types within a type
specifier (e.g., static_cast<struct S { int x; } *>(0) is
ill-formed) or within the result or parameter types of a
function. We now diagnose this.
2) We can extend DeclGroups to contain information about any tags
that are declared/defined within the declaration specifiers of a
variable, e.g.,
struct Point { int x, y, z; } p;
This will help improve AST printing and template instantiation,
among other things.
3) For C99, we can keep track of whether a tag type is defined
within the type of a parameter, to properly cope with cases like,
e.g.,
int bar(struct T2 { int x; } y) {
struct T2 z;
}
We can also do similar things wherever there is a type specifier,
e.g., to keep track of where the definition of S occurs in this
legal C99 code:
(struct S { int x, y; } *)0
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72555 91177308-0d34-0410-b5e6-96231b3b80d8
2009-05-29 03:31:59 +04:00
|
|
|
if (getLangOptions().CPlusPlus && OwnedDecl && OwnedDecl->isDefinition()) {
|
|
|
|
// C++ [dcl.fct]p6:
|
|
|
|
// Types shall not be defined in return or parameter types.
|
|
|
|
Diag(OwnedDecl->getLocation(), diag::err_type_defined_in_param_type)
|
|
|
|
<< Context.getTypeDeclType(OwnedDecl);
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
|
|
|
|
// Can this happen for params? We already checked that they don't conflict
|
|
|
|
// among each other. Here they can only shadow globals, which is ok.
|
2008-04-08 08:40:51 +04:00
|
|
|
IdentifierInfo *II = D.getIdentifier();
|
2009-01-21 05:38:50 +03:00
|
|
|
if (II) {
|
2009-10-10 01:13:30 +04:00
|
|
|
if (NamedDecl *PrevDecl = LookupSingleName(S, II, LookupOrdinaryName)) {
|
2009-01-21 05:38:50 +03:00
|
|
|
if (PrevDecl->isTemplateParameter()) {
|
|
|
|
// Maybe we will complain about the shadowed template parameter.
|
|
|
|
DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
|
|
|
|
// Just pretend that we didn't see the previous declaration.
|
|
|
|
PrevDecl = 0;
|
2009-03-28 22:18:32 +03:00
|
|
|
} else if (S->isDeclScope(DeclPtrTy::make(PrevDecl))) {
|
2009-01-21 05:38:50 +03:00
|
|
|
Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
|
|
|
|
|
|
|
|
// Recover by removing the name
|
|
|
|
II = 0;
|
|
|
|
D.SetIdentifier(0, D.getIdentifierLoc());
|
|
|
|
}
|
2008-04-08 08:40:51 +04:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-08-08 02:44:21 +04:00
|
|
|
|
2009-03-23 22:10:31 +03:00
|
|
|
// Parameters can not be abstract class types.
|
2009-03-24 04:19:16 +03:00
|
|
|
// For record types, this is done by the AbstractClassUsageDiagnoser once
|
2009-09-09 19:08:12 +04:00
|
|
|
// the class has been completely parsed.
|
|
|
|
if (!CurContext->isRecord() &&
|
|
|
|
RequireNonAbstractType(D.getIdentifierLoc(), parmDeclType,
|
2009-03-23 22:10:31 +03:00
|
|
|
diag::err_abstract_type_in_decl,
|
2009-03-24 04:19:16 +03:00
|
|
|
AbstractParamType))
|
2009-03-23 22:10:31 +03:00
|
|
|
D.setInvalidType(true);
|
2009-03-24 02:06:20 +03:00
|
|
|
|
|
|
|
QualType T = adjustParameterType(parmDeclType);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-10-24 01:48:59 +04:00
|
|
|
ParmVarDecl *New
|
|
|
|
= ParmVarDecl::Create(Context, CurContext, D.getIdentifierLoc(), II,
|
|
|
|
T, DInfo, StorageClass, 0);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D.isInvalidType())
|
2007-08-28 22:45:29 +04:00
|
|
|
New->setInvalidDecl();
|
2008-12-11 19:49:14 +03:00
|
|
|
|
2009-02-21 01:59:16 +03:00
|
|
|
// Parameter declarators cannot be interface types. All ObjC objects are
|
|
|
|
// passed by reference.
|
2009-03-24 02:06:20 +03:00
|
|
|
if (T->isObjCInterfaceType()) {
|
2009-04-11 23:08:56 +04:00
|
|
|
Diag(D.getIdentifierLoc(),
|
|
|
|
diag::err_object_cannot_be_passed_returned_by_value) << 1 << T;
|
2009-02-21 01:59:16 +03:00
|
|
|
New->setInvalidDecl();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-11 23:34:56 +04:00
|
|
|
// Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
|
|
|
|
if (D.getCXXScopeSpec().isSet()) {
|
|
|
|
Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
|
|
|
|
<< D.getCXXScopeSpec().getRange();
|
|
|
|
New->setInvalidDecl();
|
|
|
|
}
|
2009-10-01 00:47:43 +04:00
|
|
|
|
|
|
|
// ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
|
|
|
|
// duration shall not be qualified by an address-space qualifier."
|
|
|
|
// Since all parameters have automatic store duration, they can not have
|
|
|
|
// an address space.
|
|
|
|
if (T.getAddressSpace() != 0) {
|
|
|
|
Diag(D.getIdentifierLoc(),
|
|
|
|
diag::err_arg_with_address_space);
|
|
|
|
New->setInvalidDecl();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-11 19:49:14 +03:00
|
|
|
// Add the parameter declaration into this scope.
|
2009-03-28 22:18:32 +03:00
|
|
|
S->AddDecl(DeclPtrTy::make(New));
|
2008-04-12 04:47:19 +04:00
|
|
|
if (II)
|
2008-12-11 19:49:14 +03:00
|
|
|
IdResolver.AddDecl(New);
|
2008-02-18 00:20:31 +03:00
|
|
|
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributes(S, New, D);
|
2009-04-30 04:19:40 +04:00
|
|
|
|
2009-06-30 06:34:44 +04:00
|
|
|
if (New->hasAttr<BlocksAttr>()) {
|
2009-04-30 04:19:40 +04:00
|
|
|
Diag(New->getLocation(), diag::err_block_on_nonlocal);
|
|
|
|
}
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(New);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-11-09 02:49:49 +03:00
|
|
|
|
2009-04-02 03:51:29 +04:00
|
|
|
void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
|
|
|
|
SourceLocation LocAfterDecls) {
|
2007-07-11 21:01:13 +04:00
|
|
|
assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
|
|
|
|
"Not a function declarator!");
|
|
|
|
DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
|
2008-04-08 08:40:51 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
|
|
|
|
// for a K&R function.
|
|
|
|
if (!FTI.hasPrototype) {
|
2009-04-02 07:14:12 +04:00
|
|
|
for (int i = FTI.NumArgs; i != 0; /* decrement in loop */) {
|
|
|
|
--i;
|
2008-04-08 08:40:51 +04:00
|
|
|
if (FTI.ArgInfo[i].Param == 0) {
|
2009-10-19 00:26:27 +04:00
|
|
|
llvm::SmallString<256> Code;
|
|
|
|
llvm::raw_svector_ostream(Code) << " int "
|
2009-10-19 01:17:35 +04:00
|
|
|
<< FTI.ArgInfo[i].Ident->getName()
|
2009-10-19 00:26:27 +04:00
|
|
|
<< ";\n";
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
|
2009-04-02 03:51:29 +04:00
|
|
|
<< FTI.ArgInfo[i].Ident
|
2009-10-19 00:26:27 +04:00
|
|
|
<< CodeModificationHint::CreateInsertion(LocAfterDecls, Code.str());
|
2009-04-02 03:51:29 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Implicitly declare the argument as type 'int' for lack of a better
|
|
|
|
// type.
|
2008-04-08 08:40:51 +04:00
|
|
|
DeclSpec DS;
|
|
|
|
const char* PrevSpec; // unused
|
2009-08-04 00:12:06 +04:00
|
|
|
unsigned DiagID; // unused
|
2009-09-09 19:08:12 +04:00
|
|
|
DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
|
2009-08-04 00:12:06 +04:00
|
|
|
PrevSpec, DiagID);
|
2008-04-08 08:40:51 +04:00
|
|
|
Declarator ParamD(DS, Declarator::KNRTypeListContext);
|
|
|
|
ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
|
2009-01-23 19:23:13 +03:00
|
|
|
FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-01-23 19:23:13 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope,
|
|
|
|
Declarator &D) {
|
2009-01-23 19:23:13 +03:00
|
|
|
assert(getCurFunctionDecl() == 0 && "Function parsing confused");
|
|
|
|
assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
|
|
|
|
"Not a function declarator!");
|
|
|
|
DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
|
|
|
|
|
|
|
|
if (FTI.hasPrototype) {
|
2009-09-09 19:08:12 +04:00
|
|
|
// FIXME: Diagnose arguments without names in C.
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-12-16 02:53:10 +03:00
|
|
|
Scope *ParentScope = FnBodyScope->getParent();
|
2008-01-14 23:51:29 +03:00
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
DeclPtrTy DP = HandleDeclarator(ParentScope, D,
|
2009-06-24 03:11:28 +04:00
|
|
|
MultiTemplateParamsArg(*this),
|
|
|
|
/*IsFunctionDefinition=*/true);
|
2009-03-29 20:50:03 +04:00
|
|
|
return ActOnStartOfFunctionDef(FnBodyScope, DP);
|
2008-07-01 14:37:29 +04:00
|
|
|
}
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclPtrTy D) {
|
2009-10-29 18:46:07 +03:00
|
|
|
// Clear the last template instantiation error context.
|
|
|
|
LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation();
|
|
|
|
|
2009-06-24 04:54:41 +04:00
|
|
|
if (!D)
|
|
|
|
return D;
|
2009-08-22 04:34:47 +04:00
|
|
|
FunctionDecl *FD = 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
if (FunctionTemplateDecl *FunTmpl
|
2009-08-22 04:34:47 +04:00
|
|
|
= dyn_cast<FunctionTemplateDecl>(D.getAs<Decl>()))
|
|
|
|
FD = FunTmpl->getTemplatedDecl();
|
|
|
|
else
|
|
|
|
FD = cast<FunctionDecl>(D.getAs<Decl>());
|
2008-10-29 18:10:40 +03:00
|
|
|
|
2009-04-19 09:21:20 +04:00
|
|
|
CurFunctionNeedsScopeChecking = false;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-10-29 18:10:40 +03:00
|
|
|
// See if this is a redefinition.
|
|
|
|
const FunctionDecl *Definition;
|
2009-06-30 06:35:26 +04:00
|
|
|
if (FD->getBody(Definition)) {
|
2008-11-24 00:45:46 +03:00
|
|
|
Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(Definition->getLocation(), diag::note_previous_definition);
|
2008-10-29 18:10:40 +03:00
|
|
|
}
|
|
|
|
|
2009-02-16 20:45:42 +03:00
|
|
|
// Builtin functions cannot be defined.
|
2009-09-12 04:22:50 +04:00
|
|
|
if (unsigned BuiltinID = FD->getBuiltinID()) {
|
2009-02-17 19:03:01 +03:00
|
|
|
if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
|
2009-02-16 20:45:42 +03:00
|
|
|
Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
|
2009-02-17 19:03:01 +03:00
|
|
|
FD->setInvalidDecl();
|
|
|
|
}
|
2009-02-16 20:45:42 +03:00
|
|
|
}
|
|
|
|
|
2009-03-04 10:30:59 +03:00
|
|
|
// The return type of a function definition must be complete
|
2009-03-24 22:52:54 +03:00
|
|
|
// (C99 6.9.1p3, C++ [dcl.fct]p6).
|
|
|
|
QualType ResultType = FD->getResultType();
|
|
|
|
if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
|
2009-04-29 09:12:23 +04:00
|
|
|
!FD->isInvalidDecl() &&
|
2009-03-24 22:52:54 +03:00
|
|
|
RequireCompleteType(FD->getLocation(), ResultType,
|
|
|
|
diag::err_func_def_incomplete_result))
|
2009-03-04 10:30:59 +03:00
|
|
|
FD->setInvalidDecl();
|
|
|
|
|
2009-03-31 20:35:03 +04:00
|
|
|
// GNU warning -Wmissing-prototypes:
|
|
|
|
// Warn if a global function is defined without a previous
|
|
|
|
// prototype declaration. This warning is issued even if the
|
|
|
|
// definition itself provides a prototype. The aim is to detect
|
|
|
|
// global functions that fail to be declared in header files.
|
2009-04-08 19:21:36 +04:00
|
|
|
if (!FD->isInvalidDecl() && FD->isGlobal() && !isa<CXXMethodDecl>(FD) &&
|
2009-09-12 04:17:51 +04:00
|
|
|
!FD->isMain()) {
|
2009-03-31 20:35:03 +04:00
|
|
|
bool MissingPrototype = true;
|
|
|
|
for (const FunctionDecl *Prev = FD->getPreviousDeclaration();
|
|
|
|
Prev; Prev = Prev->getPreviousDeclaration()) {
|
|
|
|
// Ignore any declarations that occur in function or method
|
|
|
|
// scope, because they aren't visible from the header.
|
|
|
|
if (Prev->getDeclContext()->isFunctionOrMethod())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
MissingPrototype = !Prev->getType()->isFunctionProtoType();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MissingPrototype)
|
|
|
|
Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
|
|
|
|
}
|
|
|
|
|
2009-05-15 21:59:04 +04:00
|
|
|
if (FnBodyScope)
|
|
|
|
PushDeclContext(FnBodyScope, FD);
|
2008-12-26 03:52:02 +03:00
|
|
|
|
2008-04-08 08:40:51 +04:00
|
|
|
// Check the validity of our function parameters
|
|
|
|
CheckParmsForFunctionDef(FD);
|
|
|
|
|
|
|
|
// Introduce our parameters into the function scope
|
|
|
|
for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
|
|
|
|
ParmVarDecl *Param = FD->getParamDecl(p);
|
2009-01-09 21:51:29 +03:00
|
|
|
Param->setOwningFunction(FD);
|
|
|
|
|
2008-04-08 08:40:51 +04:00
|
|
|
// If this has an identifier, add it to the scope stack.
|
2009-05-15 21:59:04 +04:00
|
|
|
if (Param->getIdentifier() && FnBodyScope)
|
2008-04-12 04:47:19 +04:00
|
|
|
PushOnScopeChains(Param, FnBodyScope);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-04-08 08:40:51 +04:00
|
|
|
|
2008-12-26 03:52:02 +03:00
|
|
|
// Checking attributes of current function definition
|
|
|
|
// dllimport attribute.
|
2009-09-09 19:08:12 +04:00
|
|
|
if (FD->getAttr<DLLImportAttr>() &&
|
2009-06-30 06:34:44 +04:00
|
|
|
(!FD->getAttr<DLLExportAttr>())) {
|
2008-12-26 03:52:02 +03:00
|
|
|
// dllimport attribute cannot be applied to definition.
|
2009-06-30 06:34:44 +04:00
|
|
|
if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
|
2008-12-26 03:52:02 +03:00
|
|
|
Diag(FD->getLocation(),
|
|
|
|
diag::err_attribute_can_be_applied_only_to_symbol_declaration)
|
|
|
|
<< "dllimport";
|
|
|
|
FD->setInvalidDecl();
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(FD);
|
2008-12-26 03:52:02 +03:00
|
|
|
} else {
|
|
|
|
// If a symbol previously declared dllimport is later defined, the
|
|
|
|
// attribute is ignored in subsequent references, and a warning is
|
|
|
|
// emitted.
|
|
|
|
Diag(FD->getLocation(),
|
|
|
|
diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
|
|
|
|
<< FD->getNameAsCString() << "dllimport";
|
|
|
|
}
|
|
|
|
}
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(FD);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnFinishFunctionBody(DeclPtrTy D, StmtArg BodyArg) {
|
2009-05-15 21:59:04 +04:00
|
|
|
return ActOnFinishFunctionBody(D, move(BodyArg), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Sema::DeclPtrTy Sema::ActOnFinishFunctionBody(DeclPtrTy D, StmtArg BodyArg,
|
|
|
|
bool IsInstantiation) {
|
2009-03-28 22:18:32 +03:00
|
|
|
Decl *dcl = D.getAs<Decl>();
|
2009-04-27 00:35:05 +04:00
|
|
|
Stmt *Body = BodyArg.takeAs<Stmt>();
|
2009-08-22 04:34:47 +04:00
|
|
|
|
|
|
|
FunctionDecl *FD = 0;
|
|
|
|
FunctionTemplateDecl *FunTmpl = dyn_cast_or_null<FunctionTemplateDecl>(dcl);
|
|
|
|
if (FunTmpl)
|
|
|
|
FD = FunTmpl->getTemplatedDecl();
|
|
|
|
else
|
|
|
|
FD = dyn_cast_or_null<FunctionDecl>(dcl);
|
|
|
|
|
|
|
|
if (FD) {
|
2009-04-18 13:36:27 +04:00
|
|
|
FD->setBody(Body);
|
2009-09-12 04:17:51 +04:00
|
|
|
if (FD->isMain())
|
2009-07-24 06:49:01 +04:00
|
|
|
// C and C++ allow for main to automagically return 0.
|
2009-07-28 05:00:58 +04:00
|
|
|
// Implements C++ [basic.start.main]p5 and C99 5.1.2.2.3.
|
|
|
|
FD->setHasImplicitReturnZero(true);
|
|
|
|
else
|
2009-07-23 03:56:57 +04:00
|
|
|
CheckFallThroughForFunctionDef(FD, Body);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-06-20 03:52:42 +04:00
|
|
|
if (!FD->isInvalidDecl())
|
|
|
|
DiagnoseUnusedParameters(FD->param_begin(), FD->param_end());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-12-02 20:15:43 +03:00
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD)) {
|
|
|
|
// C++ [basic.def.odr]p2:
|
|
|
|
// [...] A virtual member function is used if it is not pure. [...]
|
2009-06-20 03:52:42 +04:00
|
|
|
if (Method->isVirtual() && !Method->isPure())
|
|
|
|
MarkDeclarationReferenced(Method->getLocation(), Method);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-12-02 20:15:43 +03:00
|
|
|
MaybeMarkVirtualImplicitMembersReferenced(Method->getLocation(), Method);
|
|
|
|
}
|
2008-06-28 10:07:14 +04:00
|
|
|
assert(FD == getCurFunctionDecl() && "Function parsing confused");
|
2008-07-25 21:57:26 +04:00
|
|
|
} else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
|
2009-02-16 22:27:54 +03:00
|
|
|
assert(MD == getCurMethodDecl() && "Method parsing confused");
|
2009-04-18 13:36:27 +04:00
|
|
|
MD->setBody(Body);
|
2009-07-24 06:49:01 +04:00
|
|
|
CheckFallThroughForFunctionDef(MD, Body);
|
2009-07-18 04:33:33 +04:00
|
|
|
MD->setEndLoc(Body->getLocEnd());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-06-20 03:52:42 +04:00
|
|
|
if (!MD->isInvalidDecl())
|
|
|
|
DiagnoseUnusedParameters(MD->param_begin(), MD->param_end());
|
2009-02-07 04:47:29 +03:00
|
|
|
} else {
|
|
|
|
Body->Destroy(Context);
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy();
|
2009-02-07 04:47:29 +03:00
|
|
|
}
|
2009-05-15 21:59:04 +04:00
|
|
|
if (!IsInstantiation)
|
|
|
|
PopDeclContext();
|
|
|
|
|
2007-11-10 19:31:34 +03:00
|
|
|
// Verify and clean out per-function state.
|
Start of checking for gotos which jump to an illegal destination.
As far as I know, this catches all cases of jumping into the scope of a
variable with a variably modified type (excluding statement
expressions) in C. This is missing some stuff we probably want to check
(other kinds of variably modified declarations, statement expressions,
indirect gotos/addresses of labels in a scope, ObjC @try/@finally, cleanup
attribute), the diagnostics aren't very good, and it's not particularly
efficient, but it's a decent start.
This patch is a slightly modified version of the patch I attached to
PR3259, and it fixes that bug. I was sort of planning on improving
it, but I think it's okay as-is, especially since it looks like CodeGen
doesn't have any use for this sort of data structure. The only
significant change I can think of from the version I attached to PR3259
is that this version skips running the checking code when a function
doesn't contain any labels.
This patch doesn't cover case statements, which also need similar
checking; I'm not sure how we should deal with that. Extending the goto
checking to also check case statements wouldn't be too hard; it's just a
matter of keeping track of the scope of the closest switch and checking that
the scope of every case is the same as the scope of the switch. That said,
it would likely be a performance hit to run this check on every
function (it's an extra pass over the entire function), so we probably want
some other solution.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65678 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-28 08:41:13 +03:00
|
|
|
|
2009-04-19 00:05:34 +04:00
|
|
|
assert(&getLabelMap() == &FunctionLabelMap && "Didn't pop block right?");
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-11-10 19:31:34 +03:00
|
|
|
// Check goto/label use.
|
2009-03-13 18:38:40 +03:00
|
|
|
for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
|
2009-04-19 00:01:55 +04:00
|
|
|
I = FunctionLabelMap.begin(), E = FunctionLabelMap.end(); I != E; ++I) {
|
2009-04-18 23:30:02 +04:00
|
|
|
LabelStmt *L = I->second;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-11-10 19:31:34 +03:00
|
|
|
// Verify that we have no forward references left. If so, there was a goto
|
|
|
|
// or address of a label taken, but no definition of it. Label fwd
|
|
|
|
// definitions are indicated with a null substmt.
|
2009-04-18 23:30:02 +04:00
|
|
|
if (L->getSubStmt() != 0)
|
|
|
|
continue;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-18 23:30:02 +04:00
|
|
|
// Emit error.
|
|
|
|
Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-18 23:30:02 +04:00
|
|
|
// At this point, we have gotos that use the bogus label. Stitch it into
|
|
|
|
// the function body so that they aren't leaked and that the AST is well
|
|
|
|
// formed.
|
|
|
|
if (Body == 0) {
|
|
|
|
// The whole function wasn't parsed correctly, just delete this.
|
|
|
|
L->Destroy(Context);
|
|
|
|
continue;
|
2007-11-10 19:31:34 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-18 23:30:02 +04:00
|
|
|
// Otherwise, the body is valid: we want to stitch the label decl into the
|
|
|
|
// function somewhere so that it is properly owned and so that the goto
|
|
|
|
// has a valid target. Do this by creating a new compound stmt with the
|
|
|
|
// label in it.
|
2009-04-27 00:35:05 +04:00
|
|
|
|
2009-04-18 23:30:02 +04:00
|
|
|
// Give the label a sub-statement.
|
|
|
|
L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
|
2009-04-27 00:35:05 +04:00
|
|
|
|
|
|
|
CompoundStmt *Compound = isa<CXXTryStmt>(Body) ?
|
|
|
|
cast<CXXTryStmt>(Body)->getTryBlock() :
|
|
|
|
cast<CompoundStmt>(Body);
|
|
|
|
std::vector<Stmt*> Elements(Compound->body_begin(), Compound->body_end());
|
2009-04-18 23:30:02 +04:00
|
|
|
Elements.push_back(L);
|
2009-04-27 00:35:05 +04:00
|
|
|
Compound->setStmts(Context, &Elements[0], Elements.size());
|
2007-11-10 19:31:34 +03:00
|
|
|
}
|
2009-04-19 00:01:55 +04:00
|
|
|
FunctionLabelMap.clear();
|
Start of checking for gotos which jump to an illegal destination.
As far as I know, this catches all cases of jumping into the scope of a
variable with a variably modified type (excluding statement
expressions) in C. This is missing some stuff we probably want to check
(other kinds of variably modified declarations, statement expressions,
indirect gotos/addresses of labels in a scope, ObjC @try/@finally, cleanup
attribute), the diagnostics aren't very good, and it's not particularly
efficient, but it's a decent start.
This patch is a slightly modified version of the patch I attached to
PR3259, and it fixes that bug. I was sort of planning on improving
it, but I think it's okay as-is, especially since it looks like CodeGen
doesn't have any use for this sort of data structure. The only
significant change I can think of from the version I attached to PR3259
is that this version skips running the checking code when a function
doesn't contain any labels.
This patch doesn't cover case statements, which also need similar
checking; I'm not sure how we should deal with that. Extending the goto
checking to also check case statements wouldn't be too hard; it's just a
matter of keeping track of the scope of the closest switch and checking that
the scope of every case is the same as the scope of the switch. That said,
it would likely be a performance hit to run this check on every
function (it's an extra pass over the entire function), so we probably want
some other solution.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65678 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-28 08:41:13 +03:00
|
|
|
|
|
|
|
if (!Body) return D;
|
|
|
|
|
2009-04-19 01:00:42 +04:00
|
|
|
// Verify that that gotos and switch cases don't jump into scopes illegally.
|
2009-04-19 09:21:20 +04:00
|
|
|
if (CurFunctionNeedsScopeChecking)
|
|
|
|
DiagnoseInvalidJumps(Body);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
// C++ constructors that have function-try-blocks can't have return
|
|
|
|
// statements in the handlers of that block. (C++ [except.handle]p14)
|
2009-07-22 02:36:06 +04:00
|
|
|
// Verify this.
|
2009-08-22 04:34:47 +04:00
|
|
|
if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
|
2009-04-28 01:33:24 +04:00
|
|
|
DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-22 02:36:06 +04:00
|
|
|
if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl))
|
2009-11-17 07:44:12 +03:00
|
|
|
MarkBaseAndMemberDestructorsReferenced(Destructor);
|
2009-11-13 22:21:49 +03:00
|
|
|
|
2009-11-15 10:07:58 +03:00
|
|
|
// If any errors have occurred, clear out any temporaries that may have
|
|
|
|
// been leftover. This ensures that these temporaries won't be picked up for
|
|
|
|
// deletion in some later function.
|
|
|
|
if (PP.getDiagnostics().hasErrorOccurred())
|
|
|
|
ExprTemporaries.clear();
|
|
|
|
|
2009-11-13 22:21:49 +03:00
|
|
|
assert(ExprTemporaries.empty() && "Leftover temporaries in function");
|
2007-11-12 02:20:51 +03:00
|
|
|
return D;
|
2007-11-10 19:31:34 +03:00
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
|
|
|
|
/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
|
2009-09-09 19:08:12 +04:00
|
|
|
NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
|
2009-01-20 04:17:11 +03:00
|
|
|
IdentifierInfo &II, Scope *S) {
|
2009-03-02 03:19:53 +03:00
|
|
|
// Before we produce a declaration for an implicitly defined
|
|
|
|
// function, see whether there was a locally-scoped declaration of
|
|
|
|
// this name as a function or variable. If so, use that
|
|
|
|
// (non-visible) declaration, and complain about it.
|
|
|
|
llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
|
|
|
|
= LocallyScopedExternalDecls.find(&II);
|
|
|
|
if (Pos != LocallyScopedExternalDecls.end()) {
|
|
|
|
Diag(Loc, diag::warn_use_out_of_scope_declaration) << Pos->second;
|
|
|
|
Diag(Pos->second->getLocation(), diag::note_previous_declaration);
|
|
|
|
return Pos->second;
|
|
|
|
}
|
|
|
|
|
2008-05-06 01:18:06 +04:00
|
|
|
// Extension in C99. Legal in C90, but warn about it.
|
2009-10-19 01:17:35 +04:00
|
|
|
if (II.getName().startswith("__builtin_"))
|
2009-09-29 01:14:19 +04:00
|
|
|
Diag(Loc, diag::warn_builtin_unknown) << &II;
|
|
|
|
else if (getLangOptions().C99)
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(Loc, diag::ext_implicit_function_decl) << &II;
|
2008-05-06 01:18:06 +04:00
|
|
|
else
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(Loc, diag::warn_implicit_function_decl) << &II;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Set a Declarator for the implicit definition: int foo();
|
|
|
|
const char *Dummy;
|
|
|
|
DeclSpec DS;
|
2009-08-04 00:12:06 +04:00
|
|
|
unsigned DiagID;
|
|
|
|
bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID);
|
2007-07-11 21:01:13 +04:00
|
|
|
Error = Error; // Silence warning.
|
|
|
|
assert(!Error && "Error setting up implicit decl!");
|
|
|
|
Declarator D(DS, Declarator::BlockContext);
|
2009-04-29 21:30:04 +04:00
|
|
|
D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(), 0,
|
2009-05-31 15:47:27 +04:00
|
|
|
0, 0, false, SourceLocation(),
|
2009-08-20 03:14:54 +04:00
|
|
|
false, 0,0,0, Loc, Loc, D),
|
2009-02-09 21:23:29 +03:00
|
|
|
SourceLocation());
|
2007-07-11 21:01:13 +04:00
|
|
|
D.SetIdentifier(&II, Loc);
|
2009-02-09 21:23:29 +03:00
|
|
|
|
2008-05-02 01:04:16 +04:00
|
|
|
// Insert this function into translation-unit scope.
|
|
|
|
|
|
|
|
DeclContext *PrevDC = CurContext;
|
|
|
|
CurContext = Context.getTranslationUnitDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
FunctionDecl *FD =
|
2009-06-24 01:43:56 +04:00
|
|
|
dyn_cast<FunctionDecl>(ActOnDeclarator(TUScope, D).getAs<Decl>());
|
2008-04-04 18:32:09 +04:00
|
|
|
FD->setImplicit();
|
2008-05-02 01:04:16 +04:00
|
|
|
|
|
|
|
CurContext = PrevDC;
|
|
|
|
|
2009-02-14 21:57:46 +03:00
|
|
|
AddKnownFunctionAttributes(FD);
|
|
|
|
|
2008-04-04 18:32:09 +04:00
|
|
|
return FD;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-02-14 21:57:46 +03:00
|
|
|
/// \brief Adds any function attributes that we know a priori based on
|
|
|
|
/// the declaration of this function.
|
|
|
|
///
|
|
|
|
/// These attributes can apply both to implicitly-declared builtins
|
|
|
|
/// (like __builtin___printf_chk) or to library-declared functions
|
|
|
|
/// like NSLog or printf.
|
|
|
|
void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
|
|
|
|
if (FD->isInvalidDecl())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If this is a built-in function, map its builtin attributes to
|
|
|
|
// actual attributes.
|
2009-09-12 04:22:50 +04:00
|
|
|
if (unsigned BuiltinID = FD->getBuiltinID()) {
|
2009-02-14 21:57:46 +03:00
|
|
|
// Handle printf-formatting attributes.
|
|
|
|
unsigned FormatIdx;
|
|
|
|
bool HasVAListArg;
|
|
|
|
if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
|
2009-06-30 06:34:44 +04:00
|
|
|
if (!FD->getAttr<FormatAttr>())
|
|
|
|
FD->addAttr(::new (Context) FormatAttr("printf", FormatIdx + 1,
|
2009-06-10 08:01:38 +04:00
|
|
|
HasVAListArg ? 0 : FormatIdx + 2));
|
2009-02-14 21:57:46 +03:00
|
|
|
}
|
2009-02-17 01:43:43 +03:00
|
|
|
|
|
|
|
// Mark const if we don't care about errno and that is the only
|
|
|
|
// thing preventing the function from being const. This allows
|
|
|
|
// IRgen to use LLVM intrinsics for such functions.
|
|
|
|
if (!getLangOptions().MathErrno &&
|
|
|
|
Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
|
2009-06-30 06:34:44 +04:00
|
|
|
if (!FD->getAttr<ConstAttr>())
|
|
|
|
FD->addAttr(::new (Context) ConstAttr());
|
2009-02-17 01:43:43 +03:00
|
|
|
}
|
2009-07-27 23:14:18 +04:00
|
|
|
|
|
|
|
if (Context.BuiltinInfo.isNoReturn(BuiltinID))
|
|
|
|
FD->addAttr(::new (Context) NoReturnAttr());
|
2009-02-14 21:57:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
IdentifierInfo *Name = FD->getIdentifier();
|
|
|
|
if (!Name)
|
|
|
|
return;
|
2009-09-09 19:08:12 +04:00
|
|
|
if ((!getLangOptions().CPlusPlus &&
|
2009-02-14 21:57:46 +03:00
|
|
|
FD->getDeclContext()->isTranslationUnit()) ||
|
|
|
|
(isa<LinkageSpecDecl>(FD->getDeclContext()) &&
|
2009-09-09 19:08:12 +04:00
|
|
|
cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
|
2009-02-14 21:57:46 +03:00
|
|
|
LinkageSpecDecl::lang_c)) {
|
|
|
|
// Okay: this could be a libc/libm/Objective-C function we know
|
|
|
|
// about.
|
|
|
|
} else
|
|
|
|
return;
|
|
|
|
|
2009-04-23 00:56:09 +04:00
|
|
|
if (Name->isStr("NSLog") || Name->isStr("NSLogv")) {
|
2009-07-28 04:07:08 +04:00
|
|
|
// FIXME: NSLog and NSLogv should be target specific
|
2009-06-30 06:34:44 +04:00
|
|
|
if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
|
2009-02-14 21:57:46 +03:00
|
|
|
// FIXME: We known better than our headers.
|
|
|
|
const_cast<FormatAttr *>(Format)->setType("printf");
|
2009-09-09 19:08:12 +04:00
|
|
|
} else
|
2009-06-30 06:34:44 +04:00
|
|
|
FD->addAttr(::new (Context) FormatAttr("printf", 1,
|
2009-06-10 08:01:38 +04:00
|
|
|
Name->isStr("NSLogv") ? 0 : 2));
|
2009-04-23 00:56:09 +04:00
|
|
|
} else if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
|
2009-07-28 04:07:08 +04:00
|
|
|
// FIXME: asprintf and vasprintf aren't C99 functions. Should they be
|
2009-09-09 19:08:12 +04:00
|
|
|
// target-specific builtins, perhaps?
|
2009-06-30 06:34:44 +04:00
|
|
|
if (!FD->getAttr<FormatAttr>())
|
|
|
|
FD->addAttr(::new (Context) FormatAttr("printf", 2,
|
2009-06-10 08:01:38 +04:00
|
|
|
Name->isStr("vasprintf") ? 0 : 3));
|
2009-07-28 06:25:19 +04:00
|
|
|
}
|
2009-02-14 21:57:46 +03:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2009-10-24 12:00:42 +04:00
|
|
|
TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
|
|
|
|
DeclaratorInfo *DInfo) {
|
2007-07-11 21:01:13 +04:00
|
|
|
assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
|
2007-08-29 00:14:24 +04:00
|
|
|
assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-10-24 12:00:42 +04:00
|
|
|
if (!DInfo) {
|
|
|
|
assert(D.isInvalidType() && "no declarator info for valid type");
|
|
|
|
DInfo = Context.getTrivialDeclaratorInfo(T);
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Scope manipulation handled by caller.
|
2008-04-04 10:12:32 +04:00
|
|
|
TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
|
|
|
|
D.getIdentifierLoc(),
|
2009-09-09 19:08:12 +04:00
|
|
|
D.getIdentifier(),
|
2009-10-24 12:00:42 +04:00
|
|
|
DInfo);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-09-05 10:31:47 +04:00
|
|
|
if (const TagType *TT = T->getAs<TagType>()) {
|
2009-03-10 20:07:44 +03:00
|
|
|
TagDecl *TD = TT->getDecl();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-10 20:07:44 +03:00
|
|
|
// If the TagDecl that the TypedefDecl points to is an anonymous decl
|
|
|
|
// keep track of the TypedefDecl.
|
|
|
|
if (!TD->getIdentifier() && !TD->getTypedefForAnonDecl())
|
|
|
|
TD->setTypedefForAnonDecl(NewTD);
|
|
|
|
}
|
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D.isInvalidType())
|
2007-08-29 00:14:24 +04:00
|
|
|
NewTD->setInvalidDecl();
|
|
|
|
return NewTD;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 20:41:31 +04:00
|
|
|
|
|
|
|
/// \brief Determine whether a tag with a given kind is acceptable
|
|
|
|
/// as a redeclaration of the given tag declaration.
|
|
|
|
///
|
|
|
|
/// \returns true if the new tag kind is acceptable, false otherwise.
|
2009-09-09 19:08:12 +04:00
|
|
|
bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
|
2009-05-14 20:41:31 +04:00
|
|
|
TagDecl::TagKind NewTag,
|
|
|
|
SourceLocation NewTagLoc,
|
|
|
|
const IdentifierInfo &Name) {
|
|
|
|
// C++ [dcl.type.elab]p3:
|
|
|
|
// The class-key or enum keyword present in the
|
|
|
|
// elaborated-type-specifier shall agree in kind with the
|
|
|
|
// declaration to which the name in theelaborated-type-specifier
|
|
|
|
// refers. This rule also applies to the form of
|
|
|
|
// elaborated-type-specifier that declares a class-name or
|
|
|
|
// friend class since it can be construed as referring to the
|
|
|
|
// definition of the class. Thus, in any
|
|
|
|
// elaborated-type-specifier, the enum keyword shall be used to
|
|
|
|
// refer to an enumeration (7.2), the union class-keyshall be
|
|
|
|
// used to refer to a union (clause 9), and either the class or
|
|
|
|
// struct class-key shall be used to refer to a class (clause 9)
|
|
|
|
// declared using the class or struct class-key.
|
|
|
|
TagDecl::TagKind OldTag = Previous->getTagKind();
|
|
|
|
if (OldTag == NewTag)
|
|
|
|
return true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-05-14 20:41:31 +04:00
|
|
|
if ((OldTag == TagDecl::TK_struct || OldTag == TagDecl::TK_class) &&
|
|
|
|
(NewTag == TagDecl::TK_struct || NewTag == TagDecl::TK_class)) {
|
|
|
|
// Warn about the struct/class tag mismatch.
|
|
|
|
bool isTemplate = false;
|
|
|
|
if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
|
|
|
|
isTemplate = Record->getDescribedClassTemplate();
|
|
|
|
|
|
|
|
Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
|
|
|
|
<< (NewTag == TagDecl::TK_class)
|
|
|
|
<< isTemplate << &Name
|
|
|
|
<< CodeModificationHint::CreateReplacement(SourceRange(NewTagLoc),
|
|
|
|
OldTag == TagDecl::TK_class? "class" : "struct");
|
|
|
|
Diag(Previous->getLocation(), diag::note_previous_use);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-15 22:49:24 +04:00
|
|
|
/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
|
2007-07-11 21:01:13 +04:00
|
|
|
/// former case, Name will be non-null. In the later case, Name will be null.
|
2009-07-31 06:45:11 +04:00
|
|
|
/// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
|
2007-07-11 21:01:13 +04:00
|
|
|
/// reference/declaration/definition of a tag.
|
2009-07-31 06:45:11 +04:00
|
|
|
Sema::DeclPtrTy Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
|
2009-03-28 22:18:32 +03:00
|
|
|
SourceLocation KWLoc, const CXXScopeSpec &SS,
|
|
|
|
IdentifierInfo *Name, SourceLocation NameLoc,
|
When we parse a tag specifier, keep track of whether that tag
specifier resulted in the creation of a new TagDecl node, which
happens either when the tag specifier was a definition or when the tag
specifier was the first declaration of that tag type. This information
has several uses, the first of which is implemented in this commit:
1) In C++, one is not allowed to define tag types within a type
specifier (e.g., static_cast<struct S { int x; } *>(0) is
ill-formed) or within the result or parameter types of a
function. We now diagnose this.
2) We can extend DeclGroups to contain information about any tags
that are declared/defined within the declaration specifiers of a
variable, e.g.,
struct Point { int x, y, z; } p;
This will help improve AST printing and template instantiation,
among other things.
3) For C99, we can keep track of whether a tag type is defined
within the type of a parameter, to properly cope with cases like,
e.g.,
int bar(struct T2 { int x; } y) {
struct T2 z;
}
We can also do similar things wherever there is a type specifier,
e.g., to keep track of where the definition of S occurs in this
legal C99 code:
(struct S { int x, y; } *)0
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72555 91177308-0d34-0410-b5e6-96231b3b80d8
2009-05-29 03:31:59 +04:00
|
|
|
AttributeList *Attr, AccessSpecifier AS,
|
2009-07-23 03:48:44 +04:00
|
|
|
MultiTemplateParamsArg TemplateParameterLists,
|
2009-09-11 08:59:25 +04:00
|
|
|
bool &OwnedDecl, bool &IsDependent) {
|
2008-12-15 19:32:14 +03:00
|
|
|
// If this is not a definition, it must have a name.
|
2009-07-31 06:45:11 +04:00
|
|
|
assert((Name != 0 || TUK == TUK_Definition) &&
|
2007-07-11 21:01:13 +04:00
|
|
|
"Nameless record must be a definition!");
|
2009-02-04 22:02:06 +03:00
|
|
|
|
When we parse a tag specifier, keep track of whether that tag
specifier resulted in the creation of a new TagDecl node, which
happens either when the tag specifier was a definition or when the tag
specifier was the first declaration of that tag type. This information
has several uses, the first of which is implemented in this commit:
1) In C++, one is not allowed to define tag types within a type
specifier (e.g., static_cast<struct S { int x; } *>(0) is
ill-formed) or within the result or parameter types of a
function. We now diagnose this.
2) We can extend DeclGroups to contain information about any tags
that are declared/defined within the declaration specifiers of a
variable, e.g.,
struct Point { int x, y, z; } p;
This will help improve AST printing and template instantiation,
among other things.
3) For C99, we can keep track of whether a tag type is defined
within the type of a parameter, to properly cope with cases like,
e.g.,
int bar(struct T2 { int x; } y) {
struct T2 z;
}
We can also do similar things wherever there is a type specifier,
e.g., to keep track of where the definition of S occurs in this
legal C99 code:
(struct S { int x, y; } *)0
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72555 91177308-0d34-0410-b5e6-96231b3b80d8
2009-05-29 03:31:59 +04:00
|
|
|
OwnedDecl = false;
|
2009-09-04 05:14:41 +04:00
|
|
|
TagDecl::TagKind Kind = TagDecl::getTagKindForTypeSpec(TagSpec);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-10-08 02:35:40 +04:00
|
|
|
// FIXME: Check explicit specializations more carefully.
|
|
|
|
bool isExplicitSpecialization = false;
|
2009-07-31 06:45:11 +04:00
|
|
|
if (TUK != TUK_Reference) {
|
2009-07-23 03:48:44 +04:00
|
|
|
if (TemplateParameterList *TemplateParams
|
|
|
|
= MatchTemplateParametersToScopeSpecifier(KWLoc, SS,
|
|
|
|
(TemplateParameterList**)TemplateParameterLists.get(),
|
2009-10-08 02:35:40 +04:00
|
|
|
TemplateParameterLists.size(),
|
|
|
|
isExplicitSpecialization)) {
|
2009-09-26 10:47:28 +04:00
|
|
|
if (TemplateParams->size() > 0) {
|
2009-07-23 03:48:44 +04:00
|
|
|
// This is a declaration or definition of a class template (which may
|
|
|
|
// be a member of another template).
|
|
|
|
OwnedDecl = false;
|
2009-07-31 06:45:11 +04:00
|
|
|
DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
|
2009-07-23 03:48:44 +04:00
|
|
|
SS, Name, NameLoc, Attr,
|
2009-08-25 21:23:04 +04:00
|
|
|
TemplateParams,
|
2009-07-23 03:48:44 +04:00
|
|
|
AS);
|
2009-08-25 21:23:04 +04:00
|
|
|
TemplateParameterLists.release();
|
2009-07-23 03:48:44 +04:00
|
|
|
return Result.get();
|
|
|
|
} else {
|
2009-10-08 19:14:33 +04:00
|
|
|
// The "template<>" header is extraneous.
|
|
|
|
Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
|
|
|
|
<< ElaboratedType::getNameForTagKind(Kind) << Name;
|
|
|
|
isExplicitSpecialization = true;
|
2009-07-23 03:48:44 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2009-10-08 19:14:33 +04:00
|
|
|
|
|
|
|
TemplateParameterLists.release();
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
|
|
|
|
2009-01-13 01:49:06 +03:00
|
|
|
DeclContext *SearchDC = CurContext;
|
2008-11-10 01:53:32 +03:00
|
|
|
DeclContext *DC = CurContext;
|
2009-09-16 02:30:29 +04:00
|
|
|
bool isStdBadAlloc = false;
|
2009-01-17 03:42:38 +03:00
|
|
|
bool Invalid = false;
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
RedeclarationKind Redecl = (TUK != TUK_Reference ? ForRedeclaration
|
|
|
|
: NotForRedeclaration);
|
|
|
|
|
|
|
|
LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
|
2009-10-10 09:48:19 +04:00
|
|
|
|
2008-11-08 20:17:31 +03:00
|
|
|
if (Name && SS.isNotEmpty()) {
|
2008-11-10 01:09:58 +03:00
|
|
|
// We have a nested-name tag ('struct foo::bar').
|
|
|
|
|
|
|
|
// Check for invalid 'foo::'.
|
2008-11-10 01:53:32 +03:00
|
|
|
if (SS.isInvalid()) {
|
2008-11-08 20:17:31 +03:00
|
|
|
Name = 0;
|
|
|
|
goto CreateNewDecl;
|
|
|
|
}
|
|
|
|
|
2009-09-11 08:59:25 +04:00
|
|
|
// If this is a friend or a reference to a class in a dependent
|
|
|
|
// context, don't try to make a decl for it.
|
|
|
|
if (TUK == TUK_Friend || TUK == TUK_Reference) {
|
|
|
|
DC = computeDeclContext(SS, false);
|
|
|
|
if (!DC) {
|
|
|
|
IsDependent = true;
|
|
|
|
return DeclPtrTy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 04:28:11 +04:00
|
|
|
if (RequireCompleteDeclContext(SS))
|
|
|
|
return DeclPtrTy::make((Decl *)0);
|
|
|
|
|
2009-07-22 03:53:31 +04:00
|
|
|
DC = computeDeclContext(SS, true);
|
2009-02-03 03:34:39 +03:00
|
|
|
SearchDC = DC;
|
2008-11-10 01:53:32 +03:00
|
|
|
// Look-up name inside 'foo::'.
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupQualifiedName(Previous, DC);
|
2009-10-10 09:48:19 +04:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.isAmbiguous())
|
2009-10-10 09:48:19 +04:00
|
|
|
return DeclPtrTy();
|
|
|
|
|
2008-11-10 01:09:58 +03:00
|
|
|
// A tag 'foo::bar' must already exist.
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.empty()) {
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
|
2008-11-08 20:17:31 +03:00
|
|
|
Name = 0;
|
2009-05-27 21:30:49 +04:00
|
|
|
Invalid = true;
|
2008-11-08 20:17:31 +03:00
|
|
|
goto CreateNewDecl;
|
|
|
|
}
|
2009-01-21 05:38:50 +03:00
|
|
|
} else if (Name) {
|
2008-11-10 01:09:58 +03:00
|
|
|
// If this is a named struct, check to see if there was a previous forward
|
|
|
|
// declaration or definition.
|
2009-02-03 22:21:40 +03:00
|
|
|
// FIXME: We're looking into outer scopes here, even when we
|
|
|
|
// shouldn't be. Doing so can result in ambiguities that we
|
|
|
|
// shouldn't be diagnosing.
|
2009-11-19 01:49:29 +03:00
|
|
|
LookupName(Previous, S);
|
|
|
|
|
|
|
|
// Note: there used to be some attempt at recovery here.
|
|
|
|
if (Previous.isAmbiguous())
|
|
|
|
return DeclPtrTy();
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
|
2009-07-31 06:45:11 +04:00
|
|
|
if (!getLangOptions().CPlusPlus && TUK != TUK_Reference) {
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
// FIXME: This makes sure that we ignore the contexts associated
|
|
|
|
// with C structs, unions, and enums when looking for a matching
|
|
|
|
// tag declaration or definition. See the similar lookup tweak
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63354 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-30 04:04:22 +03:00
|
|
|
// in Sema::LookupName; is there a better way to deal with this?
|
2009-01-13 01:49:06 +03:00
|
|
|
while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
|
|
|
|
SearchDC = SearchDC->getParent();
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
}
|
2008-11-08 20:17:31 +03:00
|
|
|
}
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.isSingleResult() &&
|
|
|
|
Previous.getFoundDecl()->isTemplateParameter()) {
|
2008-12-05 21:15:24 +03:00
|
|
|
// Maybe we will complain about the shadowed template parameter.
|
2009-11-19 01:49:29 +03:00
|
|
|
DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
|
2008-12-05 21:15:24 +03:00
|
|
|
// Just pretend that we didn't see the previous declaration.
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2008-12-05 21:15:24 +03:00
|
|
|
}
|
|
|
|
|
2009-09-16 02:30:29 +04:00
|
|
|
if (getLangOptions().CPlusPlus && Name && DC && StdNamespace &&
|
|
|
|
DC->Equals(StdNamespace) && Name->isStr("bad_alloc")) {
|
|
|
|
// This is a declaration of or a reference to "std::bad_alloc".
|
|
|
|
isStdBadAlloc = true;
|
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
if (Previous.empty() && StdBadAlloc) {
|
2009-09-16 02:30:29 +04:00
|
|
|
// std::bad_alloc has been implicitly declared (but made invisible to
|
|
|
|
// name lookup). Fill in this implicit declaration as the previous
|
|
|
|
// declaration, so that the declarations get chained appropriately.
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.addDecl(StdBadAlloc);
|
2009-09-16 02:30:29 +04:00
|
|
|
}
|
|
|
|
}
|
2009-11-19 01:49:29 +03:00
|
|
|
|
|
|
|
if (!Previous.empty()) {
|
|
|
|
assert(Previous.isSingleResult());
|
|
|
|
NamedDecl *PrevDecl = Previous.getFoundDecl();
|
2008-04-27 17:50:30 +04:00
|
|
|
if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
|
2008-07-03 07:30:58 +04:00
|
|
|
// If this is a use of a previous tag, or if the tag is already declared
|
|
|
|
// in the same scope (so that the definition/declaration completes or
|
2008-04-27 17:50:30 +04:00
|
|
|
// rementions the tag), reuse the decl.
|
2009-08-06 06:15:43 +04:00
|
|
|
if (TUK == TUK_Reference || TUK == TUK_Friend ||
|
|
|
|
isDeclInScope(PrevDecl, SearchDC, S)) {
|
2008-07-03 07:30:58 +04:00
|
|
|
// Make sure that this wasn't declared as an enum and now used as a
|
|
|
|
// struct or something similar.
|
2009-05-14 20:41:31 +04:00
|
|
|
if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind, KWLoc, *Name)) {
|
2009-09-09 19:08:12 +04:00
|
|
|
bool SafeToContinue
|
2009-04-02 03:51:29 +04:00
|
|
|
= (PrevTagDecl->getTagKind() != TagDecl::TK_enum &&
|
|
|
|
Kind != TagDecl::TK_enum);
|
|
|
|
if (SafeToContinue)
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(KWLoc, diag::err_use_with_wrong_tag)
|
2009-04-02 03:51:29 +04:00
|
|
|
<< Name
|
|
|
|
<< CodeModificationHint::CreateReplacement(SourceRange(KWLoc),
|
|
|
|
PrevTagDecl->getKindName());
|
|
|
|
else
|
|
|
|
Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
|
2009-11-19 01:49:29 +03:00
|
|
|
Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
|
2009-04-02 03:51:29 +04:00
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
if (SafeToContinue)
|
2009-04-02 03:51:29 +04:00
|
|
|
Kind = PrevTagDecl->getTagKind();
|
|
|
|
else {
|
|
|
|
// Recover by making this an anonymous redefinition.
|
|
|
|
Name = 0;
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2009-04-02 03:51:29 +04:00
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Invalid) {
|
2008-12-15 19:32:14 +03:00
|
|
|
// If this is a use, just return the declaration we found.
|
2008-07-03 07:30:58 +04:00
|
|
|
|
2008-12-15 19:32:14 +03:00
|
|
|
// FIXME: In the future, return a variant or some other clue
|
|
|
|
// for the consumer of this Decl to know it doesn't own it.
|
|
|
|
// For our current ASTs this shouldn't be a problem, but will
|
|
|
|
// need to be changed with DeclGroups.
|
2009-10-08 03:34:25 +04:00
|
|
|
if (TUK == TUK_Reference || TUK == TUK_Friend)
|
2009-11-19 01:49:29 +03:00
|
|
|
return DeclPtrTy::make(PrevTagDecl);
|
2009-02-04 22:02:06 +03:00
|
|
|
|
2008-07-03 07:30:58 +04:00
|
|
|
// Diagnose attempts to redefine a tag.
|
2009-07-31 06:45:11 +04:00
|
|
|
if (TUK == TUK_Definition) {
|
2008-12-15 19:32:14 +03:00
|
|
|
if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
|
2009-10-13 00:18:28 +04:00
|
|
|
// If we're defining a specialization and the previous definition
|
|
|
|
// is from an implicit instantiation, don't emit an error
|
|
|
|
// here; we'll catch this in the general case below.
|
|
|
|
if (!isExplicitSpecialization ||
|
|
|
|
!isa<CXXRecordDecl>(Def) ||
|
|
|
|
cast<CXXRecordDecl>(Def)->getTemplateSpecializationKind()
|
|
|
|
== TSK_ExplicitSpecialization) {
|
|
|
|
Diag(NameLoc, diag::err_redefinition) << Name;
|
|
|
|
Diag(Def->getLocation(), diag::note_previous_definition);
|
|
|
|
// If this is a redefinition, recover by making this
|
|
|
|
// struct be anonymous, which will make any later
|
|
|
|
// references get the previous definition.
|
|
|
|
Name = 0;
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2009-10-13 00:18:28 +04:00
|
|
|
Invalid = true;
|
|
|
|
}
|
2009-01-17 03:42:38 +03:00
|
|
|
} else {
|
|
|
|
// If the type is currently being defined, complain
|
|
|
|
// about a nested redefinition.
|
|
|
|
TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
|
|
|
|
if (Tag->isBeingDefined()) {
|
|
|
|
Diag(NameLoc, diag::err_nested_redefinition) << Name;
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(PrevTagDecl->getLocation(),
|
2009-01-17 03:42:38 +03:00
|
|
|
diag::note_previous_definition);
|
|
|
|
Name = 0;
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2009-01-17 03:42:38 +03:00
|
|
|
Invalid = true;
|
|
|
|
}
|
2008-12-15 19:32:14 +03:00
|
|
|
}
|
2009-01-17 03:42:38 +03:00
|
|
|
|
2008-07-03 07:30:58 +04:00
|
|
|
// Okay, this is definition of a previously declared or referenced
|
2008-12-15 19:32:14 +03:00
|
|
|
// tag PrevDecl. We're going to create a new Decl for it.
|
2009-01-17 03:42:38 +03:00
|
|
|
}
|
2008-04-27 17:50:30 +04:00
|
|
|
}
|
2008-12-15 19:32:14 +03:00
|
|
|
// If we get here we have (another) forward declaration or we
|
2009-08-06 06:15:43 +04:00
|
|
|
// have a definition. Just create a new decl.
|
|
|
|
|
2008-12-15 19:32:14 +03:00
|
|
|
} else {
|
|
|
|
// If we get here, this is a definition of a new tag type in a nested
|
2009-09-09 19:08:12 +04:00
|
|
|
// scope, e.g. "struct foo; void bar() { struct foo; }", just create a
|
2008-12-15 19:32:14 +03:00
|
|
|
// new decl/type. We set PrevDecl to NULL so that the entities
|
|
|
|
// have distinct types.
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-12-15 19:32:14 +03:00
|
|
|
// If we get here, we're going to create a new Decl. If PrevDecl
|
|
|
|
// is non-NULL, it's a definition of the tag declared by
|
|
|
|
// PrevDecl. If it's NULL, we have a new definition.
|
2008-04-27 17:50:30 +04:00
|
|
|
} else {
|
2009-01-28 20:15:10 +03:00
|
|
|
// PrevDecl is a namespace, template, or anything else
|
|
|
|
// that lives in the IDNS_Tag identifier namespace.
|
2009-01-13 01:49:06 +03:00
|
|
|
if (isDeclInScope(PrevDecl, SearchDC, S)) {
|
2008-09-03 22:03:35 +04:00
|
|
|
// The tag name clashes with a namespace name, issue an error and
|
|
|
|
// recover by making this tag be anonymous.
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(PrevDecl->getLocation(), diag::note_previous_definition);
|
2008-07-16 11:45:46 +04:00
|
|
|
Name = 0;
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2009-01-17 03:42:38 +03:00
|
|
|
Invalid = true;
|
2008-12-15 19:32:14 +03:00
|
|
|
} else {
|
|
|
|
// The existing declaration isn't relevant to us; we're in a
|
|
|
|
// new scope, so clear out the previous declaration.
|
2009-11-19 01:49:29 +03:00
|
|
|
Previous.clear();
|
2008-07-16 11:45:46 +04:00
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-12-04 03:07:04 +03:00
|
|
|
} else if (TUK == TUK_Reference && SS.isEmpty() && Name) {
|
2009-05-11 23:58:34 +04:00
|
|
|
// C++ [basic.scope.pdecl]p5:
|
2009-09-09 19:08:12 +04:00
|
|
|
// -- for an elaborated-type-specifier of the form
|
2009-01-10 01:42:13 +03:00
|
|
|
//
|
|
|
|
// class-key identifier
|
|
|
|
//
|
|
|
|
// if the elaborated-type-specifier is used in the
|
|
|
|
// decl-specifier-seq or parameter-declaration-clause of a
|
|
|
|
// function defined in namespace scope, the identifier is
|
|
|
|
// declared as a class-name in the namespace that contains
|
|
|
|
// the declaration; otherwise, except as a friend
|
|
|
|
// declaration, the identifier is declared in the smallest
|
|
|
|
// non-class, non-function-prototype scope that contains the
|
|
|
|
// declaration.
|
|
|
|
//
|
|
|
|
// C99 6.7.2.3p8 has a similar (but not identical!) provision for
|
|
|
|
// C structs and unions.
|
2009-03-06 21:34:03 +03:00
|
|
|
//
|
2009-12-04 03:07:04 +03:00
|
|
|
// It is an error in C++ to declare (rather than define) an enum
|
|
|
|
// type, including via an elaborated type specifier. We'll
|
|
|
|
// diagnose that later; for now, declare the enum in the same
|
|
|
|
// scope as we would have picked for any other tag type.
|
|
|
|
//
|
2009-03-06 21:34:03 +03:00
|
|
|
// GNU C also supports this behavior as part of its incomplete
|
|
|
|
// enum types extension, while GNU C++ does not.
|
|
|
|
//
|
2009-01-10 01:42:13 +03:00
|
|
|
// Find the context where we'll be declaring the tag.
|
2009-01-13 01:49:06 +03:00
|
|
|
// FIXME: We would like to maintain the current DeclContext as the
|
2009-09-09 19:08:12 +04:00
|
|
|
// lexical context,
|
2009-02-03 03:34:39 +03:00
|
|
|
while (SearchDC->isRecord())
|
|
|
|
SearchDC = SearchDC->getParent();
|
2009-01-10 01:42:13 +03:00
|
|
|
|
|
|
|
// Find the scope where we'll be declaring the tag.
|
2009-09-09 19:08:12 +04:00
|
|
|
while (S->isClassScope() ||
|
2009-01-10 01:42:13 +03:00
|
|
|
(getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
|
2009-01-12 21:45:55 +03:00
|
|
|
((S->getFlags() & Scope::DeclScope) == 0) ||
|
2009-09-09 19:08:12 +04:00
|
|
|
(S->getEntity() &&
|
2009-01-12 21:45:55 +03:00
|
|
|
((DeclContext *)S->getEntity())->isTransparentContext()))
|
2009-01-10 01:42:13 +03:00
|
|
|
S = S->getParent();
|
2009-08-06 06:15:43 +04:00
|
|
|
|
|
|
|
} else if (TUK == TUK_Friend && SS.isEmpty() && Name) {
|
|
|
|
// C++ [namespace.memdef]p3:
|
|
|
|
// If a friend declaration in a non-local class first declares a
|
|
|
|
// class or function, the friend class or function is a member of
|
|
|
|
// the innermost enclosing namespace.
|
2009-08-11 10:59:38 +04:00
|
|
|
while (!SearchDC->isFileContext())
|
2009-08-06 06:15:43 +04:00
|
|
|
SearchDC = SearchDC->getParent();
|
|
|
|
|
|
|
|
// The entity of a decl scope is a DeclContext; see PushDeclContext.
|
|
|
|
while (S->getEntity() != SearchDC)
|
|
|
|
S = S->getParent();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-11-08 20:17:31 +03:00
|
|
|
|
2008-12-17 10:13:27 +03:00
|
|
|
CreateNewDecl:
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-19 01:49:29 +03:00
|
|
|
TagDecl *PrevDecl = 0;
|
|
|
|
if (Previous.isSingleResult())
|
|
|
|
PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// If there is an identifier, use the location of the identifier as the
|
|
|
|
// location of the decl, otherwise use the location of the struct/union
|
|
|
|
// keyword.
|
|
|
|
SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-12-15 19:32:14 +03:00
|
|
|
// Otherwise, create a new declaration. If there is a previous
|
|
|
|
// declaration of the same entity, the two will be linked via
|
|
|
|
// PrevDecl.
|
2007-07-11 21:01:13 +04:00
|
|
|
TagDecl *New;
|
2009-01-07 03:43:41 +03:00
|
|
|
|
2008-06-10 03:19:58 +04:00
|
|
|
if (Kind == TagDecl::TK_enum) {
|
2007-07-11 21:01:13 +04:00
|
|
|
// FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
|
|
|
|
// enum X { A, B, C } D; D should chain to X.
|
2009-07-21 18:46:17 +04:00
|
|
|
New = EnumDecl::Create(Context, SearchDC, Loc, Name, KWLoc,
|
2008-12-15 19:32:14 +03:00
|
|
|
cast_or_null<EnumDecl>(PrevDecl));
|
2007-07-11 21:01:13 +04:00
|
|
|
// If this is an undefined enum, warn.
|
2009-07-31 06:45:11 +04:00
|
|
|
if (TUK != TUK_Definition && !Invalid) {
|
2009-03-06 21:34:03 +03:00
|
|
|
unsigned DK = getLangOptions().CPlusPlus? diag::err_forward_ref_enum
|
|
|
|
: diag::ext_forward_ref_enum;
|
|
|
|
Diag(Loc, DK);
|
|
|
|
}
|
2008-06-10 03:19:58 +04:00
|
|
|
} else {
|
|
|
|
// struct/union/class
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
|
|
|
|
// struct X { int A; } D; D should chain to X.
|
2009-09-16 02:30:29 +04:00
|
|
|
if (getLangOptions().CPlusPlus) {
|
2008-09-05 21:39:33 +04:00
|
|
|
// FIXME: Look for a way to use RecordDecl for simple structs.
|
2009-07-21 18:46:17 +04:00
|
|
|
New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name, KWLoc,
|
2008-12-15 19:32:14 +03:00
|
|
|
cast_or_null<CXXRecordDecl>(PrevDecl));
|
2009-09-16 02:30:29 +04:00
|
|
|
|
|
|
|
if (isStdBadAlloc && (!StdBadAlloc || StdBadAlloc->isImplicit()))
|
|
|
|
StdBadAlloc = cast<CXXRecordDecl>(New);
|
|
|
|
} else
|
2009-07-21 18:46:17 +04:00
|
|
|
New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name, KWLoc,
|
2008-12-15 19:32:14 +03:00
|
|
|
cast_or_null<RecordDecl>(PrevDecl));
|
2008-07-01 14:37:29 +04:00
|
|
|
}
|
2008-12-15 19:32:14 +03:00
|
|
|
|
|
|
|
if (Kind != TagDecl::TK_enum) {
|
|
|
|
// Handle #pragma pack: if the #pragma pack stack has non-default
|
|
|
|
// alignment, make up a packed attribute for this decl. These
|
|
|
|
// attributes are checked when the ASTContext lays out the
|
|
|
|
// structure.
|
|
|
|
//
|
|
|
|
// It is important for implementing the correct semantics that this
|
|
|
|
// happen here (in act on tag decl). The #pragma pack stack is
|
|
|
|
// maintained as a result of parser callbacks which can occur at
|
|
|
|
// many points during the parsing of a struct declaration (because
|
|
|
|
// the #pragma tokens are effectively skipped over during the
|
|
|
|
// parsing of the struct).
|
2009-02-17 04:09:29 +03:00
|
|
|
if (unsigned Alignment = getPragmaPackAlignment())
|
2009-08-08 22:23:56 +04:00
|
|
|
New->addAttr(::new (Context) PragmaPackAttr(Alignment * 8));
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2008-12-15 19:32:14 +03:00
|
|
|
|
2009-01-28 20:15:10 +03:00
|
|
|
if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
|
|
|
|
// C++ [dcl.typedef]p3:
|
|
|
|
// [...] Similarly, in a given scope, a class or enumeration
|
|
|
|
// shall not be declared with the same name as a typedef-name
|
|
|
|
// that is declared in that scope and refers to a type other
|
|
|
|
// than the class or enumeration itself.
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupResult Lookup(*this, Name, NameLoc, LookupOrdinaryName,
|
2009-11-18 10:57:50 +03:00
|
|
|
ForRedeclaration);
|
2009-11-17 05:14:36 +03:00
|
|
|
LookupName(Lookup, S);
|
2009-12-02 11:25:40 +03:00
|
|
|
TypedefDecl *PrevTypedef = Lookup.getAsSingle<TypedefDecl>();
|
2009-09-28 04:47:05 +04:00
|
|
|
NamedDecl *PrevTypedefNamed = PrevTypedef;
|
|
|
|
if (PrevTypedef && isDeclInScope(PrevTypedefNamed, SearchDC, S) &&
|
2009-01-28 20:15:10 +03:00
|
|
|
Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
|
|
|
|
Context.getCanonicalType(Context.getTypeDeclType(New))) {
|
|
|
|
Diag(Loc, diag::err_tag_definition_of_typedef)
|
|
|
|
<< Context.getTypeDeclType(New)
|
|
|
|
<< PrevTypedef->getUnderlyingType();
|
|
|
|
Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
|
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-08 19:14:33 +04:00
|
|
|
// If this is a specialization of a member class (of a class template),
|
|
|
|
// check the specialization.
|
2009-11-19 01:49:29 +03:00
|
|
|
if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous))
|
2009-10-08 19:14:33 +04:00
|
|
|
Invalid = true;
|
|
|
|
|
2009-01-17 03:42:38 +03:00
|
|
|
if (Invalid)
|
|
|
|
New->setInvalidDecl();
|
|
|
|
|
2008-06-29 03:58:55 +04:00
|
|
|
if (Attr)
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributeList(S, New, Attr);
|
2008-11-10 02:41:00 +03:00
|
|
|
|
2009-01-17 03:42:38 +03:00
|
|
|
// If we're declaring or defining a tag in function prototype scope
|
|
|
|
// in C, note that this type can only be used within the function.
|
2009-01-10 01:42:13 +03:00
|
|
|
if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
|
|
|
|
Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
|
|
|
|
|
2008-11-10 02:41:00 +03:00
|
|
|
// Set the lexical context. If the tag has a C++ scope specifier, the
|
|
|
|
// lexical context will be different from the semantic context.
|
2009-02-03 03:34:39 +03:00
|
|
|
New->setLexicalDeclContext(CurContext);
|
2009-01-17 03:42:38 +03:00
|
|
|
|
2009-08-28 11:59:38 +04:00
|
|
|
// Mark this as a friend decl if applicable.
|
|
|
|
if (TUK == TUK_Friend)
|
2009-11-19 01:49:29 +03:00
|
|
|
New->setObjectOfFriendDecl(/* PreviouslyDeclared = */ !Previous.empty());
|
2009-08-28 11:59:38 +04:00
|
|
|
|
2009-03-26 04:19:02 +03:00
|
|
|
// Set the access specifier.
|
2009-08-27 22:44:04 +04:00
|
|
|
if (!Invalid && TUK != TUK_Friend)
|
2009-05-27 21:30:49 +04:00
|
|
|
SetMemberAccessSpecifier(New, PrevDecl, AS);
|
2009-03-26 01:00:53 +03:00
|
|
|
|
2009-07-31 06:45:11 +04:00
|
|
|
if (TUK == TUK_Definition)
|
2009-01-17 03:42:38 +03:00
|
|
|
New->startDefinition();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
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).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55839 91177308-0d34-0410-b5e6-96231b3b80d8
2008-09-05 21:16:31 +04:00
|
|
|
// If this has an identifier, add it to the scope stack.
|
2009-09-02 04:55:30 +04:00
|
|
|
if (TUK == TUK_Friend) {
|
2009-09-02 23:32:14 +04:00
|
|
|
// We might be replacing an existing declaration in the lookup tables;
|
|
|
|
// if so, borrow its access specifier.
|
|
|
|
if (PrevDecl)
|
|
|
|
New->setAccess(PrevDecl->getAccess());
|
|
|
|
|
2009-09-02 04:55:30 +04:00
|
|
|
// Friend tag decls are visible in fairly strange ways.
|
|
|
|
if (!CurContext->isDependentContext()) {
|
|
|
|
DeclContext *DC = New->getDeclContext()->getLookupContext();
|
|
|
|
DC->makeDeclVisibleInContext(New, /* Recoverable = */ false);
|
|
|
|
if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
|
|
|
|
PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
|
|
|
|
}
|
|
|
|
} else if (Name) {
|
2009-01-12 21:45:55 +03:00
|
|
|
S = getNonFieldDeclScope(S);
|
2009-02-03 03:34:39 +03:00
|
|
|
PushOnScopeChains(New, S);
|
2009-01-13 01:49:06 +03:00
|
|
|
} else {
|
2009-06-30 06:36:12 +04:00
|
|
|
CurContext->addDecl(New);
|
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).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55839 91177308-0d34-0410-b5e6-96231b3b80d8
2008-09-05 21:16:31 +04:00
|
|
|
}
|
2008-10-16 06:34:03 +04:00
|
|
|
|
2009-07-07 20:35:42 +04:00
|
|
|
// If this is the C FILE type, notify the AST context.
|
|
|
|
if (IdentifierInfo *II = New->getIdentifier())
|
|
|
|
if (!New->isInvalidDecl() &&
|
2009-07-28 06:25:19 +04:00
|
|
|
New->getDeclContext()->getLookupContext()->isTranslationUnit() &&
|
2009-07-07 20:35:42 +04:00
|
|
|
II->isStr("FILE"))
|
|
|
|
Context.setFILEDecl(New);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
When we parse a tag specifier, keep track of whether that tag
specifier resulted in the creation of a new TagDecl node, which
happens either when the tag specifier was a definition or when the tag
specifier was the first declaration of that tag type. This information
has several uses, the first of which is implemented in this commit:
1) In C++, one is not allowed to define tag types within a type
specifier (e.g., static_cast<struct S { int x; } *>(0) is
ill-formed) or within the result or parameter types of a
function. We now diagnose this.
2) We can extend DeclGroups to contain information about any tags
that are declared/defined within the declaration specifiers of a
variable, e.g.,
struct Point { int x, y, z; } p;
This will help improve AST printing and template instantiation,
among other things.
3) For C99, we can keep track of whether a tag type is defined
within the type of a parameter, to properly cope with cases like,
e.g.,
int bar(struct T2 { int x; } y) {
struct T2 z;
}
We can also do similar things wherever there is a type specifier,
e.g., to keep track of where the definition of S occurs in this
legal C99 code:
(struct S { int x, y; } *)0
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72555 91177308-0d34-0410-b5e6-96231b3b80d8
2009-05-29 03:31:59 +04:00
|
|
|
OwnedDecl = true;
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(New);
|
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).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55839 91177308-0d34-0410-b5e6-96231b3b80d8
2008-09-05 21:16:31 +04:00
|
|
|
}
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
void Sema::ActOnTagStartDefinition(Scope *S, DeclPtrTy TagD) {
|
2009-02-04 22:02:06 +03:00
|
|
|
AdjustDeclIfTemplate(TagD);
|
2009-03-28 22:18:32 +03:00
|
|
|
TagDecl *Tag = cast<TagDecl>(TagD.getAs<Decl>());
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
|
|
|
|
// Enter the tag context.
|
|
|
|
PushDeclContext(S, Tag);
|
|
|
|
|
|
|
|
if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
|
|
|
|
FieldCollector->StartClass();
|
|
|
|
|
|
|
|
if (Record->getIdentifier()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
// C++ [class]p2:
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
// [...] The class-name is also inserted into the scope of the
|
|
|
|
// class itself; this is known as the injected-class-name. For
|
|
|
|
// purposes of access checking, the injected-class-name is treated
|
|
|
|
// as if it were a public member name.
|
2009-03-26 00:17:03 +03:00
|
|
|
CXXRecordDecl *InjectedClassName
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
= CXXRecordDecl::Create(Context, Record->getTagKind(),
|
|
|
|
CurContext, Record->getLocation(),
|
2009-07-21 18:46:17 +04:00
|
|
|
Record->getIdentifier(),
|
|
|
|
Record->getTagKeywordLoc(),
|
|
|
|
Record);
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
InjectedClassName->setImplicit();
|
2009-03-26 00:17:03 +03:00
|
|
|
InjectedClassName->setAccess(AS_public);
|
2009-03-26 03:10:35 +03:00
|
|
|
if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
|
|
|
|
InjectedClassName->setDescribedClassTemplate(Template);
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
PushOnScopeChains(InjectedClassName, S);
|
2009-09-09 19:08:12 +04:00
|
|
|
assert(InjectedClassName->isInjectedClassName() &&
|
2009-03-25 18:59:44 +03:00
|
|
|
"Broken injected-class-name");
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-14 07:17:52 +04:00
|
|
|
void Sema::ActOnTagFinishDefinition(Scope *S, DeclPtrTy TagD,
|
|
|
|
SourceLocation RBraceLoc) {
|
2009-02-04 22:02:06 +03:00
|
|
|
AdjustDeclIfTemplate(TagD);
|
2009-03-28 22:18:32 +03:00
|
|
|
TagDecl *Tag = cast<TagDecl>(TagD.getAs<Decl>());
|
2009-07-14 07:17:52 +04:00
|
|
|
Tag->setRBraceLoc(RBraceLoc);
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
|
|
|
|
if (isa<CXXRecordDecl>(Tag))
|
|
|
|
FieldCollector->FinishClass();
|
|
|
|
|
|
|
|
// Exit this scope of this tag's definition.
|
|
|
|
PopDeclContext();
|
|
|
|
|
|
|
|
// Notify the consumer that we've defined a tag.
|
|
|
|
Consumer.HandleTagDeclDefinition(Tag);
|
|
|
|
}
|
2008-06-21 23:39:06 +04:00
|
|
|
|
2009-04-20 21:29:38 +04:00
|
|
|
// Note that FieldName may be null for anonymous bitfields.
|
2009-09-09 19:08:12 +04:00
|
|
|
bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
|
2009-08-16 01:55:26 +04:00
|
|
|
QualType FieldTy, const Expr *BitWidth,
|
|
|
|
bool *ZeroWidth) {
|
|
|
|
// Default to true; that shouldn't confuse checks for emptiness
|
|
|
|
if (ZeroWidth)
|
|
|
|
*ZeroWidth = true;
|
|
|
|
|
2009-03-06 01:45:59 +03:00
|
|
|
// C99 6.7.2.1p4 - verify the field type.
|
2009-03-06 02:01:03 +03:00
|
|
|
// C++ 9.6p3: A bit-field shall have integral or enumeration type.
|
2009-03-11 21:59:21 +03:00
|
|
|
if (!FieldTy->isDependentType() && !FieldTy->isIntegralType()) {
|
2009-03-06 01:45:59 +03:00
|
|
|
// Handle incomplete types with specific error.
|
2009-03-11 00:58:27 +03:00
|
|
|
if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
|
|
|
|
return true;
|
2009-04-20 21:29:38 +04:00
|
|
|
if (FieldName)
|
|
|
|
return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
|
|
|
|
<< FieldName << FieldTy << BitWidth->getSourceRange();
|
|
|
|
return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
|
|
|
|
<< FieldTy << BitWidth->getSourceRange();
|
2009-03-06 01:45:59 +03:00
|
|
|
}
|
2009-03-11 21:59:21 +03:00
|
|
|
|
|
|
|
// If the bit-width is type- or value-dependent, don't try to check
|
|
|
|
// it now.
|
|
|
|
if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
|
|
|
|
return false;
|
|
|
|
|
2008-12-06 23:33:04 +03:00
|
|
|
llvm::APSInt Value;
|
|
|
|
if (VerifyIntegerConstantExpression(BitWidth, &Value))
|
|
|
|
return true;
|
|
|
|
|
2009-08-16 01:55:26 +04:00
|
|
|
if (Value != 0 && ZeroWidth)
|
|
|
|
*ZeroWidth = false;
|
|
|
|
|
2008-12-12 07:56:04 +03:00
|
|
|
// Zero-width bitfield is ok for anonymous field.
|
|
|
|
if (Value == 0 && FieldName)
|
|
|
|
return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-20 21:29:38 +04:00
|
|
|
if (Value.isSigned() && Value.isNegative()) {
|
|
|
|
if (FieldName)
|
2009-09-09 19:08:12 +04:00
|
|
|
return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
|
2009-04-20 21:29:38 +04:00
|
|
|
<< FieldName << Value.toString(10);
|
|
|
|
return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
|
|
|
|
<< Value.toString(10);
|
|
|
|
}
|
2008-12-06 23:33:04 +03:00
|
|
|
|
2009-03-11 21:59:21 +03:00
|
|
|
if (!FieldTy->isDependentType()) {
|
|
|
|
uint64_t TypeSize = Context.getTypeSize(FieldTy);
|
2009-04-20 21:29:38 +04:00
|
|
|
if (Value.getZExtValue() > TypeSize) {
|
|
|
|
if (FieldName)
|
|
|
|
return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
|
|
|
|
<< FieldName << (unsigned)TypeSize;
|
|
|
|
return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_size)
|
|
|
|
<< (unsigned)TypeSize;
|
|
|
|
}
|
2009-03-11 21:59:21 +03:00
|
|
|
}
|
2008-12-06 23:33:04 +03:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-15 22:49:24 +04:00
|
|
|
/// ActOnField - Each field of a struct/union/class is passed into this in order
|
2007-07-11 21:01:13 +04:00
|
|
|
/// to create a FieldDecl object for it.
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnField(Scope *S, DeclPtrTy TagD,
|
2009-09-09 19:08:12 +04:00
|
|
|
SourceLocation DeclStart,
|
2009-03-28 22:18:32 +03:00
|
|
|
Declarator &D, ExprTy *BitfieldWidth) {
|
|
|
|
FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD.getAs<Decl>()),
|
|
|
|
DeclStart, D, static_cast<Expr*>(BitfieldWidth),
|
|
|
|
AS_public);
|
|
|
|
return DeclPtrTy::make(Res);
|
2009-03-06 01:45:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// HandleField - Analyze a field of a C struct or a C++ data member.
|
|
|
|
///
|
|
|
|
FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
|
|
|
|
SourceLocation DeclStart,
|
2009-03-11 23:50:30 +03:00
|
|
|
Declarator &D, Expr *BitWidth,
|
|
|
|
AccessSpecifier AS) {
|
2007-07-11 21:01:13 +04:00
|
|
|
IdentifierInfo *II = D.getIdentifier();
|
|
|
|
SourceLocation Loc = DeclStart;
|
|
|
|
if (II) Loc = D.getIdentifierLoc();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-19 05:27:57 +04:00
|
|
|
DeclaratorInfo *DInfo = 0;
|
|
|
|
QualType T = GetTypeForDeclarator(D, S, &DInfo);
|
2009-04-13 02:15:02 +04:00
|
|
|
if (getLangOptions().CPlusPlus)
|
2009-03-11 21:59:21 +03:00
|
|
|
CheckExtraCXXDefaultArguments(D);
|
2009-03-12 02:00:04 +03:00
|
|
|
|
2009-04-07 23:37:57 +04:00
|
|
|
DiagnoseFunctionSpecifiers(D);
|
|
|
|
|
2009-04-20 00:27:55 +04:00
|
|
|
if (D.getDeclSpec().isThreadSpecified())
|
|
|
|
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
|
|
|
|
|
2009-11-17 05:14:36 +03:00
|
|
|
NamedDecl *PrevDecl = LookupSingleName(S, II, LookupMemberName,
|
2009-11-18 10:57:50 +03:00
|
|
|
ForRedeclaration);
|
2009-06-18 03:37:01 +04:00
|
|
|
|
|
|
|
if (PrevDecl && PrevDecl->isTemplateParameter()) {
|
|
|
|
// Maybe we will complain about the shadowed template parameter.
|
|
|
|
DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
|
|
|
|
// Just pretend that we didn't see the previous declaration.
|
|
|
|
PrevDecl = 0;
|
|
|
|
}
|
|
|
|
|
2009-03-11 21:59:21 +03:00
|
|
|
if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
|
|
|
|
PrevDecl = 0;
|
|
|
|
|
2009-07-14 18:58:18 +04:00
|
|
|
bool Mutable
|
|
|
|
= (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
|
|
|
|
SourceLocation TSSL = D.getSourceRange().getBegin();
|
|
|
|
FieldDecl *NewFD
|
2009-08-19 05:27:57 +04:00
|
|
|
= CheckFieldDecl(II, T, DInfo, Record, Loc, Mutable, BitWidth, TSSL,
|
2009-07-14 18:58:18 +04:00
|
|
|
AS, PrevDecl, &D);
|
2009-03-11 21:59:21 +03:00
|
|
|
if (NewFD->isInvalidDecl() && PrevDecl) {
|
|
|
|
// Don't introduce NewFD into scope; there's already something
|
|
|
|
// with the same name in the same scope.
|
|
|
|
} else if (II) {
|
|
|
|
PushOnScopeChains(NewFD, S);
|
|
|
|
} else
|
2009-06-30 06:36:12 +04:00
|
|
|
Record->addDecl(NewFD);
|
2009-03-11 21:59:21 +03:00
|
|
|
|
|
|
|
return NewFD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Build a new FieldDecl and check its well-formedness.
|
|
|
|
///
|
|
|
|
/// This routine builds a new FieldDecl given the fields name, type,
|
|
|
|
/// record, etc. \p PrevDecl should refer to any previous declaration
|
|
|
|
/// with the same name and in the same scope as the field to be
|
|
|
|
/// created.
|
|
|
|
///
|
|
|
|
/// \returns a new FieldDecl.
|
|
|
|
///
|
2009-09-09 19:08:12 +04:00
|
|
|
/// \todo The Declarator argument is a hack. It will be removed once
|
2009-08-19 05:27:57 +04:00
|
|
|
FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
|
2009-09-09 19:08:12 +04:00
|
|
|
DeclaratorInfo *DInfo,
|
2009-03-11 21:59:21 +03:00
|
|
|
RecordDecl *Record, SourceLocation Loc,
|
2009-09-09 19:08:12 +04:00
|
|
|
bool Mutable, Expr *BitWidth,
|
2009-07-14 18:58:18 +04:00
|
|
|
SourceLocation TSSL,
|
2009-03-11 23:50:30 +03:00
|
|
|
AccessSpecifier AS, NamedDecl *PrevDecl,
|
2009-03-11 21:59:21 +03:00
|
|
|
Declarator *D) {
|
|
|
|
IdentifierInfo *II = Name.getAsIdentifierInfo();
|
2007-08-29 00:14:24 +04:00
|
|
|
bool InvalidDecl = false;
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D) InvalidDecl = D->isInvalidType();
|
2009-01-05 23:52:13 +03:00
|
|
|
|
2009-03-11 21:59:21 +03:00
|
|
|
// If we receive a broken type, recover by assuming 'int' and
|
|
|
|
// marking this declaration as invalid.
|
|
|
|
if (T.isNull()) {
|
|
|
|
InvalidDecl = true;
|
|
|
|
T = Context.IntTy;
|
|
|
|
}
|
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// C99 6.7.2.1p8: A member of a structure or union may have any type other
|
|
|
|
// than a variably modified type.
|
2008-02-15 15:53:51 +03:00
|
|
|
if (T->isVariablyModifiedType()) {
|
2009-02-21 03:44:51 +03:00
|
|
|
bool SizeIsNegative;
|
|
|
|
QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context,
|
|
|
|
SizeIsNegative);
|
|
|
|
if (!FixedTy.isNull()) {
|
|
|
|
Diag(Loc, diag::warn_illegal_constant_array_size);
|
|
|
|
T = FixedTy;
|
|
|
|
} else {
|
|
|
|
if (SizeIsNegative)
|
|
|
|
Diag(Loc, diag::err_typecheck_negative_array_size);
|
|
|
|
else
|
|
|
|
Diag(Loc, diag::err_typecheck_field_variable_size);
|
|
|
|
InvalidDecl = true;
|
|
|
|
}
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-22 23:18:17 +03:00
|
|
|
// Fields can not have abstract class types
|
2009-09-09 19:08:12 +04:00
|
|
|
if (RequireNonAbstractType(Loc, T, diag::err_abstract_type_in_decl,
|
2009-03-24 04:19:16 +03:00
|
|
|
AbstractFieldType))
|
2009-03-22 23:18:17 +03:00
|
|
|
InvalidDecl = true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-16 01:55:26 +04:00
|
|
|
bool ZeroWidth = false;
|
2009-03-11 21:59:21 +03:00
|
|
|
// If this is declared as a bit-field, check the bit-field.
|
2009-08-16 01:55:26 +04:00
|
|
|
if (BitWidth && VerifyBitField(Loc, II, T, BitWidth, &ZeroWidth)) {
|
2009-03-11 21:59:21 +03:00
|
|
|
InvalidDecl = true;
|
|
|
|
DeleteExpr(BitWidth);
|
|
|
|
BitWidth = 0;
|
2009-08-16 01:55:26 +04:00
|
|
|
ZeroWidth = false;
|
2008-12-06 23:33:04 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-19 05:27:57 +04:00
|
|
|
FieldDecl *NewFD = FieldDecl::Create(Context, Record, Loc, II, T, DInfo,
|
2009-08-21 04:31:54 +04:00
|
|
|
BitWidth, Mutable);
|
2009-04-25 12:06:05 +04:00
|
|
|
if (InvalidDecl)
|
|
|
|
NewFD->setInvalidDecl();
|
2008-12-11 19:49:14 +03:00
|
|
|
|
2009-03-11 21:59:21 +03:00
|
|
|
if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
|
|
|
|
Diag(Loc, diag::err_duplicate_member) << II;
|
|
|
|
Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
|
|
|
|
NewFD->setInvalidDecl();
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
}
|
|
|
|
|
2009-07-22 22:25:24 +04:00
|
|
|
if (getLangOptions().CPlusPlus) {
|
2009-07-24 03:49:00 +04:00
|
|
|
QualType EltTy = Context.getBaseElementType(T);
|
2009-07-22 22:25:24 +04:00
|
|
|
|
2009-08-16 01:55:26 +04:00
|
|
|
CXXRecordDecl* CXXRecord = cast<CXXRecordDecl>(Record);
|
|
|
|
|
|
|
|
if (!T->isPODType())
|
|
|
|
CXXRecord->setPOD(false);
|
|
|
|
if (!ZeroWidth)
|
|
|
|
CXXRecord->setEmpty(false);
|
|
|
|
|
2009-07-30 01:53:49 +04:00
|
|
|
if (const RecordType *RT = EltTy->getAs<RecordType>()) {
|
2009-07-22 22:25:24 +04:00
|
|
|
CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
|
|
|
|
if (!RDecl->hasTrivialConstructor())
|
2009-08-16 01:55:26 +04:00
|
|
|
CXXRecord->setHasTrivialConstructor(false);
|
2009-07-22 22:25:24 +04:00
|
|
|
if (!RDecl->hasTrivialCopyConstructor())
|
2009-08-16 01:55:26 +04:00
|
|
|
CXXRecord->setHasTrivialCopyConstructor(false);
|
2009-07-22 22:25:24 +04:00
|
|
|
if (!RDecl->hasTrivialCopyAssignment())
|
2009-08-16 01:55:26 +04:00
|
|
|
CXXRecord->setHasTrivialCopyAssignment(false);
|
2009-07-22 22:25:24 +04:00
|
|
|
if (!RDecl->hasTrivialDestructor())
|
2009-08-16 01:55:26 +04:00
|
|
|
CXXRecord->setHasTrivialDestructor(false);
|
2009-07-22 22:25:24 +04:00
|
|
|
|
|
|
|
// C++ 9.5p1: An object of a class with a non-trivial
|
|
|
|
// constructor, a non-trivial copy constructor, a non-trivial
|
|
|
|
// destructor, or a non-trivial copy assignment operator
|
|
|
|
// cannot be a member of a union, nor can an array of such
|
|
|
|
// objects.
|
|
|
|
// TODO: C++0x alters this restriction significantly.
|
|
|
|
if (Record->isUnion()) {
|
|
|
|
// We check for copy constructors before constructors
|
|
|
|
// because otherwise we'll never get complaints about
|
|
|
|
// copy constructors.
|
|
|
|
|
|
|
|
const CXXSpecialMember invalid = (CXXSpecialMember) -1;
|
|
|
|
|
|
|
|
CXXSpecialMember member;
|
|
|
|
if (!RDecl->hasTrivialCopyConstructor())
|
|
|
|
member = CXXCopyConstructor;
|
|
|
|
else if (!RDecl->hasTrivialConstructor())
|
|
|
|
member = CXXDefaultConstructor;
|
|
|
|
else if (!RDecl->hasTrivialCopyAssignment())
|
|
|
|
member = CXXCopyAssignment;
|
|
|
|
else if (!RDecl->hasTrivialDestructor())
|
|
|
|
member = CXXDestructor;
|
|
|
|
else
|
|
|
|
member = invalid;
|
|
|
|
|
|
|
|
if (member != invalid) {
|
|
|
|
Diag(Loc, diag::err_illegal_union_member) << Name << member;
|
|
|
|
DiagnoseNontrivial(RT, member);
|
|
|
|
NewFD->setInvalidDecl();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-11 21:59:21 +03:00
|
|
|
// FIXME: We need to pass in the attributes given an AST
|
|
|
|
// representation, not a parser representation.
|
|
|
|
if (D)
|
2009-06-18 01:51:59 +04:00
|
|
|
// FIXME: What to pass instead of TUScope?
|
|
|
|
ProcessDeclAttributes(TUScope, NewFD, *D);
|
2008-12-17 00:30:33 +03:00
|
|
|
|
2009-02-19 03:22:47 +03:00
|
|
|
if (T.isObjCGCWeak())
|
2009-02-18 21:14:41 +03:00
|
|
|
Diag(Loc, diag::warn_attribute_weak_on_field);
|
2008-02-16 03:29:18 +03:00
|
|
|
|
2009-03-11 23:50:30 +03:00
|
|
|
NewFD->setAccess(AS);
|
|
|
|
|
|
|
|
// C++ [dcl.init.aggr]p1:
|
|
|
|
// An aggregate is an array or a class (clause 9) with [...] no
|
|
|
|
// private or protected non-static data members (clause 11).
|
|
|
|
// A POD must be an aggregate.
|
|
|
|
if (getLangOptions().CPlusPlus &&
|
|
|
|
(AS == AS_private || AS == AS_protected)) {
|
|
|
|
CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
|
|
|
|
CXXRecord->setAggregate(false);
|
|
|
|
CXXRecord->setPOD(false);
|
|
|
|
}
|
|
|
|
|
2007-08-29 00:14:24 +04:00
|
|
|
return NewFD;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-07-22 22:25:24 +04:00
|
|
|
/// DiagnoseNontrivial - Given that a class has a non-trivial
|
|
|
|
/// special member, figure out why.
|
|
|
|
void Sema::DiagnoseNontrivial(const RecordType* T, CXXSpecialMember member) {
|
|
|
|
QualType QT(T, 0U);
|
|
|
|
CXXRecordDecl* RD = cast<CXXRecordDecl>(T->getDecl());
|
|
|
|
|
|
|
|
// Check whether the member was user-declared.
|
|
|
|
switch (member) {
|
|
|
|
case CXXDefaultConstructor:
|
|
|
|
if (RD->hasUserDeclaredConstructor()) {
|
|
|
|
typedef CXXRecordDecl::ctor_iterator ctor_iter;
|
2009-10-26 01:31:45 +03:00
|
|
|
for (ctor_iter ci = RD->ctor_begin(), ce = RD->ctor_end(); ci != ce;++ci){
|
|
|
|
const FunctionDecl *body = 0;
|
|
|
|
ci->getBody(body);
|
|
|
|
if (!body ||
|
|
|
|
!cast<CXXConstructorDecl>(body)->isImplicitlyDefined(Context)) {
|
2009-07-22 22:25:24 +04:00
|
|
|
SourceLocation CtorLoc = ci->getLocation();
|
|
|
|
Diag(CtorLoc, diag::note_nontrivial_user_defined) << QT << member;
|
|
|
|
return;
|
|
|
|
}
|
2009-10-26 01:31:45 +03:00
|
|
|
}
|
2009-07-22 22:25:24 +04:00
|
|
|
|
|
|
|
assert(0 && "found no user-declared constructors");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CXXCopyConstructor:
|
|
|
|
if (RD->hasUserDeclaredCopyConstructor()) {
|
|
|
|
SourceLocation CtorLoc =
|
|
|
|
RD->getCopyConstructor(Context, 0)->getLocation();
|
|
|
|
Diag(CtorLoc, diag::note_nontrivial_user_defined) << QT << member;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CXXCopyAssignment:
|
|
|
|
if (RD->hasUserDeclaredCopyAssignment()) {
|
|
|
|
// FIXME: this should use the location of the copy
|
|
|
|
// assignment, not the type.
|
|
|
|
SourceLocation TyLoc = RD->getSourceRange().getBegin();
|
|
|
|
Diag(TyLoc, diag::note_nontrivial_user_defined) << QT << member;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CXXDestructor:
|
|
|
|
if (RD->hasUserDeclaredDestructor()) {
|
|
|
|
SourceLocation DtorLoc = RD->getDestructor(Context)->getLocation();
|
|
|
|
Diag(DtorLoc, diag::note_nontrivial_user_defined) << QT << member;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef CXXRecordDecl::base_class_iterator base_iter;
|
|
|
|
|
|
|
|
// Virtual bases and members inhibit trivial copying/construction,
|
|
|
|
// but not trivial destruction.
|
|
|
|
if (member != CXXDestructor) {
|
|
|
|
// Check for virtual bases. vbases includes indirect virtual bases,
|
|
|
|
// so we just iterate through the direct bases.
|
|
|
|
for (base_iter bi = RD->bases_begin(), be = RD->bases_end(); bi != be; ++bi)
|
|
|
|
if (bi->isVirtual()) {
|
|
|
|
SourceLocation BaseLoc = bi->getSourceRange().getBegin();
|
|
|
|
Diag(BaseLoc, diag::note_nontrivial_has_virtual) << QT << 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for virtual methods.
|
|
|
|
typedef CXXRecordDecl::method_iterator meth_iter;
|
|
|
|
for (meth_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
|
|
|
|
++mi) {
|
|
|
|
if (mi->isVirtual()) {
|
|
|
|
SourceLocation MLoc = mi->getSourceRange().getBegin();
|
|
|
|
Diag(MLoc, diag::note_nontrivial_has_virtual) << QT << 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-22 22:25:24 +04:00
|
|
|
bool (CXXRecordDecl::*hasTrivial)() const;
|
|
|
|
switch (member) {
|
|
|
|
case CXXDefaultConstructor:
|
|
|
|
hasTrivial = &CXXRecordDecl::hasTrivialConstructor; break;
|
|
|
|
case CXXCopyConstructor:
|
|
|
|
hasTrivial = &CXXRecordDecl::hasTrivialCopyConstructor; break;
|
|
|
|
case CXXCopyAssignment:
|
|
|
|
hasTrivial = &CXXRecordDecl::hasTrivialCopyAssignment; break;
|
|
|
|
case CXXDestructor:
|
|
|
|
hasTrivial = &CXXRecordDecl::hasTrivialDestructor; break;
|
|
|
|
default:
|
|
|
|
assert(0 && "unexpected special member"); return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for nontrivial bases (and recurse).
|
|
|
|
for (base_iter bi = RD->bases_begin(), be = RD->bases_end(); bi != be; ++bi) {
|
2009-07-30 01:53:49 +04:00
|
|
|
const RecordType *BaseRT = bi->getType()->getAs<RecordType>();
|
2009-10-25 20:03:50 +03:00
|
|
|
assert(BaseRT && "Don't know how to handle dependent bases");
|
2009-07-22 22:25:24 +04:00
|
|
|
CXXRecordDecl *BaseRecTy = cast<CXXRecordDecl>(BaseRT->getDecl());
|
|
|
|
if (!(BaseRecTy->*hasTrivial)()) {
|
|
|
|
SourceLocation BaseLoc = bi->getSourceRange().getBegin();
|
|
|
|
Diag(BaseLoc, diag::note_nontrivial_has_nontrivial) << QT << 1 << member;
|
|
|
|
DiagnoseNontrivial(BaseRT, member);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-07-22 22:25:24 +04:00
|
|
|
// Check for nontrivial members (and recurse).
|
|
|
|
typedef RecordDecl::field_iterator field_iter;
|
|
|
|
for (field_iter fi = RD->field_begin(), fe = RD->field_end(); fi != fe;
|
|
|
|
++fi) {
|
2009-07-24 03:49:00 +04:00
|
|
|
QualType EltTy = Context.getBaseElementType((*fi)->getType());
|
2009-07-30 01:53:49 +04:00
|
|
|
if (const RecordType *EltRT = EltTy->getAs<RecordType>()) {
|
2009-07-22 22:25:24 +04:00
|
|
|
CXXRecordDecl* EltRD = cast<CXXRecordDecl>(EltRT->getDecl());
|
|
|
|
|
|
|
|
if (!(EltRD->*hasTrivial)()) {
|
|
|
|
SourceLocation FLoc = (*fi)->getLocation();
|
|
|
|
Diag(FLoc, diag::note_nontrivial_has_nontrivial) << QT << 0 << member;
|
|
|
|
DiagnoseNontrivial(EltRT, member);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(0 && "found no explanation for non-trivial member");
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
/// TranslateIvarVisibility - Translate visibility from a token ID to an
|
2007-10-01 20:53:59 +04:00
|
|
|
/// AST enum value.
|
2008-01-07 22:49:32 +03:00
|
|
|
static ObjCIvarDecl::AccessControl
|
2007-10-01 20:53:59 +04:00
|
|
|
TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
|
2007-09-15 03:09:53 +04:00
|
|
|
switch (ivarVisibility) {
|
2008-10-12 04:28:42 +04:00
|
|
|
default: assert(0 && "Unknown visitibility kind");
|
|
|
|
case tok::objc_private: return ObjCIvarDecl::Private;
|
|
|
|
case tok::objc_public: return ObjCIvarDecl::Public;
|
|
|
|
case tok::objc_protected: return ObjCIvarDecl::Protected;
|
|
|
|
case tok::objc_package: return ObjCIvarDecl::Package;
|
2007-09-15 03:09:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
/// ActOnIvar - Each ivar field of an objective-c class is passed into this
|
2008-04-11 20:55:42 +04:00
|
|
|
/// in order to create an IvarDecl object for it.
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnIvar(Scope *S,
|
2009-09-09 19:08:12 +04:00
|
|
|
SourceLocation DeclStart,
|
2009-06-05 22:16:35 +04:00
|
|
|
DeclPtrTy IntfDecl,
|
2009-03-28 22:18:32 +03:00
|
|
|
Declarator &D, ExprTy *BitfieldWidth,
|
|
|
|
tok::ObjCKeywordKind Visibility) {
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-11 03:32:45 +04:00
|
|
|
IdentifierInfo *II = D.getIdentifier();
|
|
|
|
Expr *BitWidth = (Expr*)BitfieldWidth;
|
|
|
|
SourceLocation Loc = DeclStart;
|
|
|
|
if (II) Loc = D.getIdentifierLoc();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-11 03:32:45 +04:00
|
|
|
// FIXME: Unnamed fields can be handled in various different ways, for
|
|
|
|
// example, unnamed unions inject all members into the struct namespace!
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-08-19 05:27:57 +04:00
|
|
|
DeclaratorInfo *DInfo = 0;
|
|
|
|
QualType T = GetTypeForDeclarator(D, S, &DInfo);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-11 03:32:45 +04:00
|
|
|
if (BitWidth) {
|
2009-02-20 20:57:11 +03:00
|
|
|
// 6.7.2.1p3, 6.7.2.1p4
|
2009-03-06 01:45:59 +03:00
|
|
|
if (VerifyBitField(Loc, II, T, BitWidth)) {
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2009-03-06 01:45:59 +03:00
|
|
|
DeleteExpr(BitWidth);
|
|
|
|
BitWidth = 0;
|
|
|
|
}
|
2008-04-11 03:32:45 +04:00
|
|
|
} else {
|
|
|
|
// Not a bitfield.
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-11 03:32:45 +04:00
|
|
|
// validate II.
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-11 03:32:45 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-04-11 03:32:45 +04:00
|
|
|
// C99 6.7.2.1p8: A member of a structure or union may have any type other
|
|
|
|
// than a variably modified type.
|
|
|
|
if (T->isVariablyModifiedType()) {
|
2008-12-07 03:20:55 +03:00
|
|
|
Diag(Loc, diag::err_typecheck_ivar_variable_size);
|
2009-04-25 12:06:05 +04:00
|
|
|
D.setInvalidType();
|
2008-04-11 03:32:45 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-07-23 22:04:17 +04:00
|
|
|
// Get the visibility (access control) for this ivar.
|
2009-09-09 19:08:12 +04:00
|
|
|
ObjCIvarDecl::AccessControl ac =
|
2008-07-23 22:04:17 +04:00
|
|
|
Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
|
|
|
|
: ObjCIvarDecl::None;
|
2009-06-05 22:16:35 +04:00
|
|
|
// Must set ivar's DeclContext to its enclosing interface.
|
|
|
|
Decl *EnclosingDecl = IntfDecl.getAs<Decl>();
|
|
|
|
DeclContext *EnclosingContext;
|
2009-09-09 19:08:12 +04:00
|
|
|
if (ObjCImplementationDecl *IMPDecl =
|
2009-06-05 22:16:35 +04:00
|
|
|
dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
|
|
|
|
// Case of ivar declared in an implementation. Context is that of its class.
|
|
|
|
ObjCInterfaceDecl* IDecl = IMPDecl->getClassInterface();
|
|
|
|
assert(IDecl && "No class- ActOnIvar");
|
|
|
|
EnclosingContext = cast_or_null<DeclContext>(IDecl);
|
2009-08-05 01:02:39 +04:00
|
|
|
} else
|
2009-06-05 22:16:35 +04:00
|
|
|
EnclosingContext = dyn_cast<DeclContext>(EnclosingDecl);
|
|
|
|
assert(EnclosingContext && "null DeclContext for ivar - ActOnIvar");
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-07-23 22:04:17 +04:00
|
|
|
// Construct the decl.
|
2009-09-09 19:08:12 +04:00
|
|
|
ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context,
|
2009-08-19 05:27:57 +04:00
|
|
|
EnclosingContext, Loc, II, T,
|
|
|
|
DInfo, ac, (Expr *)BitfieldWidth);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
if (II) {
|
2009-11-17 05:14:36 +03:00
|
|
|
NamedDecl *PrevDecl = LookupSingleName(S, II, LookupMemberName,
|
2009-11-18 10:57:50 +03:00
|
|
|
ForRedeclaration);
|
2009-06-05 22:16:35 +04:00
|
|
|
if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
&& !isa<TagDecl>(PrevDecl)) {
|
|
|
|
Diag(Loc, diag::err_duplicate_member) << II;
|
|
|
|
Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
|
|
|
|
NewID->setInvalidDecl();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-23 22:04:17 +04:00
|
|
|
// Process attributes attached to the ivar.
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributes(S, NewID, D);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-25 12:06:05 +04:00
|
|
|
if (D.isInvalidType())
|
2008-04-11 03:32:45 +04:00
|
|
|
NewID->setInvalidDecl();
|
2008-07-23 22:04:17 +04:00
|
|
|
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
if (II) {
|
|
|
|
// FIXME: When interfaces are DeclContexts, we'll need to add
|
|
|
|
// these to the interface.
|
2009-03-28 22:18:32 +03:00
|
|
|
S->AddDecl(DeclPtrTy::make(NewID));
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
IdResolver.AddDecl(NewID);
|
|
|
|
}
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(NewID);
|
2008-04-11 03:32:45 +04:00
|
|
|
}
|
|
|
|
|
2007-09-29 04:54:24 +04:00
|
|
|
void Sema::ActOnFields(Scope* S,
|
2009-03-28 22:18:32 +03:00
|
|
|
SourceLocation RecLoc, DeclPtrTy RecDecl,
|
|
|
|
DeclPtrTy *Fields, unsigned NumFields,
|
2008-10-03 06:03:53 +04:00
|
|
|
SourceLocation LBrac, SourceLocation RBrac,
|
2008-10-03 21:33:35 +04:00
|
|
|
AttributeList *Attr) {
|
2009-03-28 22:18:32 +03:00
|
|
|
Decl *EnclosingDecl = RecDecl.getAs<Decl>();
|
2007-09-15 02:20:54 +04:00
|
|
|
assert(EnclosingDecl && "missing record or interface decl");
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-24 01:00:08 +03:00
|
|
|
// If the decl this is being inserted into is invalid, then it may be a
|
|
|
|
// redeclaration or some other bogus case. Don't try to add fields to it.
|
|
|
|
if (EnclosingDecl->isInvalidDecl()) {
|
|
|
|
// FIXME: Deallocate fields?
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Verify that all the fields are okay.
|
|
|
|
unsigned NumNamedMembers = 0;
|
|
|
|
llvm::SmallVector<FieldDecl*, 32> RecFields;
|
2009-01-07 22:46:03 +03:00
|
|
|
|
2009-02-24 01:00:08 +03:00
|
|
|
RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
|
2007-07-11 21:01:13 +04:00
|
|
|
for (unsigned i = 0; i != NumFields; ++i) {
|
2009-03-28 22:18:32 +03:00
|
|
|
FieldDecl *FD = cast<FieldDecl>(Fields[i].getAs<Decl>());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Get the type for the field.
|
2007-08-01 01:33:24 +04:00
|
|
|
Type *FDTy = FD->getType().getTypePtr();
|
2009-01-07 22:46:03 +03:00
|
|
|
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
if (!FD->isAnonymousStructOrUnion()) {
|
2009-01-07 22:46:03 +03:00
|
|
|
// Remember all fields written by the user.
|
|
|
|
RecFields.push_back(FD);
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-06 01:45:59 +03:00
|
|
|
// If the field is already invalid for some reason, don't emit more
|
|
|
|
// diagnostics about it.
|
|
|
|
if (FD->isInvalidDecl())
|
|
|
|
continue;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-24 22:52:54 +03:00
|
|
|
// C99 6.7.2.1p2:
|
|
|
|
// A structure or union shall not contain a member with
|
|
|
|
// incomplete or function type (hence, a structure shall not
|
|
|
|
// contain an instance of itself, but may contain a pointer to
|
|
|
|
// an instance of itself), except that the last member of a
|
|
|
|
// structure with more than one named member may have incomplete
|
|
|
|
// array type; such a structure (and any union containing,
|
|
|
|
// possibly recursively, a member that is such a structure)
|
|
|
|
// shall not be a member of a structure or an element of an
|
|
|
|
// array.
|
2007-08-01 01:33:24 +04:00
|
|
|
if (FDTy->isFunctionType()) {
|
2009-03-24 22:52:54 +03:00
|
|
|
// Field declared as a function.
|
2008-11-20 09:38:18 +03:00
|
|
|
Diag(FD->getLocation(), diag::err_field_declared_as_function)
|
2008-11-24 08:29:24 +03:00
|
|
|
<< FD->getDeclName();
|
2007-09-15 02:20:54 +04:00
|
|
|
FD->setInvalidDecl();
|
|
|
|
EnclosingDecl->setInvalidDecl();
|
2007-07-11 21:01:13 +04:00
|
|
|
continue;
|
2009-03-24 22:52:54 +03:00
|
|
|
} else if (FDTy->isIncompleteArrayType() && i == NumFields - 1 &&
|
|
|
|
Record && Record->isStruct()) {
|
|
|
|
// Flexible array member.
|
|
|
|
if (NumNamedMembers < 1) {
|
2008-11-20 09:38:18 +03:00
|
|
|
Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
|
2008-11-24 08:29:24 +03:00
|
|
|
<< FD->getDeclName();
|
2007-09-15 02:20:54 +04:00
|
|
|
FD->setInvalidDecl();
|
|
|
|
EnclosingDecl->setInvalidDecl();
|
2007-07-11 21:01:13 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Okay, we have a legal flexible array member at the end of the struct.
|
2007-09-14 20:27:55 +04:00
|
|
|
if (Record)
|
|
|
|
Record->setHasFlexibleArrayMember(true);
|
2009-03-24 22:52:54 +03:00
|
|
|
} else if (!FDTy->isDependentType() &&
|
2009-09-09 19:08:12 +04:00
|
|
|
RequireCompleteType(FD->getLocation(), FD->getType(),
|
2009-03-24 22:52:54 +03:00
|
|
|
diag::err_field_incomplete)) {
|
|
|
|
// Incomplete type
|
|
|
|
FD->setInvalidDecl();
|
|
|
|
EnclosingDecl->setInvalidDecl();
|
|
|
|
continue;
|
2009-07-30 01:53:49 +04:00
|
|
|
} else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
|
2007-07-11 21:01:13 +04:00
|
|
|
if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
|
|
|
|
// If this is a member of a union, then entire union becomes "flexible".
|
2008-06-10 03:19:58 +04:00
|
|
|
if (Record && Record->isUnion()) {
|
2007-07-11 21:01:13 +04:00
|
|
|
Record->setHasFlexibleArrayMember(true);
|
|
|
|
} else {
|
|
|
|
// If this is a struct/class and this is not the last element, reject
|
|
|
|
// it. Note that GCC supports variable sized arrays in the middle of
|
|
|
|
// structures.
|
2009-03-07 02:41:27 +03:00
|
|
|
if (i != NumFields-1)
|
|
|
|
Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
|
2009-04-25 22:52:45 +04:00
|
|
|
<< FD->getDeclName() << FD->getType();
|
2009-03-07 02:41:27 +03:00
|
|
|
else {
|
|
|
|
// We support flexible arrays at the end of structs in
|
|
|
|
// other structs as an extension.
|
|
|
|
Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
|
|
|
|
<< FD->getDeclName();
|
|
|
|
if (Record)
|
|
|
|
Record->setHasFlexibleArrayMember(true);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-08 05:18:33 +04:00
|
|
|
if (Record && FDTTy->getDecl()->hasObjectMember())
|
|
|
|
Record->setHasObjectMember(true);
|
2009-03-24 22:52:54 +03:00
|
|
|
} else if (FDTy->isObjCInterfaceType()) {
|
|
|
|
/// A field cannot be an Objective-c object
|
2009-02-21 01:59:16 +03:00
|
|
|
Diag(FD->getLocation(), diag::err_statically_allocated_object);
|
2007-10-13 02:10:42 +04:00
|
|
|
FD->setInvalidDecl();
|
|
|
|
EnclosingDecl->setInvalidDecl();
|
|
|
|
continue;
|
2009-08-05 01:02:39 +04:00
|
|
|
} else if (getLangOptions().ObjC1 &&
|
|
|
|
getLangOptions().getGCMode() != LangOptions::NonGC &&
|
|
|
|
Record &&
|
|
|
|
(FD->getType()->isObjCObjectPointerType() ||
|
|
|
|
FD->getType().isObjCGCStrong()))
|
2009-07-08 05:18:33 +04:00
|
|
|
Record->setHasObjectMember(true);
|
2007-07-11 21:01:13 +04:00
|
|
|
// Keep track of the number of named members.
|
Unify the code for defining tags in C and C++, so that we always
introduce a Scope for the body of a tag. This reduces the number of
semantic differences between C and C++ structs and unions, and will
help with other features (e.g., anonymous unions) in C. Some important
points:
- Fields are now in the "member" namespace (IDNS_Member), to keep
them separate from tags and ordinary names in C. See the new test
in Sema/member-reference.c for an example of why this matters. In
C++, ordinary and member name lookup will find members in both the
ordinary and member namespace, so the difference between
IDNS_Member and IDNS_Ordinary is erased by Sema::LookupDecl (but
only in C++!).
- We always introduce a Scope and push a DeclContext when we're
defining a tag, in both C and C++. Previously, we had different
actions and different Scope/CurContext behavior for enums, C
structs/unions, and C++ structs/unions/classes. Now, it's one pair
of actions. (Yay!)
There's still some fuzziness in the handling of struct/union/enum
definitions within other struct/union/enum definitions in C. We'll
need to do some more cleanup to eliminate some reliance on CurContext
before we can solve this issue for real. What we want is for something
like this:
struct X {
struct T { int x; } t;
};
to introduce T into translation unit scope (placing it at the
appropriate point in the IdentifierResolver chain, too), but it should
still have struct X as its lexical declaration
context. PushOnScopeChains isn't smart enough to do that yet, though,
so there's a FIXME test in nested-redef.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61940 91177308-0d34-0410-b5e6-96231b3b80d8
2009-01-08 23:45:30 +03:00
|
|
|
if (FD->getIdentifier())
|
2007-07-11 21:01:13 +04:00
|
|
|
++NumNamedMembers;
|
|
|
|
}
|
2009-01-05 23:52:13 +03:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Okay, we successfully defined 'Record'.
|
2008-02-06 03:51:33 +03:00
|
|
|
if (Record) {
|
2008-12-11 19:49:14 +03:00
|
|
|
Record->completeDefinition(Context);
|
2008-02-06 03:51:33 +03:00
|
|
|
} else {
|
2009-05-21 13:52:38 +04:00
|
|
|
ObjCIvarDecl **ClsFields =
|
|
|
|
reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
|
2008-12-13 23:28:25 +03:00
|
|
|
if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
|
2009-02-21 00:35:13 +03:00
|
|
|
ID->setIVarList(ClsFields, RecFields.size(), Context);
|
|
|
|
ID->setLocEnd(RBrac);
|
2009-06-05 22:16:35 +04:00
|
|
|
// Add ivar's to class's DeclContext.
|
|
|
|
for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
|
|
|
|
ClsFields[i]->setLexicalDeclContext(ID);
|
2009-06-30 06:36:12 +04:00
|
|
|
ID->addDecl(ClsFields[i]);
|
2009-06-05 22:16:35 +04:00
|
|
|
}
|
2008-12-16 04:08:35 +03:00
|
|
|
// Must enforce the rule that ivars in the base classes may not be
|
|
|
|
// duplicates.
|
2008-12-18 01:21:44 +03:00
|
|
|
if (ID->getSuperClass()) {
|
2009-09-09 19:08:12 +04:00
|
|
|
for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
|
2008-12-18 01:21:44 +03:00
|
|
|
IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
|
|
|
|
ObjCIvarDecl* Ivar = (*IVI);
|
2009-05-03 05:08:28 +04:00
|
|
|
|
|
|
|
if (IdentifierInfo *II = Ivar->getIdentifier()) {
|
|
|
|
ObjCIvarDecl* prevIvar =
|
2009-06-30 06:36:12 +04:00
|
|
|
ID->getSuperClass()->lookupInstanceVariable(II);
|
2009-05-03 05:08:28 +04:00
|
|
|
if (prevIvar) {
|
|
|
|
Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
|
|
|
|
Diag(prevIvar->getLocation(), diag::note_previous_declaration);
|
|
|
|
}
|
2008-12-16 04:08:35 +03:00
|
|
|
}
|
2008-12-18 01:21:44 +03:00
|
|
|
}
|
2008-12-16 04:08:35 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
} else if (ObjCImplementationDecl *IMPDecl =
|
2009-02-24 01:00:08 +03:00
|
|
|
dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
|
2008-01-07 22:49:32 +03:00
|
|
|
assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
|
2009-06-05 22:16:35 +04:00
|
|
|
for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
|
|
|
|
// Ivar declared in @implementation never belongs to the implementation.
|
|
|
|
// Only it is in implementation's lexical context.
|
2009-04-23 07:23:08 +04:00
|
|
|
ClsFields[I]->setLexicalDeclContext(IMPDecl);
|
2007-10-31 21:48:14 +03:00
|
|
|
CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
|
2007-09-26 22:27:25 +04:00
|
|
|
}
|
2007-09-15 01:08:27 +04:00
|
|
|
}
|
2008-10-03 21:33:35 +04:00
|
|
|
|
|
|
|
if (Attr)
|
2009-06-18 01:51:59 +04:00
|
|
|
ProcessDeclAttributeList(S, Record, Attr);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-03-17 22:05:46 +03:00
|
|
|
EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
|
|
|
|
EnumConstantDecl *LastEnumConst,
|
|
|
|
SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id,
|
|
|
|
ExprArg val) {
|
|
|
|
Expr *Val = (Expr *)val.get();
|
|
|
|
|
|
|
|
llvm::APSInt EnumVal(32);
|
|
|
|
QualType EltTy;
|
2009-11-06 03:03:12 +03:00
|
|
|
if (Val) {
|
|
|
|
if (Val->isTypeDependent())
|
|
|
|
EltTy = Context.DependentTy;
|
|
|
|
else {
|
|
|
|
// Make sure to promote the operand type to int.
|
|
|
|
UsualUnaryConversions(Val);
|
|
|
|
if (Val != val.get()) {
|
|
|
|
val.release();
|
|
|
|
val = Val;
|
|
|
|
}
|
2009-03-17 22:05:46 +03:00
|
|
|
|
2009-11-06 03:03:12 +03:00
|
|
|
// C99 6.7.2.2p2: Make sure we have an integer constant expression.
|
|
|
|
SourceLocation ExpLoc;
|
|
|
|
if (!Val->isValueDependent() &&
|
|
|
|
VerifyIntegerConstantExpression(Val, &EnumVal)) {
|
|
|
|
Val = 0;
|
|
|
|
} else {
|
|
|
|
EltTy = Val->getType();
|
|
|
|
}
|
2009-03-17 22:05:46 +03:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-17 22:05:46 +03:00
|
|
|
if (!Val) {
|
|
|
|
if (LastEnumConst) {
|
|
|
|
// Assign the last value + 1.
|
|
|
|
EnumVal = LastEnumConst->getInitVal();
|
|
|
|
++EnumVal;
|
|
|
|
|
|
|
|
// Check for overflow on increment.
|
|
|
|
if (EnumVal < LastEnumConst->getInitVal())
|
|
|
|
Diag(IdLoc, diag::warn_enum_value_overflow);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-17 22:05:46 +03:00
|
|
|
EltTy = LastEnumConst->getType();
|
|
|
|
} else {
|
|
|
|
// First value, set to zero.
|
|
|
|
EltTy = Context.IntTy;
|
|
|
|
EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-11-06 03:03:12 +03:00
|
|
|
assert(!EltTy.isNull() && "Enum constant with NULL type");
|
|
|
|
|
2009-03-17 22:05:46 +03:00
|
|
|
val.release();
|
|
|
|
return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
|
2009-09-09 19:08:12 +04:00
|
|
|
Val, EnumVal);
|
2009-03-17 22:05:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnEnumConstant(Scope *S, DeclPtrTy theEnumDecl,
|
|
|
|
DeclPtrTy lastEnumConst,
|
|
|
|
SourceLocation IdLoc,
|
|
|
|
IdentifierInfo *Id,
|
|
|
|
SourceLocation EqualLoc, ExprTy *val) {
|
|
|
|
EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl.getAs<Decl>());
|
2007-07-11 21:01:13 +04:00
|
|
|
EnumConstantDecl *LastEnumConst =
|
2009-03-28 22:18:32 +03:00
|
|
|
cast_or_null<EnumConstantDecl>(lastEnumConst.getAs<Decl>());
|
2007-07-11 21:01:13 +04:00
|
|
|
Expr *Val = static_cast<Expr*>(val);
|
|
|
|
|
2007-08-26 10:24:45 +04:00
|
|
|
// The scope passed in may not be a decl scope. Zip up the scope tree until
|
|
|
|
// we find one that is.
|
2009-01-12 21:45:55 +03:00
|
|
|
S = getNonFieldDeclScope(S);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Verify that there isn't already something declared with this name in this
|
|
|
|
// scope.
|
2009-10-10 01:13:30 +04:00
|
|
|
NamedDecl *PrevDecl = LookupSingleName(S, Id, LookupOrdinaryName);
|
2008-12-08 21:40:42 +03:00
|
|
|
if (PrevDecl && PrevDecl->isTemplateParameter()) {
|
2008-12-05 21:15:24 +03:00
|
|
|
// Maybe we will complain about the shadowed template parameter.
|
|
|
|
DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
|
|
|
|
// Just pretend that we didn't see the previous declaration.
|
|
|
|
PrevDecl = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PrevDecl) {
|
2008-07-17 01:01:53 +04:00
|
|
|
// When in C++, we may get a TagDecl with the same name; in this case the
|
|
|
|
// enum constant will 'hide' the tag.
|
|
|
|
assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
|
|
|
|
"Received TagDecl when not in C++!");
|
2008-09-10 01:18:04 +04:00
|
|
|
if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
|
2007-07-11 21:01:13 +04:00
|
|
|
if (isa<EnumConstantDecl>(PrevDecl))
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
|
2007-07-11 21:01:13 +04:00
|
|
|
else
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(IdLoc, diag::err_redefinition) << Id;
|
2008-11-24 02:12:31 +03:00
|
|
|
Diag(PrevDecl->getLocation(), diag::note_previous_definition);
|
2009-02-28 22:37:57 +03:00
|
|
|
if (Val) Val->Destroy(Context);
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy();
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-17 22:05:46 +03:00
|
|
|
EnumConstantDecl *New = CheckEnumConstant(TheEnumDecl, LastEnumConst,
|
|
|
|
IdLoc, Id, Owned(Val));
|
2007-08-28 01:16:18 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
// Register this decl in the current scope stack.
|
2009-03-17 22:05:46 +03:00
|
|
|
if (New)
|
|
|
|
PushOnScopeChains(New, S);
|
2008-12-17 05:04:30 +03:00
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
return DeclPtrTy::make(New);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-05-16 11:06:02 +04:00
|
|
|
void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
|
|
|
|
SourceLocation RBraceLoc, DeclPtrTy EnumDeclX,
|
2009-08-08 18:36:57 +04:00
|
|
|
DeclPtrTy *Elements, unsigned NumElements,
|
|
|
|
Scope *S, AttributeList *Attr) {
|
2009-03-28 22:18:32 +03:00
|
|
|
EnumDecl *Enum = cast<EnumDecl>(EnumDeclX.getAs<Decl>());
|
2009-01-05 22:45:36 +03:00
|
|
|
QualType EnumType = Context.getTypeDeclType(Enum);
|
2009-08-08 18:36:57 +04:00
|
|
|
|
|
|
|
if (Attr)
|
|
|
|
ProcessDeclAttributeList(S, Enum, Attr);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-28 09:10:31 +04:00
|
|
|
// TODO: If the result value doesn't fit in an int, it must be a long or long
|
|
|
|
// long value. ISO C does not support this, but GCC does as an extension,
|
|
|
|
// emit a warning.
|
2008-03-05 21:54:05 +03:00
|
|
|
unsigned IntWidth = Context.Target.getIntWidth();
|
2009-08-08 18:36:57 +04:00
|
|
|
unsigned CharWidth = Context.Target.getCharWidth();
|
|
|
|
unsigned ShortWidth = Context.Target.getShortWidth();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-28 10:15:15 +04:00
|
|
|
// Verify that all the values are okay, compute the size of the values, and
|
|
|
|
// reverse the list.
|
|
|
|
unsigned NumNegativeBits = 0;
|
|
|
|
unsigned NumPositiveBits = 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-28 10:15:15 +04:00
|
|
|
// Keep track of whether all elements have type int.
|
|
|
|
bool AllElementsInt = true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
for (unsigned i = 0; i != NumElements; ++i) {
|
|
|
|
EnumConstantDecl *ECD =
|
2009-03-28 22:18:32 +03:00
|
|
|
cast_or_null<EnumConstantDecl>(Elements[i].getAs<Decl>());
|
2007-07-11 21:01:13 +04:00
|
|
|
if (!ECD) continue; // Already issued a diagnostic.
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-28 09:27:00 +04:00
|
|
|
// If the enum value doesn't fit in an int, emit an extension warning.
|
|
|
|
const llvm::APSInt &InitVal = ECD->getInitVal();
|
2008-02-26 03:33:57 +03:00
|
|
|
assert(InitVal.getBitWidth() >= IntWidth &&
|
|
|
|
"Should have promoted value to int");
|
2007-08-28 09:27:00 +04:00
|
|
|
if (InitVal.getBitWidth() > IntWidth) {
|
|
|
|
llvm::APSInt V(InitVal);
|
|
|
|
V.trunc(IntWidth);
|
|
|
|
V.extend(InitVal.getBitWidth());
|
|
|
|
if (V != InitVal)
|
2008-11-20 09:38:18 +03:00
|
|
|
Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
|
|
|
|
<< InitVal.toString(10);
|
2007-08-28 09:27:00 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-28 10:15:15 +04:00
|
|
|
// Keep track of the size of positive and negative values.
|
2008-02-26 03:33:57 +03:00
|
|
|
if (InitVal.isUnsigned() || InitVal.isNonNegative())
|
2008-01-15 00:47:29 +03:00
|
|
|
NumPositiveBits = std::max(NumPositiveBits,
|
|
|
|
(unsigned)InitVal.getActiveBits());
|
2007-08-28 10:15:15 +04:00
|
|
|
else
|
2008-01-15 00:47:29 +03:00
|
|
|
NumNegativeBits = std::max(NumNegativeBits,
|
|
|
|
(unsigned)InitVal.getMinSignedBits());
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2007-08-28 10:15:15 +04:00
|
|
|
// Keep track of whether every enum element has type int (very commmon).
|
|
|
|
if (AllElementsInt)
|
2009-09-09 19:08:12 +04:00
|
|
|
AllElementsInt = ECD->getType() == Context.IntTy;
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-28 10:15:15 +04:00
|
|
|
// Figure out the type that should be used for this enum.
|
2009-08-08 18:36:57 +04:00
|
|
|
// FIXME: Support -fshort-enums.
|
2007-08-28 10:15:15 +04:00
|
|
|
QualType BestType;
|
2007-08-29 21:31:48 +04:00
|
|
|
unsigned BestWidth;
|
2009-08-08 18:36:57 +04:00
|
|
|
|
|
|
|
bool Packed = Enum->getAttr<PackedAttr>() ? true : false;
|
|
|
|
|
2007-08-28 10:15:15 +04:00
|
|
|
if (NumNegativeBits) {
|
2009-09-09 19:08:12 +04:00
|
|
|
// If there is a negative value, figure out the smallest integer type (of
|
2007-08-28 10:15:15 +04:00
|
|
|
// int/long/longlong) that fits.
|
2009-08-08 18:36:57 +04:00
|
|
|
// If it's packed, check also if it fits a char or a short.
|
|
|
|
if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
|
|
|
|
BestType = Context.SignedCharTy;
|
|
|
|
BestWidth = CharWidth;
|
2009-09-09 19:08:12 +04:00
|
|
|
} else if (Packed && NumNegativeBits <= ShortWidth &&
|
2009-08-08 18:36:57 +04:00
|
|
|
NumPositiveBits < ShortWidth) {
|
|
|
|
BestType = Context.ShortTy;
|
|
|
|
BestWidth = ShortWidth;
|
|
|
|
}
|
|
|
|
else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
|
2007-08-28 10:15:15 +04:00
|
|
|
BestType = Context.IntTy;
|
2007-08-29 21:31:48 +04:00
|
|
|
BestWidth = IntWidth;
|
|
|
|
} else {
|
2008-03-05 21:54:05 +03:00
|
|
|
BestWidth = Context.Target.getLongWidth();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-29 21:31:48 +04:00
|
|
|
if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
|
2007-08-28 10:15:15 +04:00
|
|
|
BestType = Context.LongTy;
|
|
|
|
else {
|
2008-03-05 21:54:05 +03:00
|
|
|
BestWidth = Context.Target.getLongLongWidth();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-29 21:31:48 +04:00
|
|
|
if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
|
2007-08-28 10:15:15 +04:00
|
|
|
Diag(Enum->getLocation(), diag::warn_enum_too_large);
|
|
|
|
BestType = Context.LongLongTy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If there is no negative value, figure out which of uint, ulong, ulonglong
|
|
|
|
// fits.
|
2009-08-08 18:36:57 +04:00
|
|
|
// If it's packed, check also if it fits a char or a short.
|
|
|
|
if (Packed && NumPositiveBits <= CharWidth) {
|
|
|
|
BestType = Context.UnsignedCharTy;
|
|
|
|
BestWidth = CharWidth;
|
|
|
|
} else if (Packed && NumPositiveBits <= ShortWidth) {
|
|
|
|
BestType = Context.UnsignedShortTy;
|
|
|
|
BestWidth = ShortWidth;
|
|
|
|
}
|
|
|
|
else if (NumPositiveBits <= IntWidth) {
|
2007-08-28 10:15:15 +04:00
|
|
|
BestType = Context.UnsignedIntTy;
|
2007-08-29 21:31:48 +04:00
|
|
|
BestWidth = IntWidth;
|
|
|
|
} else if (NumPositiveBits <=
|
2008-03-05 21:54:05 +03:00
|
|
|
(BestWidth = Context.Target.getLongWidth())) {
|
2007-08-28 10:15:15 +04:00
|
|
|
BestType = Context.UnsignedLongTy;
|
2008-03-05 21:54:05 +03:00
|
|
|
} else {
|
|
|
|
BestWidth = Context.Target.getLongLongWidth();
|
2007-08-29 21:31:48 +04:00
|
|
|
assert(NumPositiveBits <= BestWidth &&
|
2007-08-28 10:15:15 +04:00
|
|
|
"How could an initializer get larger than ULL?");
|
|
|
|
BestType = Context.UnsignedLongLongTy;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-29 21:31:48 +04:00
|
|
|
// Loop over all of the enumerator constants, changing their types to match
|
|
|
|
// the type of the enum if needed.
|
|
|
|
for (unsigned i = 0; i != NumElements; ++i) {
|
|
|
|
EnumConstantDecl *ECD =
|
2009-03-28 22:18:32 +03:00
|
|
|
cast_or_null<EnumConstantDecl>(Elements[i].getAs<Decl>());
|
2007-08-29 21:31:48 +04:00
|
|
|
if (!ECD) continue; // Already issued a diagnostic.
|
|
|
|
|
|
|
|
// Standard C says the enumerators have int type, but we allow, as an
|
|
|
|
// extension, the enumerators to be larger than int size. If each
|
|
|
|
// enumerator value fits in an int, type it as an int, otherwise type it the
|
|
|
|
// same as the enumerator decl itself. This means that in "enum { X = 1U }"
|
|
|
|
// that X has type 'int', not 'unsigned'.
|
2008-02-26 03:33:57 +03:00
|
|
|
if (ECD->getType() == Context.IntTy) {
|
|
|
|
// Make sure the init value is signed.
|
|
|
|
llvm::APSInt IV = ECD->getInitVal();
|
|
|
|
IV.setIsSigned(true);
|
|
|
|
ECD->setInitVal(IV);
|
2008-12-12 05:00:36 +03:00
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
// C++ [dcl.enum]p4: Following the closing brace of an
|
|
|
|
// enum-specifier, each enumerator has the type of its
|
2009-09-09 19:08:12 +04:00
|
|
|
// enumeration.
|
2008-12-12 05:00:36 +03:00
|
|
|
ECD->setType(EnumType);
|
2007-08-29 21:31:48 +04:00
|
|
|
continue; // Already int type.
|
2008-02-26 03:33:57 +03:00
|
|
|
}
|
2007-08-29 21:31:48 +04:00
|
|
|
|
|
|
|
// Determine whether the value fits into an int.
|
|
|
|
llvm::APSInt InitVal = ECD->getInitVal();
|
|
|
|
bool FitsInInt;
|
|
|
|
if (InitVal.isUnsigned() || !InitVal.isNegative())
|
|
|
|
FitsInInt = InitVal.getActiveBits() < IntWidth;
|
|
|
|
else
|
|
|
|
FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
|
|
|
|
|
|
|
|
// If it fits into an integer type, force it. Otherwise force it to match
|
|
|
|
// the enum decl type.
|
|
|
|
QualType NewTy;
|
|
|
|
unsigned NewWidth;
|
|
|
|
bool NewSign;
|
|
|
|
if (FitsInInt) {
|
|
|
|
NewTy = Context.IntTy;
|
|
|
|
NewWidth = IntWidth;
|
|
|
|
NewSign = true;
|
|
|
|
} else if (ECD->getType() == BestType) {
|
|
|
|
// Already the right type!
|
2008-12-12 05:00:36 +03:00
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
// C++ [dcl.enum]p4: Following the closing brace of an
|
|
|
|
// enum-specifier, each enumerator has the type of its
|
2009-09-09 19:08:12 +04:00
|
|
|
// enumeration.
|
2008-12-12 05:00:36 +03:00
|
|
|
ECD->setType(EnumType);
|
2007-08-29 21:31:48 +04:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
NewTy = BestType;
|
|
|
|
NewWidth = BestWidth;
|
|
|
|
NewSign = BestType->isSignedIntegerType();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adjust the APSInt value.
|
|
|
|
InitVal.extOrTrunc(NewWidth);
|
|
|
|
InitVal.setIsSigned(NewSign);
|
|
|
|
ECD->setInitVal(InitVal);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2007-08-29 21:31:48 +04:00
|
|
|
// Adjust the Expr initializer and type.
|
2009-01-15 22:19:42 +03:00
|
|
|
if (ECD->getInitExpr())
|
2009-09-09 19:08:12 +04:00
|
|
|
ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy,
|
2009-10-20 12:27:19 +04:00
|
|
|
CastExpr::CK_IntegralCast,
|
2009-09-09 19:08:12 +04:00
|
|
|
ECD->getInitExpr(),
|
2009-02-07 04:47:29 +03:00
|
|
|
/*isLvalue=*/false));
|
2008-12-12 05:00:36 +03:00
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
// C++ [dcl.enum]p4: Following the closing brace of an
|
|
|
|
// enum-specifier, each enumerator has the type of its
|
2009-09-09 19:08:12 +04:00
|
|
|
// enumeration.
|
2008-12-12 05:00:36 +03:00
|
|
|
ECD->setType(EnumType);
|
|
|
|
else
|
|
|
|
ECD->setType(NewTy);
|
2007-08-29 21:31:48 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-12-11 19:49:14 +03:00
|
|
|
Enum->completeDefinition(Context, BestType);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2009-03-28 22:18:32 +03:00
|
|
|
Sema::DeclPtrTy Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
|
|
|
|
ExprArg expr) {
|
2009-05-01 23:30:39 +04:00
|
|
|
StringLiteral *AsmString = cast<StringLiteral>(expr.takeAs<Expr>());
|
2008-12-13 19:23:55 +03:00
|
|
|
|
2009-05-30 04:08:05 +04:00
|
|
|
FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
|
|
|
|
Loc, AsmString);
|
2009-06-30 06:36:12 +04:00
|
|
|
CurContext->addDecl(New);
|
2009-05-30 04:08:05 +04:00
|
|
|
return DeclPtrTy::make(New);
|
2008-02-08 03:33:21 +03:00
|
|
|
}
|
2009-06-05 06:44:36 +04:00
|
|
|
|
|
|
|
void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
|
|
|
|
SourceLocation PragmaLoc,
|
|
|
|
SourceLocation NameLoc) {
|
2009-10-10 01:13:30 +04:00
|
|
|
Decl *PrevDecl = LookupSingleName(TUScope, Name, LookupOrdinaryName);
|
2009-06-05 06:44:36 +04:00
|
|
|
|
|
|
|
if (PrevDecl) {
|
2009-06-30 06:34:44 +04:00
|
|
|
PrevDecl->addAttr(::new (Context) WeakAttr());
|
2009-07-30 07:15:39 +04:00
|
|
|
} else {
|
|
|
|
(void)WeakUndeclaredIdentifiers.insert(
|
|
|
|
std::pair<IdentifierInfo*,WeakInfo>
|
|
|
|
(Name, WeakInfo((IdentifierInfo*)0, NameLoc)));
|
2009-06-05 06:44:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
|
|
|
|
IdentifierInfo* AliasName,
|
|
|
|
SourceLocation PragmaLoc,
|
|
|
|
SourceLocation NameLoc,
|
|
|
|
SourceLocation AliasNameLoc) {
|
2009-10-10 01:13:30 +04:00
|
|
|
Decl *PrevDecl = LookupSingleName(TUScope, AliasName, LookupOrdinaryName);
|
2009-07-30 07:15:39 +04:00
|
|
|
WeakInfo W = WeakInfo(Name, NameLoc);
|
2009-06-05 06:44:36 +04:00
|
|
|
|
|
|
|
if (PrevDecl) {
|
2009-07-30 07:15:39 +04:00
|
|
|
if (!PrevDecl->hasAttr<AliasAttr>())
|
|
|
|
if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
|
2009-07-31 06:52:19 +04:00
|
|
|
DeclApplyPragmaWeak(TUScope, ND, W);
|
2009-07-30 07:15:39 +04:00
|
|
|
} else {
|
|
|
|
(void)WeakUndeclaredIdentifiers.insert(
|
|
|
|
std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
|
2009-06-05 06:44:36 +04:00
|
|
|
}
|
|
|
|
}
|