forked from qt-creator/qt-creator
768 lines
27 KiB
C++
768 lines
27 KiB
C++
/**************************************************************************
|
|
**
|
|
** This file is part of Qt Creator
|
|
**
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
**
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
**
|
|
** Commercial Usage
|
|
**
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Nokia.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
**
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** If you are unsure which license is appropriate for your use, please
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
**
|
|
**************************************************************************/
|
|
// Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
#include "CheckDeclaration.h"
|
|
#include "Semantic.h"
|
|
#include "AST.h"
|
|
#include "TranslationUnit.h"
|
|
#include "Scope.h"
|
|
#include "Names.h"
|
|
#include "CoreTypes.h"
|
|
#include "Symbols.h"
|
|
#include "Control.h"
|
|
#include "Literals.h"
|
|
#include <cassert>
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
CheckDeclaration::CheckDeclaration(Semantic *semantic)
|
|
: SemanticCheck(semantic),
|
|
_declaration(0),
|
|
_scope(0),
|
|
_templateParameters(0),
|
|
_checkAnonymousArguments(false)
|
|
{ }
|
|
|
|
CheckDeclaration::~CheckDeclaration()
|
|
{ }
|
|
|
|
void CheckDeclaration::check(DeclarationAST *declaration,
|
|
Scope *scope, TemplateParameters *templateParameters)
|
|
{
|
|
Scope *previousScope = switchScope(scope);
|
|
TemplateParameters *previousTemplateParameters = switchTemplateParameters(templateParameters);
|
|
DeclarationAST *previousDeclaration = switchDeclaration(declaration);
|
|
accept(declaration);
|
|
(void) switchDeclaration(previousDeclaration);
|
|
(void) switchTemplateParameters(previousTemplateParameters);
|
|
(void) switchScope(previousScope);
|
|
}
|
|
|
|
DeclarationAST *CheckDeclaration::switchDeclaration(DeclarationAST *declaration)
|
|
{
|
|
DeclarationAST *previousDeclaration = _declaration;
|
|
_declaration = declaration;
|
|
return previousDeclaration;
|
|
}
|
|
|
|
Scope *CheckDeclaration::switchScope(Scope *scope)
|
|
{
|
|
Scope *previousScope = _scope;
|
|
_scope = scope;
|
|
return previousScope;
|
|
}
|
|
|
|
TemplateParameters *CheckDeclaration::switchTemplateParameters(TemplateParameters *templateParameters)
|
|
{
|
|
TemplateParameters *previousTemplateParameters = _templateParameters;
|
|
_templateParameters = templateParameters;
|
|
return previousTemplateParameters;
|
|
}
|
|
|
|
void CheckDeclaration::checkFunctionArguments(Function *fun)
|
|
{
|
|
if (! _checkAnonymousArguments)
|
|
return;
|
|
|
|
if (_scope->isClassScope() && fun->isPublic()) {
|
|
for (unsigned argc = 0; argc < fun->argumentCount(); ++argc) {
|
|
Argument *arg = fun->argumentAt(argc)->asArgument();
|
|
assert(arg != 0);
|
|
|
|
if (! arg->name()) {
|
|
translationUnit()->warning(arg->sourceLocation(),
|
|
"anonymous argument");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
unsigned CheckDeclaration::locationOfDeclaratorId(DeclaratorAST *declarator) const
|
|
{
|
|
if (declarator && declarator->core_declarator) {
|
|
if (DeclaratorIdAST *declaratorId = declarator->core_declarator->asDeclaratorId())
|
|
return declaratorId->firstToken();
|
|
else if (NestedDeclaratorAST *nested = declarator->core_declarator->asNestedDeclarator())
|
|
return locationOfDeclaratorId(nested->declarator);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(SimpleDeclarationAST *ast)
|
|
{
|
|
FullySpecifiedType ty = semantic()->check(ast->decl_specifier_list, _scope);
|
|
FullySpecifiedType qualTy = ty.qualifiedType();
|
|
|
|
if (_templateParameters && ty) {
|
|
if (Class *klass = ty->asClassType()) {
|
|
klass->setTemplateParameters(_templateParameters);
|
|
}
|
|
}
|
|
|
|
if (! ast->declarator_list && ast->decl_specifier_list && ! ast->decl_specifier_list->next) {
|
|
if (ElaboratedTypeSpecifierAST *elab_type_spec = ast->decl_specifier_list->value->asElaboratedTypeSpecifier()) {
|
|
|
|
unsigned sourceLocation = elab_type_spec->firstToken();
|
|
|
|
if (elab_type_spec->name)
|
|
sourceLocation = elab_type_spec->name->firstToken();
|
|
|
|
Name *name = semantic()->check(elab_type_spec->name, _scope);
|
|
ForwardClassDeclaration *symbol =
|
|
control()->newForwardClassDeclaration(sourceLocation, name);
|
|
|
|
if (_templateParameters) {
|
|
symbol->setTemplateParameters(_templateParameters);
|
|
_templateParameters = 0;
|
|
}
|
|
|
|
_scope->enterSymbol(symbol);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
const bool isQ_SLOT = ast->qt_invokable_token && tokenKind(ast->qt_invokable_token) == T_Q_SLOT;
|
|
const bool isQ_SIGNAL = ast->qt_invokable_token && tokenKind(ast->qt_invokable_token) == T_Q_SIGNAL;
|
|
|
|
List<Declaration *> **decl_it = &ast->symbols;
|
|
for (DeclaratorListAST *it = ast->declarator_list; it; it = it->next) {
|
|
Name *name = 0;
|
|
FullySpecifiedType declTy = semantic()->check(it->value, qualTy,
|
|
_scope, &name);
|
|
|
|
unsigned location = locationOfDeclaratorId(it->value);
|
|
if (! location) {
|
|
if (it->value)
|
|
location = it->value->firstToken();
|
|
else
|
|
location = ast->firstToken();
|
|
}
|
|
|
|
Function *fun = 0;
|
|
if (declTy && 0 != (fun = declTy->asFunctionType())) {
|
|
fun->setSourceLocation(location);
|
|
fun->setScope(_scope);
|
|
fun->setName(name);
|
|
fun->setMethodKey(semantic()->currentMethodKey());
|
|
fun->setVirtual(ty.isVirtual());
|
|
if (isQ_SIGNAL)
|
|
fun->setMethodKey(Function::SignalMethod);
|
|
else if (isQ_SLOT)
|
|
fun->setMethodKey(Function::SlotMethod);
|
|
fun->setVisibility(semantic()->currentVisibility());
|
|
} else if (semantic()->currentMethodKey() != Function::NormalMethod) {
|
|
translationUnit()->warning(ast->firstToken(),
|
|
"expected a function declaration");
|
|
}
|
|
|
|
Declaration *symbol = control()->newDeclaration(location, name);
|
|
symbol->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
symbol->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
|
|
symbol->setType(control()->integerType(IntegerType::Int));
|
|
symbol->setType(declTy);
|
|
|
|
if (_templateParameters && it == ast->declarator_list && ty && ! ty->isClassType())
|
|
symbol->setTemplateParameters(_templateParameters);
|
|
|
|
symbol->setVisibility(semantic()->currentVisibility());
|
|
|
|
if (ty.isFriend())
|
|
symbol->setStorage(Symbol::Friend);
|
|
else if (ty.isRegister())
|
|
symbol->setStorage(Symbol::Register);
|
|
else if (ty.isStatic())
|
|
symbol->setStorage(Symbol::Static);
|
|
else if (ty.isExtern())
|
|
symbol->setStorage(Symbol::Extern);
|
|
else if (ty.isMutable())
|
|
symbol->setStorage(Symbol::Mutable);
|
|
else if (ty.isTypedef())
|
|
symbol->setStorage(Symbol::Typedef);
|
|
|
|
if (it->value && it->value->initializer) {
|
|
FullySpecifiedType initTy = semantic()->check(it->value->initializer, _scope);
|
|
}
|
|
|
|
*decl_it = new (translationUnit()->memoryPool()) List<Declaration *>();
|
|
(*decl_it)->value = symbol;
|
|
decl_it = &(*decl_it)->next;
|
|
|
|
_scope->enterSymbol(symbol);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(EmptyDeclarationAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(AccessDeclarationAST *ast)
|
|
{
|
|
int accessSpecifier = tokenKind(ast->access_specifier_token);
|
|
int visibility = semantic()->visibilityForAccessSpecifier(accessSpecifier);
|
|
semantic()->switchVisibility(visibility);
|
|
if (ast->slots_token)
|
|
semantic()->switchMethodKey(Function::SlotMethod);
|
|
else if (accessSpecifier == T_Q_SIGNALS)
|
|
semantic()->switchMethodKey(Function::SignalMethod);
|
|
else
|
|
semantic()->switchMethodKey(Function::NormalMethod);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(AsmDefinitionAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ExceptionDeclarationAST *ast)
|
|
{
|
|
FullySpecifiedType ty = semantic()->check(ast->type_specifier_list, _scope);
|
|
FullySpecifiedType qualTy = ty.qualifiedType();
|
|
|
|
Name *name = 0;
|
|
FullySpecifiedType declTy = semantic()->check(ast->declarator, qualTy,
|
|
_scope, &name);
|
|
|
|
unsigned location = locationOfDeclaratorId(ast->declarator);
|
|
if (! location) {
|
|
if (ast->declarator)
|
|
location = ast->declarator->firstToken();
|
|
else
|
|
location = ast->firstToken();
|
|
}
|
|
|
|
Declaration *symbol = control()->newDeclaration(location, name);
|
|
symbol->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
symbol->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
symbol->setType(declTy);
|
|
_scope->enterSymbol(symbol);
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(FunctionDefinitionAST *ast)
|
|
{
|
|
FullySpecifiedType ty = semantic()->check(ast->decl_specifier_list, _scope);
|
|
FullySpecifiedType qualTy = ty.qualifiedType();
|
|
Name *name = 0;
|
|
FullySpecifiedType funTy = semantic()->check(ast->declarator, qualTy,
|
|
_scope, &name);
|
|
if (! (funTy && funTy->isFunctionType())) {
|
|
translationUnit()->error(ast->firstToken(),
|
|
"expected a function prototype");
|
|
return false;
|
|
}
|
|
|
|
Function *fun = funTy->asFunctionType();
|
|
fun->setVirtual(ty.isVirtual());
|
|
fun->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
fun->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
if (ast->declarator)
|
|
fun->setSourceLocation(ast->declarator->firstToken());
|
|
fun->setName(name);
|
|
fun->setTemplateParameters(_templateParameters);
|
|
fun->setVisibility(semantic()->currentVisibility());
|
|
fun->setMethodKey(semantic()->currentMethodKey());
|
|
|
|
const bool isQ_SLOT = ast->qt_invokable_token && tokenKind(ast->qt_invokable_token) == T_Q_SLOT;
|
|
const bool isQ_SIGNAL = ast->qt_invokable_token && tokenKind(ast->qt_invokable_token) == T_Q_SIGNAL;
|
|
|
|
if (isQ_SIGNAL)
|
|
fun->setMethodKey(Function::SignalMethod);
|
|
else if (isQ_SLOT)
|
|
fun->setMethodKey(Function::SlotMethod);
|
|
|
|
checkFunctionArguments(fun);
|
|
|
|
ast->symbol = fun;
|
|
_scope->enterSymbol(fun);
|
|
|
|
if (! semantic()->skipFunctionBodies()) {
|
|
if (ast->ctor_initializer) {
|
|
bool looksLikeCtor = false;
|
|
if (ty.isValid() || ! fun->identity())
|
|
looksLikeCtor = false;
|
|
else if (fun->identity()->isNameId() || fun->identity()->isTemplateNameId())
|
|
looksLikeCtor = true;
|
|
|
|
if (! looksLikeCtor) {
|
|
translationUnit()->error(ast->ctor_initializer->firstToken(),
|
|
"only constructors take base initializers");
|
|
}
|
|
accept(ast->ctor_initializer);
|
|
}
|
|
|
|
const int previousVisibility = semantic()->switchVisibility(Symbol::Public);
|
|
const int previousMethodKey = semantic()->switchMethodKey(Function::NormalMethod);
|
|
|
|
semantic()->check(ast->function_body, fun->members());
|
|
|
|
semantic()->switchMethodKey(previousMethodKey);
|
|
semantic()->switchVisibility(previousVisibility);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(MemInitializerAST *ast)
|
|
{
|
|
(void) semantic()->check(ast->name, _scope);
|
|
FullySpecifiedType ty = semantic()->check(ast->expression, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(LinkageBodyAST *ast)
|
|
{
|
|
for (DeclarationListAST *decl = ast->declaration_list; decl; decl = decl->next) {
|
|
semantic()->check(decl->value, _scope);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(LinkageSpecificationAST *ast)
|
|
{
|
|
semantic()->check(ast->declaration, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(NamespaceAST *ast)
|
|
{
|
|
Identifier *id = identifier(ast->identifier_token);
|
|
Name *namespaceName = control()->nameId(id);
|
|
|
|
unsigned sourceLocation = ast->firstToken();
|
|
|
|
if (ast->identifier_token)
|
|
sourceLocation = ast->identifier_token;
|
|
|
|
Namespace *ns = control()->newNamespace(sourceLocation, namespaceName);
|
|
ns->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
ns->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
ast->symbol = ns;
|
|
_scope->enterSymbol(ns);
|
|
semantic()->check(ast->linkage_body, ns->members()); // ### we'll do the merge later.
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(NamespaceAliasDefinitionAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ParameterDeclarationAST *ast)
|
|
{
|
|
unsigned sourceLocation = locationOfDeclaratorId(ast->declarator);
|
|
if (! sourceLocation) {
|
|
if (ast->declarator)
|
|
sourceLocation = ast->declarator->firstToken();
|
|
else
|
|
sourceLocation = ast->firstToken();
|
|
}
|
|
|
|
Name *argName = 0;
|
|
FullySpecifiedType ty = semantic()->check(ast->type_specifier_list, _scope);
|
|
FullySpecifiedType argTy = semantic()->check(ast->declarator, ty.qualifiedType(),
|
|
_scope, &argName);
|
|
FullySpecifiedType exprTy = semantic()->check(ast->expression, _scope);
|
|
Argument *arg = control()->newArgument(sourceLocation, argName);
|
|
ast->symbol = arg;
|
|
if (ast->expression)
|
|
arg->setInitializer(true);
|
|
arg->setType(argTy);
|
|
_scope->enterSymbol(arg);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(TemplateDeclarationAST *ast)
|
|
{
|
|
Scope *scope = new Scope(_scope->owner());
|
|
|
|
for (DeclarationListAST *param = ast->template_parameter_list; param; param = param->next) {
|
|
semantic()->check(param->value, scope);
|
|
}
|
|
|
|
semantic()->check(ast->declaration, _scope,
|
|
new TemplateParameters(_templateParameters, scope));
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(TypenameTypeParameterAST *ast)
|
|
{
|
|
unsigned sourceLocation = ast->firstToken();
|
|
if (ast->name)
|
|
sourceLocation = ast->name->firstToken();
|
|
|
|
Name *name = semantic()->check(ast->name, _scope);
|
|
Argument *arg = control()->newArgument(sourceLocation, name); // ### new template type
|
|
ast->symbol = arg;
|
|
_scope->enterSymbol(arg);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(TemplateTypeParameterAST *ast)
|
|
{
|
|
unsigned sourceLocation = ast->firstToken();
|
|
if (ast->name)
|
|
sourceLocation = ast->name->firstToken();
|
|
|
|
Name *name = semantic()->check(ast->name, _scope);
|
|
Argument *arg = control()->newArgument(sourceLocation, name); // ### new template type
|
|
ast->symbol = arg;
|
|
_scope->enterSymbol(arg);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(UsingAST *ast)
|
|
{
|
|
Name *name = semantic()->check(ast->name, _scope);
|
|
|
|
unsigned sourceLocation = ast->firstToken();
|
|
if (ast->name)
|
|
sourceLocation = ast->name->firstToken();
|
|
|
|
UsingDeclaration *u = control()->newUsingDeclaration(sourceLocation, name);
|
|
ast->symbol = u;
|
|
_scope->enterSymbol(u);
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(UsingDirectiveAST *ast)
|
|
{
|
|
Name *name = semantic()->check(ast->name, _scope);
|
|
|
|
unsigned sourceLocation = ast->firstToken();
|
|
if (ast->name)
|
|
sourceLocation = ast->name->firstToken();
|
|
|
|
UsingNamespaceDirective *u = control()->newUsingNamespaceDirective(sourceLocation, name);
|
|
ast->symbol = u;
|
|
_scope->enterSymbol(u);
|
|
|
|
if (! (_scope->isBlockScope() || _scope->isNamespaceScope()))
|
|
translationUnit()->error(ast->firstToken(),
|
|
"using-directive not within namespace or block scope");
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCProtocolForwardDeclarationAST *ast)
|
|
{
|
|
const unsigned sourceLocation = ast->firstToken();
|
|
|
|
List<ObjCForwardProtocolDeclaration *> **symbolIter = &ast->symbols;
|
|
for (ObjCIdentifierListAST *it = ast->identifier_list; it; it = it->next) {
|
|
unsigned declarationLocation;
|
|
if (it->value)
|
|
declarationLocation = it->value->firstToken();
|
|
else
|
|
declarationLocation = sourceLocation;
|
|
|
|
Name *protocolName = semantic()->check(it->value, _scope);
|
|
ObjCForwardProtocolDeclaration *fwdProtocol = control()->newObjCForwardProtocolDeclaration(sourceLocation, protocolName);
|
|
fwdProtocol->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
fwdProtocol->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
|
|
_scope->enterSymbol(fwdProtocol);
|
|
|
|
*symbolIter = new (translationUnit()->memoryPool()) List<ObjCForwardProtocolDeclaration *>();
|
|
(*symbolIter)->value = fwdProtocol;
|
|
symbolIter = &(*symbolIter)->next;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCProtocolDeclarationAST *ast)
|
|
{
|
|
unsigned sourceLocation;
|
|
if (ast->name)
|
|
sourceLocation = ast->name->firstToken();
|
|
else
|
|
sourceLocation = ast->firstToken();
|
|
|
|
Name *protocolName = semantic()->check(ast->name, _scope);
|
|
ObjCProtocol *protocol = control()->newObjCProtocol(sourceLocation, protocolName);
|
|
protocol->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
protocol->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
|
|
if (ast->protocol_refs && ast->protocol_refs->identifier_list) {
|
|
for (ObjCIdentifierListAST *iter = ast->protocol_refs->identifier_list; iter; iter = iter->next) {
|
|
NameAST* name = iter->value;
|
|
Name *protocolName = semantic()->check(name, _scope);
|
|
ObjCBaseProtocol *baseProtocol = control()->newObjCBaseProtocol(name->firstToken(), protocolName);
|
|
protocol->addProtocol(baseProtocol);
|
|
}
|
|
}
|
|
|
|
int previousObjCVisibility = semantic()->switchObjCVisibility(Function::Public);
|
|
for (DeclarationListAST *it = ast->member_declaration_list; it; it = it->next) {
|
|
semantic()->check(it->value, protocol->members());
|
|
}
|
|
(void) semantic()->switchObjCVisibility(previousObjCVisibility);
|
|
|
|
ast->symbol = protocol;
|
|
_scope->enterSymbol(protocol);
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCClassForwardDeclarationAST *ast)
|
|
{
|
|
const unsigned sourceLocation = ast->firstToken();
|
|
|
|
List<ObjCForwardClassDeclaration *> **symbolIter = &ast->symbols;
|
|
for (ObjCIdentifierListAST *it = ast->identifier_list; it; it = it->next) {
|
|
unsigned declarationLocation;
|
|
if (it->value)
|
|
declarationLocation = it->value->firstToken();
|
|
else
|
|
declarationLocation = sourceLocation;
|
|
|
|
Name *className = semantic()->check(it->value, _scope);
|
|
ObjCForwardClassDeclaration *fwdClass = control()->newObjCForwardClassDeclaration(sourceLocation, className);
|
|
fwdClass->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
fwdClass->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
|
|
_scope->enterSymbol(fwdClass);
|
|
|
|
*symbolIter = new (translationUnit()->memoryPool()) List<ObjCForwardClassDeclaration *>();
|
|
(*symbolIter)->value = fwdClass;
|
|
symbolIter = &(*symbolIter)->next;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCClassDeclarationAST *ast)
|
|
{
|
|
unsigned sourceLocation;
|
|
if (ast->class_name)
|
|
sourceLocation = ast->class_name->firstToken();
|
|
else
|
|
sourceLocation = ast->firstToken();
|
|
|
|
Name *className = semantic()->check(ast->class_name, _scope);
|
|
ObjCClass *klass = control()->newObjCClass(sourceLocation, className);
|
|
klass->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
klass->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
ast->symbol = klass;
|
|
|
|
klass->setInterface(ast->interface_token != 0);
|
|
|
|
if (ast->category_name) {
|
|
Name *categoryName = semantic()->check(ast->category_name, _scope);
|
|
klass->setCategoryName(categoryName);
|
|
}
|
|
|
|
if (ast->superclass) {
|
|
Name *superClassName = semantic()->check(ast->superclass, _scope);
|
|
ObjCBaseClass *superKlass = control()->newObjCBaseClass(ast->superclass->firstToken(), superClassName);
|
|
klass->setBaseClass(superKlass);
|
|
}
|
|
|
|
if (ast->protocol_refs && ast->protocol_refs->identifier_list) {
|
|
for (ObjCIdentifierListAST *iter = ast->protocol_refs->identifier_list; iter; iter = iter->next) {
|
|
NameAST* name = iter->value;
|
|
Name *protocolName = semantic()->check(name, _scope);
|
|
ObjCBaseProtocol *baseProtocol = control()->newObjCBaseProtocol(name->firstToken(), protocolName);
|
|
klass->addProtocol(baseProtocol);
|
|
}
|
|
}
|
|
|
|
_scope->enterSymbol(klass);
|
|
|
|
int previousObjCVisibility = semantic()->switchObjCVisibility(Function::Protected);
|
|
|
|
if (ast->inst_vars_decl) {
|
|
for (DeclarationListAST *it = ast->inst_vars_decl->instance_variable_list; it; it = it->next) {
|
|
semantic()->check(it->value, klass->members());
|
|
}
|
|
}
|
|
|
|
(void) semantic()->switchObjCVisibility(Function::Public);
|
|
|
|
for (DeclarationListAST *it = ast->member_declaration_list; it; it = it->next) {
|
|
semantic()->check(it->value, klass->members());
|
|
}
|
|
|
|
(void) semantic()->switchObjCVisibility(previousObjCVisibility);
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCMethodDeclarationAST *ast)
|
|
{
|
|
if (!ast->method_prototype)
|
|
return false;
|
|
|
|
FullySpecifiedType ty = semantic()->check(ast->method_prototype, _scope);
|
|
ObjCMethod *methodType = ty.type()->asObjCMethodType();
|
|
if (!methodType)
|
|
return false;
|
|
|
|
Symbol *symbol;
|
|
if (ast->function_body) {
|
|
if (!semantic()->skipFunctionBodies()) {
|
|
semantic()->check(ast->function_body, methodType->members());
|
|
}
|
|
|
|
symbol = methodType;
|
|
} else {
|
|
Declaration *decl = control()->newDeclaration(ast->firstToken(), methodType->name());
|
|
decl->setType(methodType);
|
|
symbol = decl;
|
|
symbol->setStorage(methodType->storage());
|
|
}
|
|
|
|
symbol->setStartOffset(tokenAt(ast->firstToken()).offset);
|
|
symbol->setEndOffset(tokenAt(ast->lastToken()).offset);
|
|
symbol->setVisibility(semantic()->currentVisibility());
|
|
|
|
_scope->enterSymbol(symbol);
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCVisibilityDeclarationAST *ast)
|
|
{
|
|
int accessSpecifier = tokenKind(ast->visibility_token);
|
|
int visibility = semantic()->visibilityForObjCAccessSpecifier(accessSpecifier);
|
|
semantic()->switchObjCVisibility(visibility);
|
|
return false;
|
|
}
|
|
|
|
enum PropertyAttributes {
|
|
None = 0,
|
|
Assign = 1 << 0,
|
|
Retain = 1 << 1,
|
|
Copy = 1 << 2,
|
|
ReadOnly = 1 << 3,
|
|
ReadWrite = 1 << 4,
|
|
Getter = 1 << 5,
|
|
Setter = 1 << 6,
|
|
NonAtomic = 1 << 7,
|
|
|
|
WritabilityMask = ReadOnly | ReadWrite,
|
|
SetterSemanticsMask = Assign | Retain | Copy,
|
|
};
|
|
|
|
bool CheckDeclaration::checkPropertyAttribute(ObjCPropertyAttributeAST *attrAst,
|
|
int &flags,
|
|
int attr)
|
|
{
|
|
if (flags & attr) {
|
|
translationUnit()->warning(attrAst->attribute_identifier_token,
|
|
"duplicate property attribute \"%s\"",
|
|
spell(attrAst->attribute_identifier_token));
|
|
return false;
|
|
} else {
|
|
flags |= attr;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
bool CheckDeclaration::visit(ObjCPropertyDeclarationAST *ast)
|
|
{
|
|
int propAttrs = None;
|
|
|
|
for (ObjCPropertyAttributeListAST *iter= ast->property_attribute_list; iter; iter = iter->next) {
|
|
ObjCPropertyAttributeAST *attrAst = iter->value;
|
|
if (!attrAst)
|
|
continue;
|
|
|
|
Identifier *attrId = identifier(attrAst->attribute_identifier_token);
|
|
if (attrId == control()->objcGetterId()) {
|
|
if (checkPropertyAttribute(attrAst, propAttrs, Getter)) {
|
|
// TODO: find method declaration for getter
|
|
}
|
|
} else if (attrId == control()->objcSetterId()) {
|
|
if (checkPropertyAttribute(attrAst, propAttrs, Setter)) {
|
|
// TODO: find method declaration for setter
|
|
}
|
|
} else if (attrId == control()->objcReadwriteId()) {
|
|
checkPropertyAttribute(attrAst, propAttrs, ReadWrite);
|
|
} else if (attrId == control()->objcReadonlyId()) {
|
|
checkPropertyAttribute(attrAst, propAttrs, ReadOnly);
|
|
} else if (attrId == control()->objcAssignId()) {
|
|
checkPropertyAttribute(attrAst, propAttrs, Assign);
|
|
} else if (attrId == control()->objcRetainId()) {
|
|
checkPropertyAttribute(attrAst, propAttrs, Retain);
|
|
} else if (attrId == control()->objcCopyId()) {
|
|
checkPropertyAttribute(attrAst, propAttrs, Copy);
|
|
} else if (attrId == control()->objcNonatomicId()) {
|
|
checkPropertyAttribute(attrAst, propAttrs, NonAtomic);
|
|
}
|
|
}
|
|
|
|
if (propAttrs & ReadOnly && propAttrs & ReadWrite)
|
|
// Should this be an error instead of only a warning?
|
|
translationUnit()->warning(ast->property_token,
|
|
"property can have at most one attribute \"readonly\" or \"readwrite\" specified");
|
|
int setterSemAttrs = propAttrs & SetterSemanticsMask;
|
|
if (setterSemAttrs
|
|
&& setterSemAttrs != Assign
|
|
&& setterSemAttrs != Retain
|
|
&& setterSemAttrs != Copy) {
|
|
// Should this be an error instead of only a warning?
|
|
translationUnit()->warning(ast->property_token,
|
|
"property can have at most one attribute \"assign\", \"retain\", or \"copy\" specified");
|
|
}
|
|
|
|
// TODO: Check if the next line is correct (EV)
|
|
semantic()->check(ast->simple_declaration, _scope);
|
|
return false;
|
|
}
|
|
|
|
|