
This is a major change on how we represent nested name qualifications in the AST. * The nested name specifier itself and how it's stored is changed. The prefixes for types are handled within the type hierarchy, which makes canonicalization for them super cheap, no memory allocation required. Also translating a type into nested name specifier form becomes a no-op. An identifier is stored as a DependentNameType. The nested name specifier gains a lightweight handle class, to be used instead of passing around pointers, which is similar to what is implemented for TemplateName. There is still one free bit available, and this handle can be used within a PointerUnion and PointerIntPair, which should keep bit-packing aficionados happy. * The ElaboratedType node is removed, all type nodes in which it could previously apply to can now store the elaborated keyword and name qualifier, tail allocating when present. * TagTypes can now point to the exact declaration found when producing these, as opposed to the previous situation of there only existing one TagType per entity. This increases the amount of type sugar retained, and can have several applications, for example in tracking module ownership, and other tools which care about source file origins, such as IWYU. These TagTypes are lazily allocated, in order to limit the increase in AST size. This patch offers a great performance benefit. It greatly improves compilation time for [stdexec](https://github.com/NVIDIA/stdexec). For one datapoint, for `test_on2.cpp` in that project, which is the slowest compiling test, this patch improves `-c` compilation time by about 7.2%, with the `-fsyntax-only` improvement being at ~12%. This has great results on compile-time-tracker as well:  This patch also further enables other optimziations in the future, and will reduce the performance impact of template specialization resugaring when that lands. It has some other miscelaneous drive-by fixes. About the review: Yes the patch is huge, sorry about that. Part of the reason is that I started by the nested name specifier part, before the ElaboratedType part, but that had a huge performance downside, as ElaboratedType is a big performance hog. I didn't have the steam to go back and change the patch after the fact. There is also a lot of internal API changes, and it made sense to remove ElaboratedType in one go, versus removing it from one type at a time, as that would present much more churn to the users. Also, the nested name specifier having a different API avoids missing changes related to how prefixes work now, which could make existing code compile but not work. How to review: The important changes are all in `clang/include/clang/AST` and `clang/lib/AST`, with also important changes in `clang/lib/Sema/TreeTransform.h`. The rest and bulk of the changes are mostly consequences of the changes in API. PS: TagType::getDecl is renamed to `getOriginalDecl` in this patch, just for easier to rebasing. I plan to rename it back after this lands. Fixes #136624 Fixes https://github.com/llvm/llvm-project/issues/43179 Fixes https://github.com/llvm/llvm-project/issues/68670 Fixes https://github.com/llvm/llvm-project/issues/92757
238 lines
8.0 KiB
C++
238 lines
8.0 KiB
C++
//===--- ASTConsumers.cpp - ASTConsumer implementations -------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// AST Consumer Implementations.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Frontend/ASTConsumers.h"
|
|
#include "clang/AST/ASTConsumer.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/AST/PrettyPrinter.h"
|
|
#include "clang/AST/RecordLayout.h"
|
|
#include "clang/AST/RecursiveASTVisitor.h"
|
|
#include "clang/Basic/Diagnostic.h"
|
|
#include "llvm/Support/Timer.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
using namespace clang;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
/// ASTPrinter - Pretty-printer and dumper of ASTs
|
|
|
|
namespace {
|
|
class ASTPrinter : public ASTConsumer,
|
|
public RecursiveASTVisitor<ASTPrinter> {
|
|
typedef RecursiveASTVisitor<ASTPrinter> base;
|
|
|
|
public:
|
|
enum Kind { DumpFull, Dump, Print, None };
|
|
ASTPrinter(std::unique_ptr<raw_ostream> Out, Kind K,
|
|
ASTDumpOutputFormat Format, StringRef FilterString,
|
|
bool DumpLookups = false, bool DumpDeclTypes = false)
|
|
: Out(Out ? *Out : llvm::outs()), OwnedOut(std::move(Out)),
|
|
OutputKind(K), OutputFormat(Format), FilterString(FilterString),
|
|
DumpLookups(DumpLookups), DumpDeclTypes(DumpDeclTypes) {}
|
|
|
|
ASTPrinter(raw_ostream &Out, Kind K, ASTDumpOutputFormat Format,
|
|
StringRef FilterString, bool DumpLookups = false,
|
|
bool DumpDeclTypes = false)
|
|
: Out(Out), OwnedOut(nullptr), OutputKind(K), OutputFormat(Format),
|
|
FilterString(FilterString), DumpLookups(DumpLookups),
|
|
DumpDeclTypes(DumpDeclTypes) {}
|
|
|
|
void HandleTranslationUnit(ASTContext &Context) override {
|
|
TranslationUnitDecl *D = Context.getTranslationUnitDecl();
|
|
|
|
if (FilterString.empty())
|
|
return print(D);
|
|
|
|
TraverseDecl(D);
|
|
}
|
|
|
|
bool shouldWalkTypesOfTypeLocs() const { return false; }
|
|
|
|
bool TraverseDecl(Decl *D) {
|
|
if (D && filterMatches(D)) {
|
|
bool ShowColors = Out.has_colors();
|
|
if (ShowColors)
|
|
Out.changeColor(raw_ostream::BLUE);
|
|
|
|
if (OutputFormat == ADOF_Default)
|
|
Out << (OutputKind != Print ? "Dumping " : "Printing ") << getName(D)
|
|
<< ":\n";
|
|
|
|
if (ShowColors)
|
|
Out.resetColor();
|
|
print(D);
|
|
Out << "\n";
|
|
// Don't traverse child nodes to avoid output duplication.
|
|
return true;
|
|
}
|
|
return base::TraverseDecl(D);
|
|
}
|
|
|
|
private:
|
|
std::string getName(Decl *D) {
|
|
if (isa<NamedDecl>(D))
|
|
return cast<NamedDecl>(D)->getQualifiedNameAsString();
|
|
return "";
|
|
}
|
|
bool filterMatches(Decl *D) {
|
|
return getName(D).find(FilterString) != std::string::npos;
|
|
}
|
|
void print(Decl *D) {
|
|
if (DumpLookups) {
|
|
if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
|
|
if (DC == DC->getPrimaryContext())
|
|
DC->dumpLookups(Out, OutputKind != None, OutputKind == DumpFull);
|
|
else
|
|
Out << "Lookup map is in primary DeclContext "
|
|
<< DC->getPrimaryContext() << "\n";
|
|
} else
|
|
Out << "Not a DeclContext\n";
|
|
} else if (OutputKind == Print) {
|
|
PrintingPolicy Policy(D->getASTContext().getLangOpts());
|
|
Policy.IncludeTagDefinition = true;
|
|
D->print(Out, Policy, /*Indentation=*/0, /*PrintInstantiation=*/true);
|
|
} else if (OutputKind != None) {
|
|
D->dump(Out, OutputKind == DumpFull, OutputFormat);
|
|
}
|
|
|
|
if (DumpDeclTypes) {
|
|
Decl *InnerD = D;
|
|
if (auto *TD = dyn_cast<TemplateDecl>(D))
|
|
if (Decl *TempD = TD->getTemplatedDecl())
|
|
InnerD = TempD;
|
|
|
|
// FIXME: Support OutputFormat in type dumping.
|
|
// FIXME: Support combining -ast-dump-decl-types with -ast-dump-lookups.
|
|
if (auto *VD = dyn_cast<ValueDecl>(InnerD))
|
|
VD->getType().dump(Out, VD->getASTContext());
|
|
if (auto *TD = dyn_cast<TypeDecl>(InnerD)) {
|
|
const ASTContext &Ctx = TD->getASTContext();
|
|
Ctx.getTypeDeclType(TD)->dump(Out, Ctx);
|
|
}
|
|
}
|
|
}
|
|
|
|
raw_ostream &Out;
|
|
std::unique_ptr<raw_ostream> OwnedOut;
|
|
|
|
/// How to output individual declarations.
|
|
Kind OutputKind;
|
|
|
|
/// What format should the output take?
|
|
ASTDumpOutputFormat OutputFormat;
|
|
|
|
/// Which declarations or DeclContexts to display.
|
|
std::string FilterString;
|
|
|
|
/// Whether the primary output is lookup results or declarations. Individual
|
|
/// results will be output with a format determined by OutputKind. This is
|
|
/// incompatible with OutputKind == Print.
|
|
bool DumpLookups;
|
|
|
|
/// Whether to dump the type for each declaration dumped.
|
|
bool DumpDeclTypes;
|
|
};
|
|
|
|
class ASTDeclNodeLister : public ASTConsumer,
|
|
public RecursiveASTVisitor<ASTDeclNodeLister> {
|
|
public:
|
|
ASTDeclNodeLister(raw_ostream *Out = nullptr)
|
|
: Out(Out ? *Out : llvm::outs()) {}
|
|
|
|
void HandleTranslationUnit(ASTContext &Context) override {
|
|
TraverseDecl(Context.getTranslationUnitDecl());
|
|
}
|
|
|
|
bool shouldWalkTypesOfTypeLocs() const { return false; }
|
|
|
|
bool VisitNamedDecl(NamedDecl *D) {
|
|
D->printQualifiedName(Out);
|
|
Out << '\n';
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
raw_ostream &Out;
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
std::unique_ptr<ASTConsumer>
|
|
clang::CreateASTPrinter(std::unique_ptr<raw_ostream> Out,
|
|
StringRef FilterString) {
|
|
return std::make_unique<ASTPrinter>(std::move(Out), ASTPrinter::Print,
|
|
ADOF_Default, FilterString);
|
|
}
|
|
|
|
std::unique_ptr<ASTConsumer>
|
|
clang::CreateASTDumper(std::unique_ptr<raw_ostream> Out, StringRef FilterString,
|
|
bool DumpDecls, bool Deserialize, bool DumpLookups,
|
|
bool DumpDeclTypes, ASTDumpOutputFormat Format) {
|
|
assert((DumpDecls || Deserialize || DumpLookups) && "nothing to dump");
|
|
return std::make_unique<ASTPrinter>(
|
|
std::move(Out),
|
|
Deserialize ? ASTPrinter::DumpFull
|
|
: DumpDecls ? ASTPrinter::Dump : ASTPrinter::None,
|
|
Format, FilterString, DumpLookups, DumpDeclTypes);
|
|
}
|
|
|
|
std::unique_ptr<ASTConsumer>
|
|
clang::CreateASTDumper(raw_ostream &Out, StringRef FilterString, bool DumpDecls,
|
|
bool Deserialize, bool DumpLookups, bool DumpDeclTypes,
|
|
ASTDumpOutputFormat Format) {
|
|
assert((DumpDecls || Deserialize || DumpLookups) && "nothing to dump");
|
|
return std::make_unique<ASTPrinter>(Out,
|
|
Deserialize ? ASTPrinter::DumpFull
|
|
: DumpDecls ? ASTPrinter::Dump
|
|
: ASTPrinter::None,
|
|
Format, FilterString, DumpLookups,
|
|
DumpDeclTypes);
|
|
}
|
|
|
|
std::unique_ptr<ASTConsumer> clang::CreateASTDeclNodeLister() {
|
|
return std::make_unique<ASTDeclNodeLister>(nullptr);
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
/// ASTViewer - AST Visualization
|
|
|
|
namespace {
|
|
class ASTViewer : public ASTConsumer {
|
|
ASTContext *Context = nullptr;
|
|
|
|
public:
|
|
void Initialize(ASTContext &Context) override { this->Context = &Context; }
|
|
|
|
bool HandleTopLevelDecl(DeclGroupRef D) override {
|
|
for (DeclGroupRef::iterator I = D.begin(), E = D.end(); I != E; ++I)
|
|
HandleTopLevelSingleDecl(*I);
|
|
return true;
|
|
}
|
|
|
|
void HandleTopLevelSingleDecl(Decl *D);
|
|
};
|
|
}
|
|
|
|
void ASTViewer::HandleTopLevelSingleDecl(Decl *D) {
|
|
if (isa<FunctionDecl>(D) || isa<ObjCMethodDecl>(D)) {
|
|
D->print(llvm::errs());
|
|
|
|
if (Stmt *Body = D->getBody()) {
|
|
llvm::errs() << '\n';
|
|
Body->viewAST();
|
|
llvm::errs() << '\n';
|
|
}
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<ASTConsumer> clang::CreateASTViewer() {
|
|
return std::make_unique<ASTViewer>();
|
|
}
|