forked from qt-creator/qt-creator
Task-number: QTCREATORBUG-27464 Change-Id: Idbcedd9f9a2e148cb18e53c9dc0b82b52b372d64 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
1275 lines
43 KiB
C++
1275 lines
43 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "ResolveExpression.h"
|
|
|
|
#include "LookupContext.h"
|
|
#include "Overview.h"
|
|
#include "DeprecatedGenTemplateInstance.h"
|
|
#include "CppRewriter.h"
|
|
#include "TypeOfExpression.h"
|
|
|
|
#include <cplusplus/Control.h>
|
|
#include <cplusplus/AST.h>
|
|
#include <cplusplus/Scope.h>
|
|
#include <cplusplus/Names.h>
|
|
#include <cplusplus/Symbols.h>
|
|
#include <cplusplus/Literals.h>
|
|
#include <cplusplus/CoreTypes.h>
|
|
#include <cplusplus/TypeVisitor.h>
|
|
#include <cplusplus/NameVisitor.h>
|
|
#include <cplusplus/Templates.h>
|
|
|
|
#include <QList>
|
|
#include <QDebug>
|
|
#include <QSet>
|
|
|
|
#include <map>
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
static const bool debug = qEnvironmentVariableIsSet("QTC_LOOKUPCONTEXT_DEBUG");
|
|
|
|
namespace {
|
|
|
|
template <typename T>
|
|
static QList<T> removeDuplicates(const QList<T> &results)
|
|
{
|
|
QList<T> uniqueList;
|
|
QSet<T> processed;
|
|
for (const T &r : results) {
|
|
if (processed.contains(r))
|
|
continue;
|
|
|
|
processed.insert(r);
|
|
uniqueList.append(r);
|
|
}
|
|
|
|
return uniqueList;
|
|
}
|
|
|
|
class TypedefsResolver
|
|
{
|
|
public:
|
|
TypedefsResolver(const LookupContext &context) : _context(context) {}
|
|
void resolve(FullySpecifiedType *type, Scope **scope, ClassOrNamespace *binding)
|
|
{
|
|
QSet<Symbol *> visited;
|
|
_binding = binding;
|
|
// Use a hard limit when trying to resolve typedefs. Typedefs in templates can refer to
|
|
// each other, each time enhancing the template argument and thus making it impossible to
|
|
// use an "alreadyResolved" container. FIXME: We might overcome this by resolving the
|
|
// template parameters.
|
|
unsigned maxDepth = 15;
|
|
for (NamedType *namedTy = nullptr; maxDepth && (namedTy = getNamedType(*type)); --maxDepth) {
|
|
QList<LookupItem> namedTypeItems = getNamedTypeItems(namedTy->name(), *scope, _binding);
|
|
|
|
if (Q_UNLIKELY(debug))
|
|
qDebug() << "-- we have" << namedTypeItems.size() << "candidates";
|
|
|
|
if (!findTypedef(namedTypeItems, type, scope, visited))
|
|
break;
|
|
}
|
|
}
|
|
|
|
private:
|
|
NamedType *getNamedType(FullySpecifiedType& type) const
|
|
{
|
|
NamedType *namedTy = type->asNamedType();
|
|
if (! namedTy) {
|
|
if (PointerType *pointerTy = type->asPointerType())
|
|
namedTy = pointerTy->elementType()->asNamedType();
|
|
}
|
|
return namedTy;
|
|
}
|
|
|
|
QList<LookupItem> getNamedTypeItems(const Name *name, Scope *scope,
|
|
ClassOrNamespace *binding) const
|
|
{
|
|
QList<LookupItem> namedTypeItems = typedefsFromScopeUpToFunctionScope(name, scope);
|
|
if (namedTypeItems.isEmpty()) {
|
|
if (binding)
|
|
namedTypeItems = binding->lookup(name);
|
|
if (ClassOrNamespace *scopeCon = _context.lookupType(scope))
|
|
namedTypeItems += scopeCon->lookup(name);
|
|
}
|
|
|
|
return namedTypeItems;
|
|
}
|
|
|
|
/// Return all typedefs with given name from given scope up to function scope.
|
|
static QList<LookupItem> typedefsFromScopeUpToFunctionScope(const Name *name, Scope *scope)
|
|
{
|
|
QList<LookupItem> results;
|
|
if (!scope)
|
|
return results;
|
|
Scope *enclosingBlockScope = nullptr;
|
|
for (Block *block = scope->asBlock(); block;
|
|
block = enclosingBlockScope ? enclosingBlockScope->asBlock() : nullptr) {
|
|
const unsigned memberCount = block->memberCount();
|
|
for (unsigned i = 0; i < memberCount; ++i) {
|
|
Symbol *symbol = block->memberAt(i);
|
|
if (Declaration *declaration = symbol->asDeclaration()) {
|
|
if (isTypedefWithName(declaration, name)) {
|
|
LookupItem item;
|
|
item.setDeclaration(declaration);
|
|
item.setScope(block);
|
|
item.setType(declaration->type());
|
|
results.append(item);
|
|
}
|
|
}
|
|
}
|
|
enclosingBlockScope = block->enclosingScope();
|
|
}
|
|
return results;
|
|
}
|
|
|
|
static bool isTypedefWithName(const Declaration *declaration, const Name *name)
|
|
{
|
|
if (declaration->isTypedef()) {
|
|
const Identifier *identifier = declaration->name()->identifier();
|
|
if (name->identifier()->match(identifier))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool findTypedef(const QList<LookupItem>& namedTypeItems, FullySpecifiedType *type,
|
|
Scope **scope, QSet<Symbol *>& visited)
|
|
{
|
|
bool foundTypedef = false;
|
|
for (const LookupItem &it : namedTypeItems) {
|
|
Symbol *declaration = it.declaration();
|
|
if (declaration && declaration->isTypedef()) {
|
|
if (visited.contains(declaration))
|
|
break;
|
|
visited.insert(declaration);
|
|
|
|
// continue working with the typedefed type and scope
|
|
if (type->type()->isPointerType()) {
|
|
*type = FullySpecifiedType(
|
|
_context.bindings()->control()->pointerType(declaration->type()));
|
|
} else if (type->type()->isReferenceType()) {
|
|
*type = FullySpecifiedType(
|
|
_context.bindings()->control()->referenceType(
|
|
declaration->type(),
|
|
declaration->type()->asReferenceType()->isRvalueReference()));
|
|
} else {
|
|
*type = declaration->type();
|
|
}
|
|
|
|
*scope = it.scope();
|
|
_binding = it.binding();
|
|
foundTypedef = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return foundTypedef;
|
|
}
|
|
|
|
const LookupContext &_context;
|
|
// binding has to be remembered in case of resolving typedefs for templates
|
|
ClassOrNamespace *_binding = nullptr;
|
|
};
|
|
|
|
static int evaluateFunctionArgument(const FullySpecifiedType &actualTy,
|
|
const FullySpecifiedType &formalTy)
|
|
{
|
|
int score = 0;
|
|
if (actualTy.type()->match(formalTy.type())) {
|
|
++score;
|
|
if (actualTy.isConst() == formalTy.isConst())
|
|
++score;
|
|
} else if (actualTy.simplified().type()->match(formalTy.simplified().type())) {
|
|
++score;
|
|
if (actualTy.simplified().isConst() == formalTy.simplified().isConst())
|
|
++score;
|
|
} else {
|
|
PointerType *actualAsPointer = actualTy.type()->asPointerType();
|
|
PointerType *formalAsPointer = formalTy.type()->asPointerType();
|
|
|
|
if (actualAsPointer && formalAsPointer) {
|
|
FullySpecifiedType actualElementType = actualAsPointer->elementType();
|
|
FullySpecifiedType formalElementType = formalAsPointer->elementType();
|
|
if (actualElementType.type()->match(formalElementType.type())) {
|
|
++score;
|
|
if (actualElementType.isConst() == formalElementType.isConst())
|
|
++score;
|
|
}
|
|
}
|
|
}
|
|
|
|
return score;
|
|
}
|
|
|
|
} // end of anonymous namespace
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
// ResolveExpression
|
|
/////////////////////////////////////////////////////////////////////
|
|
ResolveExpression::ResolveExpression(const LookupContext &context,
|
|
const QSet<const Declaration *> &autoDeclarationsBeingResolved)
|
|
: ASTVisitor(context.expressionDocument()->translationUnit()),
|
|
_scope(nullptr),
|
|
_context(context),
|
|
bind(context.expressionDocument()->translationUnit()),
|
|
_autoDeclarationsBeingResolved(autoDeclarationsBeingResolved),
|
|
_reference(false)
|
|
{ }
|
|
|
|
ResolveExpression::~ResolveExpression()
|
|
{ }
|
|
|
|
QList<LookupItem> ResolveExpression::operator()(ExpressionAST *ast, Scope *scope)
|
|
{ return resolve(ast, scope); }
|
|
|
|
QList<LookupItem> ResolveExpression::reference(ExpressionAST *ast, Scope *scope)
|
|
{ return resolve(ast, scope, true); }
|
|
|
|
QList<LookupItem> ResolveExpression::resolve(ExpressionAST *ast, Scope *scope, bool ref)
|
|
{
|
|
if (! scope)
|
|
return QList<LookupItem>();
|
|
|
|
std::swap(_scope, scope);
|
|
std::swap(_reference, ref);
|
|
|
|
const QList<LookupItem> result = expression(ast);
|
|
|
|
std::swap(_reference, ref);
|
|
std::swap(_scope, scope);
|
|
|
|
return result;
|
|
}
|
|
|
|
QList<LookupItem> ResolveExpression::expression(ExpressionAST *ast)
|
|
{
|
|
const QList<LookupItem> previousResults = switchResults(QList<LookupItem>());
|
|
accept(ast);
|
|
return removeDuplicates(switchResults(previousResults));
|
|
}
|
|
|
|
QList<LookupItem> ResolveExpression::switchResults(const QList<LookupItem> &results)
|
|
{
|
|
const QList<LookupItem> previousResults = _results;
|
|
_results = results;
|
|
return previousResults;
|
|
}
|
|
|
|
void ResolveExpression::addResults(const QList<Symbol *> &symbols)
|
|
{
|
|
for (Symbol *symbol : symbols) {
|
|
LookupItem item;
|
|
item.setType(symbol->type());
|
|
item.setScope(symbol->enclosingScope());
|
|
item.setDeclaration(symbol);
|
|
_results.append(item);
|
|
}
|
|
}
|
|
|
|
void ResolveExpression::addResults(const QList<LookupItem> &items)
|
|
{
|
|
_results += items;
|
|
}
|
|
|
|
void ResolveExpression::addResult(const FullySpecifiedType &ty, Scope *scope,
|
|
ClassOrNamespace *binding)
|
|
{
|
|
LookupItem item;
|
|
item.setType(ty);
|
|
item.setScope(scope);
|
|
item.setBinding(binding);
|
|
|
|
_results.append(item);
|
|
}
|
|
|
|
bool ResolveExpression::visit(IdExpressionAST *ast)
|
|
{
|
|
accept(ast->name);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(BinaryExpressionAST *ast)
|
|
{
|
|
if (tokenKind(ast->binary_op_token) == T_COMMA && ast->right_expression && ast->right_expression->asQtMethod() != nullptr) {
|
|
|
|
if (ast->left_expression && ast->left_expression->asQtMethod() != nullptr)
|
|
thisObject();
|
|
else
|
|
accept(ast->left_expression);
|
|
|
|
QtMethodAST *qtMethod = ast->right_expression->asQtMethod();
|
|
if (DeclaratorAST *d = qtMethod->declarator) {
|
|
if (d->core_declarator) {
|
|
if (DeclaratorIdAST *declaratorId = d->core_declarator->asDeclaratorId()) {
|
|
if (NameAST *nameAST = declaratorId->name) {
|
|
if (ClassOrNamespace *binding = baseExpression(_results, T_ARROW)) {
|
|
_results.clear();
|
|
addResults(binding->lookup(nameAST->name));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
accept(ast->left_expression);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(CastExpressionAST *ast)
|
|
{
|
|
Scope *dummyScope = _context.expressionDocument()->globalNamespace();
|
|
FullySpecifiedType ty = bind(ast->type_id, dummyScope);
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ConditionAST *)
|
|
{
|
|
// nothing to do.
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ConditionalExpressionAST *ast)
|
|
{
|
|
if (ast->left_expression)
|
|
accept(ast->left_expression);
|
|
|
|
else if (ast->right_expression)
|
|
accept(ast->right_expression);
|
|
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(CppCastExpressionAST *ast)
|
|
{
|
|
Scope *dummyScope = _context.expressionDocument()->globalNamespace();
|
|
FullySpecifiedType ty = bind(ast->type_id, dummyScope);
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(DeleteExpressionAST *)
|
|
{
|
|
FullySpecifiedType ty(control()->voidType());
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ArrayInitializerAST *)
|
|
{
|
|
// nothing to do.
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(NewExpressionAST *ast)
|
|
{
|
|
if (ast->new_type_id) {
|
|
Scope *dummyScope = _context.expressionDocument()->globalNamespace();
|
|
FullySpecifiedType ty = bind(ast->new_type_id, dummyScope);
|
|
FullySpecifiedType ptrTy(control()->pointerType(ty));
|
|
addResult(ptrTy, _scope);
|
|
}
|
|
// nothing to do.
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(TypeidExpressionAST *)
|
|
{
|
|
const Name *stdName = control()->identifier("std");
|
|
const Name *tiName = control()->identifier("type_info");
|
|
const Name *q = control()->qualifiedNameId(control()->qualifiedNameId(/* :: */ nullptr, stdName), tiName);
|
|
|
|
FullySpecifiedType ty(control()->namedType(q));
|
|
addResult(ty, _scope);
|
|
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(TypenameCallExpressionAST *)
|
|
{
|
|
// nothing to do
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(TypeConstructorCallAST *)
|
|
{
|
|
// nothing to do.
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(SizeofExpressionAST *)
|
|
{
|
|
FullySpecifiedType ty(control()->integerType(IntegerType::Int));
|
|
ty.setUnsigned(true);
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(PointerLiteralAST *)
|
|
{
|
|
FullySpecifiedType ty(control()->integerType(IntegerType::Int)); // Handling as Int.
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(NumericLiteralAST *ast)
|
|
{
|
|
const Token &tk = tokenAt(ast->literal_token);
|
|
|
|
Type *type = nullptr;
|
|
bool isUnsigned = false;
|
|
|
|
if (tk.is(T_CHAR_LITERAL)) {
|
|
type = control()->integerType(IntegerType::Char);
|
|
} else if (tk.is(T_WIDE_CHAR_LITERAL)) {
|
|
type = control()->integerType(IntegerType::WideChar);
|
|
} else if (tk.is(T_UTF16_CHAR_LITERAL)) {
|
|
type = control()->integerType(IntegerType::Char16);
|
|
} else if (tk.is(T_UTF32_CHAR_LITERAL)) {
|
|
type = control()->integerType(IntegerType::Char32);
|
|
} else if (const NumericLiteral *literal = numericLiteral(ast->literal_token)) {
|
|
isUnsigned = literal->isUnsigned();
|
|
if (literal->isInt())
|
|
type = control()->integerType(IntegerType::Int);
|
|
else if (literal->isLong())
|
|
type = control()->integerType(IntegerType::Long);
|
|
else if (literal->isLongLong())
|
|
type = control()->integerType(IntegerType::LongLong);
|
|
else if (literal->isFloat())
|
|
type = control()->floatType(FloatType::Float);
|
|
else if (literal->isDouble())
|
|
type = control()->floatType(FloatType::Double);
|
|
else if (literal->isLongDouble())
|
|
type = control()->floatType(FloatType::LongDouble);
|
|
else
|
|
type = control()->integerType(IntegerType::Int);
|
|
}
|
|
|
|
FullySpecifiedType ty(type);
|
|
ty.setUnsigned(isUnsigned);
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(BoolLiteralAST *)
|
|
{
|
|
FullySpecifiedType ty(control()->integerType(IntegerType::Bool));
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ThisExpressionAST *)
|
|
{
|
|
thisObject();
|
|
return false;
|
|
}
|
|
|
|
void ResolveExpression::thisObject()
|
|
{
|
|
Scope *scope = _scope;
|
|
for (; scope; scope = scope->enclosingScope()) {
|
|
if (Function *fun = scope->asFunction()) {
|
|
if (Class *klass = scope->enclosingClass()) {
|
|
FullySpecifiedType classTy(control()->namedType(klass->name()));
|
|
FullySpecifiedType ptrTy(control()->pointerType(classTy));
|
|
addResult(ptrTy, fun->enclosingScope());
|
|
break;
|
|
} else if (const Name *name = fun->name()) {
|
|
if (const QualifiedNameId *q = name->asQualifiedNameId()) {
|
|
if (q->base()) {
|
|
FullySpecifiedType classTy(control()->namedType(q->base()));
|
|
FullySpecifiedType ptrTy(control()->pointerType(classTy));
|
|
addResult(ptrTy, fun->enclosingScope());
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool ResolveExpression::visit(CompoundExpressionAST *ast)
|
|
{
|
|
CompoundStatementAST *cStmt = ast->statement;
|
|
if (cStmt && cStmt->statement_list)
|
|
accept(cStmt->statement_list->lastValue());
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(LambdaExpressionAST *ast)
|
|
{
|
|
accept(ast->statement);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ReturnStatementAST *ast)
|
|
{
|
|
accept(ast->expression);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(NestedExpressionAST *ast)
|
|
{
|
|
accept(ast->expression);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(StringLiteralAST *ast)
|
|
{
|
|
const Token &tk = tokenAt(ast->literal_token);
|
|
int intId;
|
|
switch (tk.kind()) {
|
|
case T_WIDE_STRING_LITERAL:
|
|
intId = IntegerType::WideChar;
|
|
break;
|
|
case T_UTF16_STRING_LITERAL:
|
|
intId = IntegerType::Char16;
|
|
break;
|
|
case T_UTF32_STRING_LITERAL:
|
|
intId = IntegerType::Char32;
|
|
break;
|
|
default:
|
|
intId = IntegerType::Char;
|
|
break;
|
|
}
|
|
FullySpecifiedType charTy = control()->integerType(intId);
|
|
charTy.setConst(true);
|
|
FullySpecifiedType ty(control()->pointerType(charTy));
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ThrowExpressionAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(TypeIdAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(UnaryExpressionAST *ast)
|
|
{
|
|
accept(ast->expression);
|
|
unsigned unaryOp = tokenKind(ast->unary_op_token);
|
|
if (unaryOp == T_AMPER) {
|
|
for (LookupItem &p : _results) {
|
|
FullySpecifiedType ty = p.type();
|
|
ty.setType(control()->pointerType(ty));
|
|
p.setType(ty);
|
|
}
|
|
} else if (unaryOp == T_STAR) {
|
|
for (int i = 0; i < _results.size(); ++i) {
|
|
LookupItem &p = _results[i];
|
|
FullySpecifiedType ty = p.type();
|
|
NamedType *namedTy = ty->asNamedType();
|
|
if (namedTy != nullptr) {
|
|
const QList<LookupItem> types = _context.lookup(namedTy->name(), p.scope());
|
|
if (!types.empty())
|
|
ty = types.front().type();
|
|
}
|
|
bool added = false;
|
|
if (PointerType *ptrTy = ty->asPointerType()) {
|
|
p.setType(ptrTy->elementType());
|
|
added = true;
|
|
} else if (namedTy != nullptr) {
|
|
const Name *starOp = control()->operatorNameId(OperatorNameId::StarOp);
|
|
if (ClassOrNamespace *b = _context.lookupType(namedTy->name(), p.scope(), p.binding())) {
|
|
const QList<LookupItem> results = b->find(starOp);
|
|
for (const LookupItem &r : results) {
|
|
Symbol *overload = r.declaration();
|
|
if (Function *funTy = overload->type()->asFunctionType()) {
|
|
if (maybeValidPrototype(funTy, 0)) {
|
|
if (Function *proto = instantiate(b->templateId(), funTy)->asFunctionType()) {
|
|
FullySpecifiedType retTy = proto->returnType().simplified();
|
|
p.setType(retTy);
|
|
p.setScope(proto->enclosingScope());
|
|
added = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (!added)
|
|
_results.removeAt(i--);
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(CompoundLiteralAST *ast)
|
|
{
|
|
accept(ast->type_id);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(QualifiedNameAST *ast)
|
|
{
|
|
if (const Name *name = ast->name) {
|
|
const QList<LookupItem> candidates = _context.lookup(name, _scope);
|
|
addResults(candidates);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
namespace {
|
|
|
|
class DeduceAutoCheck : public ASTVisitor
|
|
{
|
|
public:
|
|
DeduceAutoCheck(const Identifier *id, TranslationUnit *tu)
|
|
: ASTVisitor(tu), _id(id), _block(false)
|
|
{
|
|
accept(tu->ast());
|
|
}
|
|
|
|
bool preVisit(AST *) override
|
|
{
|
|
if (_block)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool visit(SimpleNameAST *ast) override
|
|
{
|
|
if (ast->name
|
|
&& ast->name->identifier()
|
|
&& strcmp(ast->name->identifier()->chars(), _id->chars()) == 0) {
|
|
_block = true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool visit(MemberAccessAST *ast) override
|
|
{
|
|
accept(ast->base_expression);
|
|
return false;
|
|
}
|
|
|
|
const Identifier *_id;
|
|
bool _block;
|
|
};
|
|
|
|
class ExpressionDocumentHelper
|
|
{
|
|
public:
|
|
// Set up an expression document with an external Control
|
|
ExpressionDocumentHelper(const QByteArray &utf8code, Control *control)
|
|
: document(Document::create(QLatin1String("<completion>")))
|
|
{
|
|
Control *oldControl = document->swapControl(control);
|
|
delete oldControl->diagnosticClient();
|
|
delete oldControl;
|
|
document->setUtf8Source(utf8code);
|
|
document->parse(Document::ParseExpression);
|
|
document->check();
|
|
}
|
|
|
|
// Ensure that the external Control is not deleted
|
|
~ExpressionDocumentHelper()
|
|
{
|
|
document->swapControl(nullptr);
|
|
}
|
|
|
|
public:
|
|
Document::Ptr document;
|
|
};
|
|
|
|
} // namespace anonymous
|
|
|
|
bool ResolveExpression::visit(SimpleNameAST *ast)
|
|
{
|
|
QList<LookupItem> candidates = _context.lookup(ast->name, _scope);
|
|
QList<LookupItem> newCandidates;
|
|
|
|
for (QList<LookupItem>::iterator it = candidates.begin(); it != candidates.end(); ++ it) {
|
|
LookupItem& item = *it;
|
|
if (!item.type()->isUndefinedType())
|
|
continue;
|
|
|
|
if (item.declaration() == nullptr)
|
|
continue;
|
|
|
|
if (item.type().isAuto()) {
|
|
const Declaration *decl = item.declaration()->asDeclaration();
|
|
if (!decl)
|
|
continue;
|
|
|
|
// Stop on recursive auto declarations
|
|
if (_autoDeclarationsBeingResolved.contains(decl))
|
|
continue;
|
|
|
|
const StringLiteral *initializationString = decl->getInitializer();
|
|
if (initializationString == nullptr)
|
|
continue;
|
|
|
|
const QByteArray &initializer =
|
|
QByteArray::fromRawData(initializationString->chars(),
|
|
initializationString->size()).trimmed();
|
|
|
|
// Skip lambda-function initializers
|
|
if (initializer.length() > 0 && initializer[0] == '[')
|
|
continue;
|
|
|
|
TypeOfExpression exprTyper;
|
|
exprTyper.setExpandTemplates(true);
|
|
Document::Ptr doc = _context.snapshot().document(QString::fromLocal8Bit(decl->fileName()));
|
|
exprTyper.init(doc, _context.snapshot(), _context.bindings(),
|
|
QSet<const Declaration* >(_autoDeclarationsBeingResolved) << decl);
|
|
|
|
const ExpressionDocumentHelper exprHelper(exprTyper.preprocessedExpression(initializer),
|
|
_context.bindings()->control().data());
|
|
const Document::Ptr exprDoc = exprHelper.document;
|
|
|
|
DeduceAutoCheck deduceAuto(ast->name->identifier(), exprDoc->translationUnit());
|
|
if (deduceAuto._block)
|
|
continue;
|
|
|
|
const QList<LookupItem> &typeItems = exprTyper(extractExpressionAST(exprDoc), exprDoc,
|
|
decl->enclosingScope());
|
|
if (typeItems.empty())
|
|
continue;
|
|
|
|
Clone cloner(_context.bindings()->control().data());
|
|
|
|
for (int n = 0; n < typeItems.size(); ++ n) {
|
|
FullySpecifiedType newType = cloner.type(typeItems[n].type(), nullptr);
|
|
if (n == 0) {
|
|
item.setType(newType);
|
|
item.setScope(typeItems[n].scope());
|
|
item.setBinding(typeItems[n].binding());
|
|
} else {
|
|
LookupItem newItem(item);
|
|
newItem.setType(newType);
|
|
newItem.setScope(typeItems[n].scope());
|
|
newItem.setBinding(typeItems[n].binding());
|
|
newCandidates.push_back(newItem);
|
|
}
|
|
}
|
|
} else {
|
|
item.setType(item.declaration()->type());
|
|
item.setScope(item.declaration()->enclosingScope());
|
|
}
|
|
}
|
|
|
|
addResults(candidates);
|
|
addResults(newCandidates);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(TemplateIdAST *ast)
|
|
{
|
|
const QList<LookupItem> candidates = _context.lookup(ast->name, _scope);
|
|
addResults(candidates);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(DestructorNameAST *)
|
|
{
|
|
FullySpecifiedType ty(control()->voidType());
|
|
addResult(ty, _scope);
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(OperatorFunctionIdAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ConversionFunctionIdAST *)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::maybeValidPrototype(Function *funTy, unsigned actualArgumentCount)
|
|
{
|
|
return funTy->maybeValidPrototype(actualArgumentCount);
|
|
}
|
|
|
|
bool ResolveExpression::visit(CallAST *ast)
|
|
{
|
|
const QList<LookupItem> baseResults = resolve(ast->base_expression, _scope);
|
|
|
|
if (ast->base_expression->asLambdaExpression()) {
|
|
_results = baseResults;
|
|
return false;
|
|
}
|
|
|
|
// Compute the types of the actual arguments.
|
|
unsigned actualArgumentCount = 0;
|
|
|
|
QList< QList<LookupItem> > arguments;
|
|
for (ExpressionListAST *exprIt = ast->expression_list; exprIt; exprIt = exprIt->next) {
|
|
if (_reference)
|
|
arguments.append(resolve(exprIt->value, _scope));
|
|
|
|
++actualArgumentCount;
|
|
}
|
|
|
|
if (_reference) {
|
|
typedef std::multimap<int, LookupItem> LookupMap;
|
|
LookupMap sortedResults;
|
|
for (const LookupItem &base : baseResults) {
|
|
if (Function *funTy = base.type()->asFunctionType()) {
|
|
if (! maybeValidPrototype(funTy, actualArgumentCount))
|
|
continue;
|
|
|
|
int score = 0;
|
|
|
|
for (unsigned i = 0, argc = funTy->argumentCount(); i < argc; ++i) {
|
|
if (i >= unsigned(arguments.size()))
|
|
break;
|
|
|
|
const FullySpecifiedType formalTy = funTy->argumentAt(i)->type();
|
|
const QList<LookupItem> actual = arguments.at(i);
|
|
if (actual.isEmpty())
|
|
continue;
|
|
score += evaluateFunctionArgument(actual.first().type(), formalTy);
|
|
}
|
|
|
|
sortedResults.insert(LookupMap::value_type(-score, base));
|
|
}
|
|
}
|
|
|
|
_results.clear();
|
|
for (LookupMap::const_iterator it = sortedResults.begin(); it != sortedResults.end(); ++it)
|
|
_results.append(it->second);
|
|
if (_results.isEmpty())
|
|
_results = baseResults;
|
|
|
|
return false;
|
|
}
|
|
|
|
const Name *functionCallOp = control()->operatorNameId(OperatorNameId::FunctionCallOp);
|
|
|
|
for (const LookupItem &result : baseResults) {
|
|
FullySpecifiedType ty = result.type().simplified();
|
|
Scope *scope = result.scope();
|
|
|
|
if (NamedType *namedTy = ty->asNamedType()) {
|
|
if (ClassOrNamespace *b = _context.lookupType(namedTy->name(), scope)) {
|
|
if (b->templateId() && result.declaration() && result.declaration()->asTemplate()) {
|
|
// Template class constructor
|
|
addResult(ty.simplified(), scope);
|
|
} else {
|
|
// operator()
|
|
const QList<LookupItem> results = b->find(functionCallOp);
|
|
for (const LookupItem &r : results) {
|
|
Symbol *overload = r.declaration();
|
|
if (Function *funTy = overload->type()->asFunctionType()) {
|
|
if (maybeValidPrototype(funTy, actualArgumentCount)) {
|
|
if (Function *proto = instantiate(namedTy->name(), funTy)->asFunctionType())
|
|
addResult(proto->returnType().simplified(), scope);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
} else if (Function *funTy = ty->asFunctionType()) {
|
|
if (maybeValidPrototype(funTy, actualArgumentCount))
|
|
addResult(funTy->returnType().simplified(), scope, result.binding());
|
|
|
|
} else if (Class *classTy = ty->asClassType()) {
|
|
// Constructor call
|
|
FullySpecifiedType ctorTy = control()->namedType(classTy->name());
|
|
addResult(ctorTy, scope);
|
|
} else if (Template *templateTy = ty->asTemplateType()) {
|
|
// template function
|
|
if (Symbol *declaration = templateTy->declaration()) {
|
|
if (Function *funTy = declaration->asFunction()) {
|
|
if (maybeValidPrototype(funTy, actualArgumentCount))
|
|
addResult(funTy->returnType().simplified(), scope);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (_results.size()>1){
|
|
// move functions with known bindings to begin of results list
|
|
std::stable_partition(_results.begin(), _results.end(), [](const LookupItem &item) -> bool {
|
|
return item.binding();
|
|
});
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ArrayAccessAST *ast)
|
|
{
|
|
const QList<LookupItem> baseResults = resolve(ast->base_expression, _scope);
|
|
const Name *arrayAccessOp = control()->operatorNameId(OperatorNameId::ArrayAccessOp);
|
|
|
|
for (const LookupItem &result : baseResults) {
|
|
FullySpecifiedType ty = result.type().simplified();
|
|
Scope *scope = result.scope();
|
|
|
|
TypedefsResolver typedefsResolver(_context);
|
|
typedefsResolver.resolve(&ty, &scope, result.binding());
|
|
|
|
if (PointerType *ptrTy = ty->asPointerType()) {
|
|
addResult(ptrTy->elementType().simplified(), scope);
|
|
|
|
} else if (ArrayType *arrTy = ty->asArrayType()) {
|
|
addResult(arrTy->elementType().simplified(), scope);
|
|
|
|
} else if (NamedType *namedTy = ty->asNamedType()) {
|
|
if (ClassOrNamespace *b = _context.lookupType(namedTy->name(), scope)) {
|
|
const QList<LookupItem> results = b->find(arrayAccessOp);
|
|
for (const LookupItem &r : results) {
|
|
Symbol *overload = r.declaration();
|
|
if (Function *funTy = overload->type()->asFunctionType()) {
|
|
// ### TODO: check the actual arguments
|
|
addResult(funTy->returnType().simplified(), scope, b);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
QList<LookupItem> ResolveExpression::getMembers(ClassOrNamespace *binding, const Name *memberName) const
|
|
{
|
|
Q_UNUSED(binding)
|
|
Q_UNUSED(memberName)
|
|
|
|
// ### port me
|
|
QList<LookupItem> members;
|
|
#if 0
|
|
const QList<LookupItem> originalMembers = binding->find(memberName);
|
|
|
|
for (const LookupItem &m, originalMembers) {
|
|
if (! m.binding() || ! m.binding()->templateId()) {
|
|
members.append(m);
|
|
continue;
|
|
}
|
|
|
|
Symbol *decl = m.declaration();
|
|
|
|
if (Class *klass = decl->scope()->asClass()) {
|
|
if (klass->templateParameters() != 0) {
|
|
SubstitutionMap map;
|
|
|
|
const TemplateNameId *templateId = m.binding()->templateId();
|
|
unsigned count = qMin(klass->templateParameterCount(), templateId->templateArgumentCount());
|
|
|
|
for (unsigned i = 0; i < count; ++i) {
|
|
map.bind(klass->templateParameterAt(i)->name(), templateId->templateArgumentAt(i));
|
|
}
|
|
|
|
SubstitutionEnvironment env;
|
|
if (m.scope())
|
|
env.switchScope(m.scope());
|
|
env.setContext(_context);
|
|
|
|
env.enter(&map);
|
|
FullySpecifiedType instantiatedTy = rewriteType(decl->type(), &env, _context.control().data());
|
|
|
|
Overview oo;
|
|
oo.showReturnTypes = true;
|
|
oo.showFunctionSignatures = true;
|
|
|
|
qDebug() << "original:" << oo(decl->type(), decl->name()) << "inst:" << oo(instantiatedTy, decl->name());
|
|
|
|
LookupItem newItem;
|
|
newItem = m;
|
|
newItem.setType(instantiatedTy);
|
|
members.append(newItem);
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
return members;
|
|
}
|
|
|
|
bool ResolveExpression::visit(MemberAccessAST *ast)
|
|
{
|
|
// The candidate types for the base expression are stored in
|
|
// _results.
|
|
const QList<LookupItem> baseResults = resolve(ast->base_expression, _scope);
|
|
|
|
// Evaluate the expression-id that follows the access operator.
|
|
const Name *memberName = nullptr;
|
|
if (ast->member_name)
|
|
memberName = ast->member_name->name;
|
|
|
|
// Remember the access operator.
|
|
const int accessOp = tokenKind(ast->access_token);
|
|
|
|
if (ClassOrNamespace *binding = baseExpression(baseResults, accessOp))
|
|
addResults(binding->find(memberName));
|
|
|
|
return false;
|
|
}
|
|
|
|
ClassOrNamespace *ResolveExpression::findClass(const FullySpecifiedType &originalTy, Scope *scope,
|
|
ClassOrNamespace *enclosingBinding) const
|
|
{
|
|
FullySpecifiedType ty = originalTy.simplified();
|
|
ClassOrNamespace *binding = nullptr;
|
|
|
|
if (Class *klass = ty->asClassType()) {
|
|
if (scope->isBlock())
|
|
binding = _context.lookupType(klass->name(), scope, enclosingBinding);
|
|
if (!binding)
|
|
binding = _context.lookupType(klass, enclosingBinding);
|
|
}
|
|
|
|
else if (NamedType *namedTy = ty->asNamedType())
|
|
binding = _context.lookupType(namedTy->name(), scope, enclosingBinding);
|
|
|
|
else if (Function *funTy = ty->asFunctionType())
|
|
return findClass(funTy->returnType(), scope);
|
|
|
|
return binding;
|
|
}
|
|
|
|
ClassOrNamespace *ResolveExpression::baseExpression(const QList<LookupItem> &baseResults,
|
|
int accessOp,
|
|
bool *replacedDotOperator) const
|
|
{
|
|
if (Q_UNLIKELY(debug))
|
|
qDebug() << "In ResolveExpression::baseExpression with" << baseResults.size() << "results...";
|
|
int i = 0;
|
|
Overview oo;
|
|
TypedefsResolver typedefsResolver(_context);
|
|
|
|
for (const LookupItem &r : baseResults) {
|
|
if (!r.type().type() || !r.scope())
|
|
continue;
|
|
FullySpecifiedType ty = r.type().simplified();
|
|
FullySpecifiedType originalType = ty;
|
|
Scope *scope = r.scope();
|
|
|
|
if (Q_UNLIKELY(debug)) {
|
|
qDebug("trying result #%d", ++i);
|
|
qDebug() << "- before typedef resolving we have:" << oo(ty);
|
|
}
|
|
|
|
typedefsResolver.resolve(&ty, &scope, r.binding());
|
|
|
|
if (Q_UNLIKELY(debug))
|
|
qDebug() << "- after typedef resolving:" << oo(ty);
|
|
|
|
if (accessOp == T_ARROW) {
|
|
PointerType *ptrTy = ty->asPointerType();
|
|
if (!ptrTy) {
|
|
if (Function * const func = ty->asFunctionType())
|
|
ptrTy = func->returnType()->asPointerType();
|
|
}
|
|
if (ptrTy) {
|
|
FullySpecifiedType type = ptrTy->elementType();
|
|
if (ClassOrNamespace *binding
|
|
= findClassForTemplateParameterInExpressionScope(r.binding(),
|
|
type)) {
|
|
return binding;
|
|
}
|
|
if (ClassOrNamespace *binding = findClass(type, scope))
|
|
return binding;
|
|
|
|
} else {
|
|
ClassOrNamespace *binding
|
|
= findClassForTemplateParameterInExpressionScope(r.binding(),
|
|
ty);
|
|
|
|
if (! binding)
|
|
binding = findClass(ty, scope, r.binding());
|
|
|
|
if (binding){
|
|
// lookup for overloads of operator->
|
|
|
|
const OperatorNameId *arrowOp
|
|
= control()->operatorNameId(OperatorNameId::ArrowOp);
|
|
const QList<LookupItem> results = binding->find(arrowOp);
|
|
for (const LookupItem &r : results) {
|
|
Symbol *overload = r.declaration();
|
|
if (! overload)
|
|
continue;
|
|
Scope *functionScope = overload->enclosingScope();
|
|
|
|
FullySpecifiedType overloadType = r.type();
|
|
if (! overloadType.isValid())
|
|
overloadType = overload->type();
|
|
|
|
Function *instantiatedFunction = nullptr;
|
|
|
|
if (overloadType->isFunctionType()) {
|
|
FullySpecifiedType overloadTy
|
|
= instantiate(binding->templateId(), overload);
|
|
instantiatedFunction = overloadTy->asFunctionType();
|
|
} else if (overloadType->isTemplateType()
|
|
&& overloadType->asTemplateType()->declaration()
|
|
&& overloadType->asTemplateType()->declaration()->isFunction()) {
|
|
instantiatedFunction = overloadType->asTemplateType()->declaration()->asFunction();
|
|
}
|
|
|
|
if (instantiatedFunction != nullptr) {
|
|
|
|
FullySpecifiedType retTy
|
|
= instantiatedFunction->returnType().simplified();
|
|
|
|
typedefsResolver.resolve(&retTy, &functionScope, r.binding());
|
|
|
|
if (! retTy->isPointerType() && ! retTy->isNamedType())
|
|
continue;
|
|
|
|
if (PointerType *ptrTy = retTy->asPointerType())
|
|
retTy = ptrTy->elementType();
|
|
|
|
if (ClassOrNamespace *retBinding = findClass(retTy, functionScope))
|
|
return retBinding;
|
|
|
|
if (scope != functionScope) {
|
|
if (ClassOrNamespace *retBinding = findClass(retTy, scope))
|
|
return retBinding;
|
|
}
|
|
|
|
if (ClassOrNamespace *origin = binding->instantiationOrigin()) {
|
|
const QList<Symbol *> symbols = origin->symbols();
|
|
for (Symbol *originSymbol : symbols) {
|
|
Scope *originScope = originSymbol->asScope();
|
|
if (originScope && originScope != scope
|
|
&& originScope != functionScope) {
|
|
if (ClassOrNamespace *retBinding
|
|
= findClass(retTy, originScope))
|
|
return retBinding;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else if (accessOp == T_DOT) {
|
|
if (replacedDotOperator) {
|
|
*replacedDotOperator = originalType->isPointerType() || ty->isPointerType();
|
|
if (PointerType *ptrTy = ty->asPointerType())
|
|
ty = ptrTy->elementType();
|
|
}
|
|
|
|
if (ClassOrNamespace *binding
|
|
= findClassForTemplateParameterInExpressionScope(r.binding(),
|
|
ty)) {
|
|
return binding;
|
|
}
|
|
|
|
ClassOrNamespace *enclosingBinding = nullptr;
|
|
if (ClassOrNamespace *binding = r.binding()) {
|
|
if (binding->instantiationOrigin())
|
|
enclosingBinding = binding;
|
|
}
|
|
|
|
if (ClassOrNamespace *binding = findClass(ty, scope, enclosingBinding))
|
|
return binding;
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
ClassOrNamespace *ResolveExpression::findClassForTemplateParameterInExpressionScope(
|
|
ClassOrNamespace *resultBinding,
|
|
const FullySpecifiedType &ty) const
|
|
{
|
|
if (resultBinding) {
|
|
if (ClassOrNamespace *origin = resultBinding->instantiationOrigin()) {
|
|
const QList<Symbol *> symbols = origin->symbols();
|
|
for (Symbol *originSymbol : symbols) {
|
|
if (Scope *originScope = originSymbol->asScope()) {
|
|
if (ClassOrNamespace *retBinding = findClass(ty, originScope))
|
|
return retBinding;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
FullySpecifiedType ResolveExpression::instantiate(const Name *className, Symbol *candidate) const
|
|
{
|
|
return DeprecatedGenTemplateInstance::instantiate(className, candidate,
|
|
_context.bindings()->control());
|
|
}
|
|
|
|
bool ResolveExpression::visit(PostIncrDecrAST *ast)
|
|
{
|
|
const QList<LookupItem> baseResults = resolve(ast->base_expression, _scope);
|
|
_results = baseResults;
|
|
return false;
|
|
}
|
|
|
|
bool ResolveExpression::visit(ObjCMessageExpressionAST *ast)
|
|
{
|
|
const QList<LookupItem> receiverResults = resolve(ast->receiver_expression, _scope);
|
|
|
|
for (const LookupItem &result : receiverResults) {
|
|
FullySpecifiedType ty = result.type().simplified();
|
|
ClassOrNamespace *binding = nullptr;
|
|
|
|
if (ObjCClass *clazz = ty->asObjCClassType()) {
|
|
// static access, e.g.:
|
|
// [NSObject description];
|
|
binding = _context.lookupType(clazz);
|
|
} else if (PointerType *ptrTy = ty->asPointerType()) {
|
|
if (NamedType *namedTy = ptrTy->elementType()->asNamedType()) {
|
|
// dynamic access, e.g.:
|
|
// NSObject *obj = ...; [obj release];
|
|
binding = _context.lookupType(namedTy->name(), result.scope());
|
|
}
|
|
}
|
|
|
|
if (binding) {
|
|
const QList<LookupItem> results = binding->lookup(ast->selector->name);
|
|
for (const LookupItem &r : results) {
|
|
Symbol *s = r.declaration();
|
|
if (ObjCMethod *m = s->asObjCMethod())
|
|
addResult(m->returnType(), result.scope());
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
const LookupContext &ResolveExpression::context() const
|
|
{
|
|
return _context;
|
|
}
|