clang-tools 20.0.0git
HeuristicResolver.h
Go to the documentation of this file.
1//===--- HeuristicResolver.h - Resolution of dependent names -----*- C++-*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_HEURISTICRESOLVER_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_HEURISTICRESOLVER_H
11
12#include "clang/AST/Decl.h"
13#include <vector>
14
15namespace clang {
16
17class ASTContext;
18class CallExpr;
19class CXXBasePath;
20class CXXDependentScopeMemberExpr;
21class DeclarationName;
22class DependentScopeDeclRefExpr;
23class NamedDecl;
24class Type;
25class UnresolvedUsingValueDecl;
26
27namespace clangd {
28
29// This class handles heuristic resolution of declarations and types in template
30// code.
31//
32// As a compiler, clang only needs to perform certain types of processing on
33// template code (such as resolving dependent names to declarations, or
34// resolving the type of a dependent expression) after instantiation. Indeed,
35// C++ language features such as template specialization mean such resolution
36// cannot be done accurately before instantiation.
37//
38// However, template code is written and read in uninstantiated form, and clangd
39// would like to provide editor features like go-to-definition in template code
40// where possible. To this end, clangd attempts to resolve declarations and
41// types in uninstantiated code by using heuristics, understanding that the
42// results may not be fully accurate but that this is better than nothing.
43//
44// At this time, the heuristic used is a simple but effective one: assume that
45// template instantiations are based on the primary template definition and not
46// not a specialization. More advanced heuristics may be added in the future.
48public:
49 HeuristicResolver(ASTContext &Ctx) : Ctx(Ctx) {}
50
51 // Try to heuristically resolve certain types of expressions, declarations, or
52 // types to one or more likely-referenced declarations.
53 std::vector<const NamedDecl *>
54 resolveMemberExpr(const CXXDependentScopeMemberExpr *ME) const;
55 std::vector<const NamedDecl *>
56 resolveDeclRefExpr(const DependentScopeDeclRefExpr *RE) const;
57 std::vector<const NamedDecl *>
58 resolveTypeOfCallExpr(const CallExpr *CE) const;
59 std::vector<const NamedDecl *>
60 resolveCalleeOfCallExpr(const CallExpr *CE) const;
61 std::vector<const NamedDecl *>
62 resolveUsingValueDecl(const UnresolvedUsingValueDecl *UUVD) const;
63 std::vector<const NamedDecl *>
64 resolveDependentNameType(const DependentNameType *DNT) const;
65 std::vector<const NamedDecl *> resolveTemplateSpecializationType(
66 const DependentTemplateSpecializationType *DTST) const;
67
68 // Try to heuristically resolve a dependent nested name specifier
69 // to the type it likely denotes. Note that *dependent* name specifiers always
70 // denote types, not namespaces.
71 const Type *
72 resolveNestedNameSpecifierToType(const NestedNameSpecifier *NNS) const;
73
74 // Given the type T of a dependent expression that appears of the LHS of a
75 // "->", heuristically find a corresponding pointee type in whose scope we
76 // could look up the name appearing on the RHS.
77 const Type *getPointeeType(const Type *T) const;
78
79private:
80 ASTContext &Ctx;
81};
82
83} // namespace clangd
84} // namespace clang
85
86#endif
CaptureExpr CE
NodeType Type
std::vector< const NamedDecl * > resolveMemberExpr(const CXXDependentScopeMemberExpr *ME) const
std::vector< const NamedDecl * > resolveDeclRefExpr(const DependentScopeDeclRefExpr *RE) const
const Type * getPointeeType(const Type *T) const
std::vector< const NamedDecl * > resolveDependentNameType(const DependentNameType *DNT) const
std::vector< const NamedDecl * > resolveUsingValueDecl(const UnresolvedUsingValueDecl *UUVD) const
std::vector< const NamedDecl * > resolveCalleeOfCallExpr(const CallExpr *CE) const
const Type * resolveNestedNameSpecifierToType(const NestedNameSpecifier *NNS) const
std::vector< const NamedDecl * > resolveTemplateSpecializationType(const DependentTemplateSpecializationType *DTST) const
std::vector< const NamedDecl * > resolveTypeOfCallExpr(const CallExpr *CE) const
@ Type
An inlay hint that for a type annotation.
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//