2015-11-17 13:33:31 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:14 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-11-17 13:33:31 +01:00
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:14 +01:00
|
|
|
** 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.
|
2015-11-17 13:33:31 +01:00
|
|
|
**
|
2016-01-15 14:57:14 +01:00
|
|
|
** 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.
|
2015-11-17 13:33:31 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
#include <tokeninfocontainer.h>
|
2015-11-18 17:07:44 +01:00
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
#include "clangstring.h"
|
|
|
|
|
#include "cursor.h"
|
2017-12-05 09:42:35 +01:00
|
|
|
#include "tokeninfo.h"
|
2015-11-17 13:33:31 +01:00
|
|
|
#include "sourcelocation.h"
|
|
|
|
|
#include "sourcerange.h"
|
2016-10-11 18:19:12 +02:00
|
|
|
#include "sourcerangecontainer.h"
|
2015-11-17 13:33:31 +01:00
|
|
|
|
2018-01-12 09:44:05 +01:00
|
|
|
#include <utils/qtcfallthrough.h>
|
|
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
namespace ClangBackEnd {
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
TokenInfo::TokenInfo(const CXCursor &cxCursor,
|
2017-11-28 14:12:56 +01:00
|
|
|
CXToken *cxToken,
|
|
|
|
|
CXTranslationUnit cxTranslationUnit,
|
|
|
|
|
std::vector<CXSourceRange> ¤tOutputArgumentRanges)
|
2017-07-20 16:43:16 +02:00
|
|
|
: m_currentOutputArgumentRanges(¤tOutputArgumentRanges),
|
|
|
|
|
m_originalCursor(cxCursor)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2017-11-29 16:08:06 +01:00
|
|
|
const SourceRange sourceRange {cxTranslationUnit,
|
|
|
|
|
clang_getTokenExtent(cxTranslationUnit, *cxToken)};
|
2015-11-17 13:33:31 +01:00
|
|
|
const auto start = sourceRange.start();
|
|
|
|
|
const auto end = sourceRange.end();
|
|
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
m_line = start.line();
|
|
|
|
|
m_column = start.column();
|
|
|
|
|
m_offset = start.offset();
|
|
|
|
|
m_length = end.offset() - start.offset();
|
|
|
|
|
collectKinds(cxTranslationUnit, cxToken, m_originalCursor);
|
2016-03-03 13:02:29 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
TokenInfo::TokenInfo(uint line, uint column, uint length, HighlightingTypes types)
|
2017-07-20 16:43:16 +02:00
|
|
|
: m_line(line),
|
|
|
|
|
m_column(column),
|
|
|
|
|
m_length(length),
|
|
|
|
|
m_types(types)
|
2016-03-03 13:02:29 +01:00
|
|
|
{
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
TokenInfo::TokenInfo(uint line, uint column, uint length, HighlightingType type)
|
2017-07-20 16:43:16 +02:00
|
|
|
: m_line(line),
|
|
|
|
|
m_column(column),
|
|
|
|
|
m_length(length),
|
|
|
|
|
m_types(HighlightingTypes())
|
2016-03-03 13:02:29 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = type;
|
2016-03-03 13:02:29 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::hasInvalidMainType() const
|
2016-03-03 13:02:29 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
return m_types.mainHighlightingType == HighlightingType::Invalid;
|
2016-03-03 13:02:29 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::hasMainType(HighlightingType type) const
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
return m_types.mainHighlightingType == type;
|
2016-03-03 13:02:29 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
unsigned TokenInfo::mixinSize() const {
|
2016-07-17 00:29:33 +02:00
|
|
|
return m_types.mixinHighlightingTypes.size();
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::hasMixinType(HighlightingType type) const
|
2016-03-03 13:02:29 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
auto found = std::find(m_types.mixinHighlightingTypes.begin(),
|
|
|
|
|
m_types.mixinHighlightingTypes.end(),
|
2016-03-03 13:02:29 +01:00
|
|
|
type);
|
|
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
return found != m_types.mixinHighlightingTypes.end();
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::hasMixinTypeAt(uint position, HighlightingType type) const
|
2016-07-17 00:29:33 +02:00
|
|
|
{
|
|
|
|
|
return m_types.mixinHighlightingTypes.size() > position &&
|
|
|
|
|
m_types.mixinHighlightingTypes.at(position) == type;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::hasOnlyType(HighlightingType type) const
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
return m_types.mixinHighlightingTypes.size() == 0 && hasMainType(type);
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::hasFunctionArguments() const
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
return m_originalCursor.argumentCount() > 0;
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
TokenInfo::operator TokenInfoContainer() const
|
2015-11-18 17:07:44 +01:00
|
|
|
{
|
2017-11-28 14:12:56 +01:00
|
|
|
return TokenInfoContainer(m_line, m_column, m_length, m_types, m_token, m_typeSpelling,
|
2018-01-12 09:44:05 +01:00
|
|
|
m_resultTypeSpelling, m_semanticParentTypeSpelling,
|
|
|
|
|
m_accessSpecifier, m_storageClass,
|
2017-11-28 14:12:56 +01:00
|
|
|
m_isIdentifier, m_isInclusion,
|
|
|
|
|
m_isDeclaration, m_isDefinition);
|
2015-11-18 17:07:44 +01:00
|
|
|
}
|
|
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
bool isFinalFunction(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
auto referencedCursor = cursor.referenced();
|
|
|
|
|
if (referencedCursor.hasFinalFunctionAttribute())
|
|
|
|
|
return true;
|
2016-03-03 13:02:29 +01:00
|
|
|
else
|
|
|
|
|
return false;
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool isFunctionInFinalClass(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
auto functionBase = cursor.functionBaseDeclaration();
|
|
|
|
|
if (functionBase.isValid() && functionBase.hasFinalClassAttribute())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::memberReferenceKind(const Cursor &cursor)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
|
|
|
|
if (cursor.isDynamicCall()) {
|
2018-01-12 09:44:05 +01:00
|
|
|
m_storageClass = cursor.storageClass();
|
|
|
|
|
m_accessSpecifier = cursor.accessSpecifier();
|
2015-11-17 13:33:31 +01:00
|
|
|
if (isFinalFunction(cursor) || isFunctionInFinalClass(cursor))
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::Function;
|
2015-11-17 13:33:31 +01:00
|
|
|
else
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::VirtualFunction;
|
2016-03-03 13:02:29 +01:00
|
|
|
} else {
|
|
|
|
|
identifierKind(cursor.referenced(), Recursion::RecursivePass);
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::overloadedDeclRefKind(const Cursor &cursor)
|
2017-06-01 11:00:59 +02:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::Function;
|
2017-06-01 11:00:59 +02:00
|
|
|
|
2017-06-15 17:40:32 +02:00
|
|
|
// CLANG-UPGRADE-CHECK: Workaround still needed?
|
2017-06-01 11:00:59 +02:00
|
|
|
// Workaround https://bugs.llvm.org//show_bug.cgi?id=33256 - SomeType in
|
|
|
|
|
// "using N::SomeType" is mistakenly considered as a CXCursor_OverloadedDeclRef.
|
|
|
|
|
if (cursor.overloadedDeclarationsCount() >= 1
|
2017-08-10 15:24:50 +02:00
|
|
|
&& cursor.overloadedDeclaration(0).kind() != CXCursor_FunctionDecl
|
|
|
|
|
&& cursor.overloadedDeclaration(0).kind() != CXCursor_FunctionTemplate) {
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::Type;
|
2017-06-01 11:00:59 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::variableKind(const Cursor &cursor)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2018-01-12 09:44:05 +01:00
|
|
|
m_storageClass = cursor.storageClass();
|
2015-11-17 13:33:31 +01:00
|
|
|
if (cursor.isLocalVariable())
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::LocalVariable;
|
2015-11-17 13:33:31 +01:00
|
|
|
else
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::GlobalVariable;
|
2016-10-11 18:19:12 +02:00
|
|
|
|
|
|
|
|
if (isOutputArgument())
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::OutputArgument);
|
2016-10-11 18:19:12 +02:00
|
|
|
}
|
|
|
|
|
|
2018-01-12 09:44:05 +01:00
|
|
|
void TokenInfo::fieldKind(const Cursor &cursor)
|
2016-10-11 18:19:12 +02:00
|
|
|
{
|
2018-01-12 09:44:05 +01:00
|
|
|
m_accessSpecifier = cursor.accessSpecifier();
|
|
|
|
|
m_storageClass = cursor.storageClass();
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::Field;
|
2016-10-11 18:19:12 +02:00
|
|
|
|
|
|
|
|
if (isOutputArgument())
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::OutputArgument);
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::isDefinition() const
|
2016-07-17 00:29:33 +02:00
|
|
|
{
|
|
|
|
|
return m_originalCursor.isDefinition();
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::isVirtualMethodDeclarationOrDefinition(const Cursor &cursor) const
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
|
|
|
|
return cursor.isVirtualMethod()
|
2017-07-20 16:43:16 +02:00
|
|
|
&& (m_originalCursor.isDeclaration() || m_originalCursor.isDefinition());
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
2016-07-17 00:29:33 +02:00
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
namespace {
|
|
|
|
|
bool isNotFinalFunction(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
return !cursor.hasFinalFunctionAttribute();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::isRealDynamicCall(const Cursor &cursor) const
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
return m_originalCursor.isDynamicCall() && isNotFinalFunction(cursor);
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::addExtraTypeIfFirstPass(HighlightingType type,
|
2016-03-03 13:02:29 +01:00
|
|
|
Recursion recursion)
|
|
|
|
|
{
|
|
|
|
|
if (recursion == Recursion::FirstPass)
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mixinHighlightingTypes.push_back(type);
|
2016-03-03 13:02:29 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::isArgumentInCurrentOutputArgumentLocations() const
|
2016-10-11 18:19:12 +02:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
auto originalSourceLocation = m_originalCursor.cxSourceLocation();
|
2016-10-11 18:19:12 +02:00
|
|
|
|
|
|
|
|
const auto isNotSameOutputArgument = [&] (const CXSourceRange ¤tSourceRange) {
|
2016-10-12 12:21:47 +02:00
|
|
|
return originalSourceLocation.int_data >= currentSourceRange.begin_int_data
|
|
|
|
|
&& originalSourceLocation.int_data <= currentSourceRange.end_int_data;
|
2016-10-11 18:19:12 +02:00
|
|
|
};
|
|
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
auto found = std::find_if(m_currentOutputArgumentRanges->begin(),
|
|
|
|
|
m_currentOutputArgumentRanges->end(),
|
|
|
|
|
isNotSameOutputArgument);
|
2016-10-11 18:19:12 +02:00
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
bool isOutputArgument = found != m_currentOutputArgumentRanges->end();
|
2016-10-11 18:19:12 +02:00
|
|
|
|
|
|
|
|
return isOutputArgument;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
bool TokenInfo::isOutputArgument() const
|
2016-10-11 18:19:12 +02:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
if (m_currentOutputArgumentRanges->empty())
|
2016-10-11 18:19:12 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return isArgumentInCurrentOutputArgumentLocations();
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::collectOutputArguments(const Cursor &cursor)
|
2016-10-11 18:19:12 +02:00
|
|
|
{
|
2017-07-20 16:43:16 +02:00
|
|
|
cursor.collectOutputArgumentRangesTo(*m_currentOutputArgumentRanges);
|
2016-10-11 18:19:12 +02:00
|
|
|
filterOutPreviousOutputArguments();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2017-07-20 17:59:35 +02:00
|
|
|
uint getEnd(CXSourceRange cxSourceRange)
|
2016-10-11 18:19:12 +02:00
|
|
|
{
|
2017-07-20 17:59:35 +02:00
|
|
|
CXSourceLocation startSourceLocation = clang_getRangeEnd(cxSourceRange);
|
2016-10-11 18:19:12 +02:00
|
|
|
|
2017-07-20 17:59:35 +02:00
|
|
|
uint endOffset;
|
2016-10-11 18:19:12 +02:00
|
|
|
|
2017-07-20 17:59:35 +02:00
|
|
|
clang_getFileLocation(startSourceLocation, nullptr, nullptr, nullptr, &endOffset);
|
2016-10-11 18:19:12 +02:00
|
|
|
|
2017-07-20 17:59:35 +02:00
|
|
|
return endOffset;
|
2016-10-11 18:19:12 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::filterOutPreviousOutputArguments()
|
2016-10-11 18:19:12 +02:00
|
|
|
{
|
|
|
|
|
auto isAfterLocation = [this] (CXSourceRange outputRange) {
|
2017-07-20 17:59:35 +02:00
|
|
|
return getEnd(outputRange) > m_offset;
|
2016-10-11 18:19:12 +02:00
|
|
|
};
|
|
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
auto precedingBegin = std::partition(m_currentOutputArgumentRanges->begin(),
|
|
|
|
|
m_currentOutputArgumentRanges->end(),
|
2016-10-11 18:19:12 +02:00
|
|
|
isAfterLocation);
|
|
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
m_currentOutputArgumentRanges->erase(precedingBegin, m_currentOutputArgumentRanges->end());
|
2016-10-11 18:19:12 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::functionKind(const Cursor &cursor, Recursion recursion)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2018-01-12 09:44:05 +01:00
|
|
|
updateTypeSpelling(cursor, true);
|
|
|
|
|
|
|
|
|
|
m_accessSpecifier = cursor.accessSpecifier();
|
|
|
|
|
m_storageClass = cursor.storageClass();
|
|
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
if (isRealDynamicCall(cursor) || isVirtualMethodDeclarationOrDefinition(cursor))
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::VirtualFunction;
|
2015-11-17 13:33:31 +01:00
|
|
|
else
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types.mainHighlightingType = HighlightingType::Function;
|
2016-03-03 13:02:29 +01:00
|
|
|
|
2017-07-20 17:59:35 +02:00
|
|
|
if (isOutputArgument())
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::OutputArgument);
|
|
|
|
|
|
2016-03-03 13:02:29 +01:00
|
|
|
addExtraTypeIfFirstPass(HighlightingType::Declaration, recursion);
|
2016-07-17 00:29:33 +02:00
|
|
|
|
|
|
|
|
if (isDefinition())
|
|
|
|
|
addExtraTypeIfFirstPass(HighlightingType::FunctionDefinition, recursion);
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2018-01-12 09:44:05 +01:00
|
|
|
Utf8String fullyQualifiedType(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
Utf8String typeSpelling = cursor.type().canonical().utf8Spelling();
|
|
|
|
|
if (typeSpelling.isEmpty()) {
|
|
|
|
|
// Only if it's the namespaces level.
|
|
|
|
|
typeSpelling = cursor.unifiedSymbolResolution();
|
|
|
|
|
typeSpelling.replace(Utf8StringLiteral("c:@N@"), Utf8StringLiteral(""));
|
|
|
|
|
typeSpelling.replace(Utf8StringLiteral("@N@"), Utf8StringLiteral("::"));
|
|
|
|
|
}
|
|
|
|
|
return typeSpelling;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TokenInfo::updateTypeSpelling(const Cursor &cursor, bool functionLike)
|
|
|
|
|
{
|
|
|
|
|
m_typeSpelling = fullyQualifiedType(cursor);
|
|
|
|
|
m_semanticParentTypeSpelling = fullyQualifiedType(cursor.semanticParent());
|
|
|
|
|
if (!functionLike)
|
|
|
|
|
return;
|
|
|
|
|
Type type = cursor.type().canonical();
|
|
|
|
|
m_resultTypeSpelling = type.resultType().utf8Spelling();
|
|
|
|
|
const bool hasSpaceAfterReturnVal
|
|
|
|
|
= m_typeSpelling.constData()[m_resultTypeSpelling.byteSize()] == ' ';
|
|
|
|
|
m_typeSpelling = m_typeSpelling.mid(m_resultTypeSpelling.byteSize()
|
|
|
|
|
+ (hasSpaceAfterReturnVal ? 1 : 0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TokenInfo::referencedTypeKind(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
const Cursor ref = cursor.referenced();
|
|
|
|
|
updateTypeSpelling(ref);
|
|
|
|
|
typeKind(ref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TokenInfo::typeKind(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
m_types.mainHighlightingType = HighlightingType::Type;
|
|
|
|
|
const CXCursorKind kind = cursor.kind();
|
|
|
|
|
switch (kind) {
|
|
|
|
|
default:
|
|
|
|
|
m_types.mainHighlightingType = HighlightingType::Invalid;
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_TemplateRef:
|
|
|
|
|
case CXCursor_NamespaceRef:
|
|
|
|
|
case CXCursor_TypeRef:
|
|
|
|
|
referencedTypeKind(cursor);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_ClassTemplate:
|
|
|
|
|
case CXCursor_ClassTemplatePartialSpecialization:
|
|
|
|
|
case CXCursor_ClassDecl:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::Class);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_UnionDecl:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::Union);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_StructDecl:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::Struct);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_EnumDecl:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::Enum);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_NamespaceAlias:
|
|
|
|
|
case CXCursor_Namespace:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::Namespace);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_TypeAliasDecl:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::TypeAlias);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_TypedefDecl:
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::Typedef);
|
|
|
|
|
return;
|
|
|
|
|
case CXCursor_TemplateTypeParameter:
|
|
|
|
|
case CXCursor_TemplateTemplateParameter:
|
|
|
|
|
case CXCursor_CXXStaticCastExpr:
|
|
|
|
|
case CXCursor_CXXReinterpretCastExpr:
|
|
|
|
|
case CXCursor_ObjCCategoryDecl:
|
|
|
|
|
case CXCursor_ObjCCategoryImplDecl:
|
|
|
|
|
case CXCursor_ObjCImplementationDecl:
|
|
|
|
|
case CXCursor_ObjCInterfaceDecl:
|
|
|
|
|
case CXCursor_ObjCProtocolDecl:
|
|
|
|
|
case CXCursor_ObjCProtocolRef:
|
|
|
|
|
case CXCursor_ObjCClassRef:
|
|
|
|
|
case CXCursor_ObjCSuperClassRef:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::identifierKind(const Cursor &cursor, Recursion recursion)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2018-01-12 09:44:05 +01:00
|
|
|
// For now save type spelling only for declarations.
|
|
|
|
|
if (m_isDeclaration)
|
|
|
|
|
updateTypeSpelling(cursor);
|
2017-09-08 09:33:35 +02:00
|
|
|
|
2018-01-12 09:44:05 +01:00
|
|
|
const CXCursorKind kind = cursor.kind();
|
|
|
|
|
m_isIdentifier = (kind != CXCursor_PreprocessingDirective);
|
|
|
|
|
|
|
|
|
|
switch (kind) {
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_Destructor:
|
|
|
|
|
case CXCursor_Constructor:
|
|
|
|
|
case CXCursor_FunctionDecl:
|
2018-01-12 09:44:05 +01:00
|
|
|
case CXCursor_FunctionTemplate:
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_CallExpr:
|
2016-03-03 13:02:29 +01:00
|
|
|
case CXCursor_CXXMethod: functionKind(cursor, recursion); break;
|
2017-11-15 13:57:55 +01:00
|
|
|
case CXCursor_NonTypeTemplateParameter: m_types.mainHighlightingType = HighlightingType::LocalVariable; break;
|
2016-10-11 18:19:12 +02:00
|
|
|
case CXCursor_ParmDecl:
|
2016-03-03 13:02:29 +01:00
|
|
|
case CXCursor_VarDecl: variableKind(cursor); break;
|
|
|
|
|
case CXCursor_DeclRefExpr: identifierKind(cursor.referenced(), Recursion::RecursivePass); break;
|
|
|
|
|
case CXCursor_MemberRefExpr: memberReferenceKind(cursor); break;
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_FieldDecl:
|
2016-10-11 18:19:12 +02:00
|
|
|
case CXCursor_MemberRef: fieldKind(cursor); break;
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_ObjCIvarDecl:
|
|
|
|
|
case CXCursor_ObjCPropertyDecl:
|
|
|
|
|
case CXCursor_ObjCClassMethodDecl:
|
|
|
|
|
case CXCursor_ObjCInstanceMethodDecl:
|
|
|
|
|
case CXCursor_ObjCSynthesizeDecl:
|
2017-07-20 16:43:16 +02:00
|
|
|
case CXCursor_ObjCDynamicDecl: m_types.mainHighlightingType = HighlightingType::Field; break;
|
2018-01-12 09:44:05 +01:00
|
|
|
case CXCursor_TemplateRef:
|
|
|
|
|
case CXCursor_NamespaceRef:
|
2016-03-03 13:02:29 +01:00
|
|
|
case CXCursor_TypeRef: referencedTypeKind(cursor); break;
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_ClassDecl:
|
2018-01-12 09:44:05 +01:00
|
|
|
case CXCursor_ClassTemplate:
|
2017-06-01 09:58:33 +02:00
|
|
|
case CXCursor_ClassTemplatePartialSpecialization:
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_UnionDecl:
|
|
|
|
|
case CXCursor_StructDecl:
|
2018-01-12 09:44:05 +01:00
|
|
|
case CXCursor_EnumDecl:
|
|
|
|
|
case CXCursor_Namespace: m_types.mixinHighlightingTypes.push_back(HighlightingType::Declaration);
|
|
|
|
|
Q_FALLTHROUGH();
|
|
|
|
|
case CXCursor_TemplateTypeParameter:
|
|
|
|
|
case CXCursor_TemplateTemplateParameter:
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_NamespaceAlias:
|
|
|
|
|
case CXCursor_TypeAliasDecl:
|
2015-12-02 20:57:53 +01:00
|
|
|
case CXCursor_TypedefDecl:
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_CXXStaticCastExpr:
|
|
|
|
|
case CXCursor_CXXReinterpretCastExpr:
|
|
|
|
|
case CXCursor_ObjCCategoryDecl:
|
|
|
|
|
case CXCursor_ObjCCategoryImplDecl:
|
|
|
|
|
case CXCursor_ObjCImplementationDecl:
|
|
|
|
|
case CXCursor_ObjCInterfaceDecl:
|
|
|
|
|
case CXCursor_ObjCProtocolDecl:
|
|
|
|
|
case CXCursor_ObjCProtocolRef:
|
|
|
|
|
case CXCursor_ObjCClassRef:
|
2018-01-12 09:44:05 +01:00
|
|
|
case CXCursor_ObjCSuperClassRef: typeKind(cursor); break;
|
2017-06-01 11:00:59 +02:00
|
|
|
case CXCursor_OverloadedDeclRef: overloadedDeclRefKind(cursor); break;
|
2017-07-20 16:43:16 +02:00
|
|
|
case CXCursor_EnumConstantDecl: m_types.mainHighlightingType = HighlightingType::Enumeration; break;
|
|
|
|
|
case CXCursor_PreprocessingDirective: m_types.mainHighlightingType = HighlightingType::Preprocessor; break;
|
|
|
|
|
case CXCursor_MacroExpansion: m_types.mainHighlightingType = HighlightingType::PreprocessorExpansion; break;
|
|
|
|
|
case CXCursor_MacroDefinition: m_types.mainHighlightingType = HighlightingType::PreprocessorDefinition; break;
|
|
|
|
|
case CXCursor_InclusionDirective: m_types.mainHighlightingType = HighlightingType::StringLiteral; break;
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_LabelRef:
|
2017-07-20 16:43:16 +02:00
|
|
|
case CXCursor_LabelStmt: m_types.mainHighlightingType = HighlightingType::Label; break;
|
2016-03-03 13:02:29 +01:00
|
|
|
default: break;
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
HighlightingType literalKind(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
switch (cursor.kind()) {
|
|
|
|
|
case CXCursor_CharacterLiteral:
|
|
|
|
|
case CXCursor_StringLiteral:
|
2017-09-08 09:33:35 +02:00
|
|
|
case CXCursor_InclusionDirective:
|
2015-11-17 13:33:31 +01:00
|
|
|
case CXCursor_ObjCStringLiteral: return HighlightingType::StringLiteral;
|
|
|
|
|
case CXCursor_IntegerLiteral:
|
|
|
|
|
case CXCursor_ImaginaryLiteral:
|
|
|
|
|
case CXCursor_FloatingLiteral: return HighlightingType::NumberLiteral;
|
|
|
|
|
default: return HighlightingType::Invalid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Q_UNREACHABLE();
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-18 19:09:38 +01:00
|
|
|
bool hasOperatorName(const char *operatorString)
|
|
|
|
|
{
|
|
|
|
|
return std::strncmp(operatorString, "operator", 8) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HighlightingType operatorKind(const Cursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
if (hasOperatorName(cursor.spelling().cString()))
|
|
|
|
|
return HighlightingType::Operator;
|
|
|
|
|
else
|
|
|
|
|
return HighlightingType::Invalid;
|
|
|
|
|
}
|
2015-11-17 13:33:31 +01:00
|
|
|
|
2016-10-11 18:19:12 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
HighlightingType TokenInfo::punctuationKind(const Cursor &cursor)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
2017-06-13 17:24:35 +02:00
|
|
|
HighlightingType highlightingType = HighlightingType::Invalid;
|
|
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
switch (cursor.kind()) {
|
2017-06-13 17:24:35 +02:00
|
|
|
case CXCursor_DeclRefExpr: highlightingType = operatorKind(cursor); break;
|
2016-11-23 16:10:20 +01:00
|
|
|
case CXCursor_Constructor:
|
2017-06-13 17:24:35 +02:00
|
|
|
case CXCursor_CallExpr: collectOutputArguments(cursor); break;
|
|
|
|
|
default: break;
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
2017-06-13 17:24:35 +02:00
|
|
|
|
2017-07-20 17:59:35 +02:00
|
|
|
if (isOutputArgument())
|
|
|
|
|
m_types.mixinHighlightingTypes.push_back(HighlightingType::OutputArgument);
|
|
|
|
|
|
2017-06-13 17:24:35 +02:00
|
|
|
return highlightingType;
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-05-17 16:40:21 +02:00
|
|
|
static HighlightingType highlightingTypeForKeyword(CXTranslationUnit cxTranslationUnit,
|
2017-06-13 13:55:15 +02:00
|
|
|
CXToken *cxToken,
|
|
|
|
|
const Cursor &cursor)
|
2017-05-17 16:40:21 +02:00
|
|
|
{
|
2017-06-13 13:55:15 +02:00
|
|
|
switch (cursor.kind()) {
|
|
|
|
|
case CXCursor_PreprocessingDirective: return HighlightingType::Preprocessor;
|
|
|
|
|
case CXCursor_InclusionDirective: return HighlightingType::StringLiteral;
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-17 16:40:21 +02:00
|
|
|
const ClangString spelling = clang_getTokenSpelling(cxTranslationUnit, *cxToken);
|
2017-06-13 15:46:32 +02:00
|
|
|
if (spelling == "bool"
|
|
|
|
|
|| spelling == "char"
|
|
|
|
|
|| spelling == "char16_t"
|
|
|
|
|
|| spelling == "char32_t"
|
|
|
|
|
|| spelling == "double"
|
|
|
|
|
|| spelling == "float"
|
|
|
|
|
|| spelling == "int"
|
|
|
|
|
|| spelling == "long"
|
|
|
|
|
|| spelling == "short"
|
|
|
|
|
|| spelling == "signed"
|
|
|
|
|
|| spelling == "unsigned"
|
|
|
|
|
|| spelling == "void"
|
|
|
|
|
|| spelling == "wchar_t") {
|
2017-05-17 16:40:21 +02:00
|
|
|
return HighlightingType::PrimitiveType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return HighlightingType::Keyword;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-05 09:42:35 +01:00
|
|
|
void TokenInfo::collectKinds(CXTranslationUnit cxTranslationUnit,
|
2017-05-17 16:40:21 +02:00
|
|
|
CXToken *cxToken, const Cursor &cursor)
|
2015-11-17 13:33:31 +01:00
|
|
|
{
|
|
|
|
|
auto cxTokenKind = clang_getTokenKind(*cxToken);
|
|
|
|
|
|
2017-07-20 16:43:16 +02:00
|
|
|
m_types = HighlightingTypes();
|
2017-11-28 14:12:56 +01:00
|
|
|
m_token = ClangString(clang_getTokenSpelling(cxTranslationUnit, *cxToken));
|
|
|
|
|
|
|
|
|
|
if (cxTokenKind == CXToken_Identifier) {
|
|
|
|
|
m_isDeclaration = cursor.isDeclaration();
|
|
|
|
|
m_isDefinition = cursor.isDefinition();
|
|
|
|
|
}
|
2016-03-03 13:02:29 +01:00
|
|
|
|
2015-11-17 13:33:31 +01:00
|
|
|
switch (cxTokenKind) {
|
2017-07-20 16:43:16 +02:00
|
|
|
case CXToken_Keyword: m_types.mainHighlightingType = highlightingTypeForKeyword(cxTranslationUnit, cxToken, m_originalCursor); break;
|
|
|
|
|
case CXToken_Punctuation: m_types.mainHighlightingType = punctuationKind(cursor); break;
|
2016-03-03 13:02:29 +01:00
|
|
|
case CXToken_Identifier: identifierKind(cursor, Recursion::FirstPass); break;
|
2017-07-20 16:43:16 +02:00
|
|
|
case CXToken_Comment: m_types.mainHighlightingType = HighlightingType::Comment; break;
|
|
|
|
|
case CXToken_Literal: m_types.mainHighlightingType = literalKind(cursor); break;
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
2017-09-08 09:33:35 +02:00
|
|
|
|
|
|
|
|
m_isInclusion = (cursor.kind() == CXCursor_InclusionDirective);
|
2015-11-17 13:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace ClangBackEnd
|