2006-11-09 14:32:27 +08:00
|
|
|
//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements semantic analysis for declarations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-11-10 13:29:30 +08:00
|
|
|
#include "Sema.h"
|
|
|
|
#include "clang/AST/Decl.h"
|
2006-11-12 06:59:23 +08:00
|
|
|
#include "clang/AST/Type.h"
|
2006-11-20 07:16:18 +08:00
|
|
|
#include "clang/Parse/DeclSpec.h"
|
2006-11-10 13:29:30 +08:00
|
|
|
#include "clang/Parse/Scope.h"
|
|
|
|
#include "clang/Lex/IdentifierTable.h"
|
2006-11-20 14:49:47 +08:00
|
|
|
#include "clang/Basic/LangOptions.h"
|
2006-11-09 14:32:27 +08:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace clang;
|
|
|
|
|
2006-11-10 13:29:30 +08:00
|
|
|
|
2006-11-20 09:29:42 +08:00
|
|
|
Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const {
|
|
|
|
return dyn_cast_or_null<TypeDecl>(II.getFETokenInfo<Decl>());
|
2006-11-10 13:29:30 +08:00
|
|
|
}
|
|
|
|
|
2006-11-19 10:31:38 +08:00
|
|
|
void Sema::PopScope(SourceLocation Loc, Scope *S) {
|
|
|
|
for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
IdentifierInfo &II = *static_cast<IdentifierInfo*>(*I);
|
|
|
|
Decl *D = II.getFETokenInfo<Decl>();
|
|
|
|
assert(D && "This decl didn't get pushed??");
|
|
|
|
|
2006-11-21 09:21:07 +08:00
|
|
|
II.setFETokenInfo(D->getNext());
|
2006-11-19 10:31:38 +08:00
|
|
|
|
2006-11-21 09:32:20 +08:00
|
|
|
// This will have to be revisited for C++: there we want to nest stuff in
|
|
|
|
// namespace decls etc. Even for C, we might want a top-level translation
|
|
|
|
// unit decl or something.
|
|
|
|
if (!CurFunctionDecl)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Chain this decl to the containing function, it now owns the memory for
|
|
|
|
// the decl.
|
|
|
|
D->setNext(CurFunctionDecl->getDeclChain());
|
|
|
|
CurFunctionDecl->setDeclChain(D);
|
2006-11-19 10:31:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-19 10:43:37 +08:00
|
|
|
/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
|
|
|
|
/// no declarator (e.g. "struct foo;") is parsed.
|
|
|
|
Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
|
|
|
|
// TODO: emit error on 'int;' or 'const enum foo;'.
|
|
|
|
// TODO: emit error on 'typedef int;'
|
|
|
|
// if (!DS.isMissingDeclaratorOk()) Diag(...);
|
|
|
|
|
|
|
|
// TODO: Register 'struct foo;' with the type system as an opaque struct.
|
|
|
|
|
|
|
|
// TODO: Check that we don't already have 'union foo;' or something else
|
|
|
|
// that conflicts.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-10 13:29:30 +08:00
|
|
|
Action::DeclTy *
|
|
|
|
Sema::ParseDeclarator(Scope *S, Declarator &D, ExprTy *Init,
|
|
|
|
DeclTy *LastInGroup) {
|
|
|
|
IdentifierInfo *II = D.getIdentifier();
|
2006-11-19 10:31:38 +08:00
|
|
|
Decl *PrevDecl = 0;
|
|
|
|
|
|
|
|
if (II) {
|
|
|
|
PrevDecl = II->getFETokenInfo<Decl>();
|
|
|
|
|
|
|
|
// TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
|
|
|
|
}
|
2006-11-10 13:29:30 +08:00
|
|
|
|
|
|
|
Decl *New;
|
2006-11-28 12:50:12 +08:00
|
|
|
if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
|
2006-11-19 10:31:38 +08:00
|
|
|
New = ParseTypedefDecl(S, D, PrevDecl);
|
|
|
|
} else if (D.isFunctionDeclarator())
|
2006-11-20 07:32:49 +08:00
|
|
|
New = new FunctionDecl(II, GetTypeForDeclarator(D, S), PrevDecl);
|
2006-11-10 13:29:30 +08:00
|
|
|
else
|
2006-11-20 07:32:49 +08:00
|
|
|
New = new VarDecl(II, GetTypeForDeclarator(D, S), PrevDecl);
|
2006-11-10 13:29:30 +08:00
|
|
|
|
2006-11-19 10:31:38 +08:00
|
|
|
if (!New) return 0;
|
|
|
|
|
|
|
|
|
2006-11-10 13:29:30 +08:00
|
|
|
// If this has an identifier, add it to the scope stack.
|
|
|
|
if (II) {
|
|
|
|
// If PrevDecl includes conflicting name here, emit a diagnostic.
|
|
|
|
II->setFETokenInfo(New);
|
|
|
|
S->AddDecl(II);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a top-level decl that is chained to some other (e.g. int A,B,C;)
|
|
|
|
// remember this in the LastInGroupList list.
|
|
|
|
if (LastInGroup && S->getParent() == 0)
|
|
|
|
LastInGroupList.push_back((Decl*)LastInGroup);
|
|
|
|
|
|
|
|
return New;
|
|
|
|
}
|
|
|
|
|
2006-11-19 10:43:37 +08:00
|
|
|
|
2006-11-21 09:21:07 +08:00
|
|
|
|
|
|
|
Sema::DeclTy *Sema::ParseStartOfFunctionDef(Scope *S, Declarator &D
|
|
|
|
/* TODO: FORMAL ARG INFO.*/) {
|
|
|
|
assert(CurFunctionDecl == 0 && "Function parsing confused");
|
2006-11-10 13:29:30 +08:00
|
|
|
|
2006-11-21 09:21:07 +08:00
|
|
|
FunctionDecl *FD = static_cast<FunctionDecl*>(ParseDeclarator(S, D, 0, 0));
|
|
|
|
CurFunctionDecl = FD;
|
|
|
|
return FD;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sema::DeclTy *Sema::ParseFunctionDefBody(DeclTy *D, StmtTy *Body) {
|
|
|
|
FunctionDecl *FD = static_cast<FunctionDecl*>(D);
|
2006-11-10 13:29:30 +08:00
|
|
|
FD->setBody((Stmt*)Body);
|
|
|
|
|
2006-11-21 09:21:07 +08:00
|
|
|
assert(FD == CurFunctionDecl && "Function parsing confused");
|
|
|
|
CurFunctionDecl = 0;
|
2006-11-10 13:29:30 +08:00
|
|
|
return FD;
|
|
|
|
}
|
|
|
|
|
2006-11-21 09:21:07 +08:00
|
|
|
|
2006-11-20 14:49:47 +08:00
|
|
|
/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
|
|
|
|
/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
|
|
|
|
Decl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II,
|
|
|
|
Scope *S) {
|
|
|
|
if (getLangOptions().C99) // Extension in C99.
|
|
|
|
Diag(Loc, diag::ext_implicit_function_decl, II.getName());
|
|
|
|
else // Legal in C90, but warn about it.
|
|
|
|
Diag(Loc, diag::warn_implicit_function_decl, II.getName());
|
|
|
|
|
|
|
|
// FIXME: handle stuff like:
|
|
|
|
// void foo() { extern float X(); }
|
|
|
|
// void bar() { X(); } <-- implicit decl for X in another scope.
|
|
|
|
|
|
|
|
// Set a Declarator for the implicit definition: int foo();
|
2006-11-28 12:50:12 +08:00
|
|
|
const char *Dummy;
|
2006-11-20 14:49:47 +08:00
|
|
|
DeclSpec DS;
|
2006-11-28 13:30:29 +08:00
|
|
|
bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
|
2006-11-28 12:50:12 +08:00
|
|
|
assert(!Error && "Error setting up implicit decl!");
|
2006-11-20 14:49:47 +08:00
|
|
|
Declarator D(DS, Declarator::BlockContext);
|
2006-12-02 14:21:46 +08:00
|
|
|
D.AddTypeInfo(DeclaratorTypeInfo::getFunction(false, false, 0, 0, Loc));
|
2006-11-20 14:49:47 +08:00
|
|
|
D.SetIdentifier(&II, Loc);
|
|
|
|
|
|
|
|
Decl *Result = static_cast<Decl*>(ParseDeclarator(S, D, 0, 0));
|
|
|
|
|
|
|
|
// Visit this implicit declaration like any other top-level form.
|
|
|
|
LastInGroupList.push_back(Result);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2006-11-19 10:31:38 +08:00
|
|
|
|
|
|
|
Decl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, Decl *PrevDecl) {
|
2006-11-20 07:12:30 +08:00
|
|
|
assert(D.getIdentifier() && "Wrong callback for declspec withotu declarator");
|
2006-11-19 10:31:38 +08:00
|
|
|
|
2006-11-20 07:32:49 +08:00
|
|
|
TypeRef T = GetTypeForDeclarator(D, S);
|
2006-11-20 12:34:45 +08:00
|
|
|
if (T.isNull()) return 0;
|
|
|
|
|
2006-11-20 07:32:49 +08:00
|
|
|
return new TypedefDecl(D.getIdentifier(), T, PrevDecl);
|
2006-11-10 13:29:30 +08:00
|
|
|
}
|
|
|
|
|