From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/lib/Frontend/ASTConsumers.cpp | 422 +++ clang/lib/Frontend/ASTMerge.cpp | 109 + clang/lib/Frontend/ASTUnit.cpp | 2775 ++++++++++++++++++++ clang/lib/Frontend/CMakeLists.txt | 61 + clang/lib/Frontend/CacheTokens.cpp | 653 +++++ clang/lib/Frontend/ChainedDiagnosticConsumer.cpp | 14 + clang/lib/Frontend/ChainedIncludesSource.cpp | 240 ++ clang/lib/Frontend/CompilerInstance.cpp | 1101 ++++++++ clang/lib/Frontend/CompilerInvocation.cpp | 2236 ++++++++++++++++ .../Frontend/CreateInvocationFromCommandLine.cpp | 91 + clang/lib/Frontend/DependencyFile.cpp | 231 ++ clang/lib/Frontend/DependencyGraph.cpp | 140 + clang/lib/Frontend/DiagnosticRenderer.cpp | 386 +++ clang/lib/Frontend/FrontendAction.cpp | 468 ++++ clang/lib/Frontend/FrontendActions.cpp | 500 ++++ clang/lib/Frontend/FrontendOptions.cpp | 32 + clang/lib/Frontend/HeaderIncludeGen.cpp | 126 + clang/lib/Frontend/InitHeaderSearch.cpp | 672 +++++ clang/lib/Frontend/InitPreprocessor.cpp | 763 ++++++ clang/lib/Frontend/LangStandards.cpp | 43 + clang/lib/Frontend/LayoutOverrideSource.cpp | 206 ++ clang/lib/Frontend/LogDiagnosticPrinter.cpp | 177 ++ clang/lib/Frontend/Makefile | 14 + clang/lib/Frontend/MultiplexConsumer.cpp | 276 ++ clang/lib/Frontend/PrintPreprocessedOutput.cpp | 628 +++++ clang/lib/Frontend/SerializedDiagnosticPrinter.cpp | 592 +++++ clang/lib/Frontend/TextDiagnostic.cpp | 1164 ++++++++ clang/lib/Frontend/TextDiagnosticBuffer.cpp | 60 + clang/lib/Frontend/TextDiagnosticPrinter.cpp | 178 ++ clang/lib/Frontend/VerifyDiagnosticConsumer.cpp | 557 ++++ clang/lib/Frontend/Warnings.cpp | 191 ++ 31 files changed, 15106 insertions(+) create mode 100644 clang/lib/Frontend/ASTConsumers.cpp create mode 100644 clang/lib/Frontend/ASTMerge.cpp create mode 100644 clang/lib/Frontend/ASTUnit.cpp create mode 100644 clang/lib/Frontend/CMakeLists.txt create mode 100644 clang/lib/Frontend/CacheTokens.cpp create mode 100644 clang/lib/Frontend/ChainedDiagnosticConsumer.cpp create mode 100644 clang/lib/Frontend/ChainedIncludesSource.cpp create mode 100644 clang/lib/Frontend/CompilerInstance.cpp create mode 100644 clang/lib/Frontend/CompilerInvocation.cpp create mode 100644 clang/lib/Frontend/CreateInvocationFromCommandLine.cpp create mode 100644 clang/lib/Frontend/DependencyFile.cpp create mode 100644 clang/lib/Frontend/DependencyGraph.cpp create mode 100644 clang/lib/Frontend/DiagnosticRenderer.cpp create mode 100644 clang/lib/Frontend/FrontendAction.cpp create mode 100644 clang/lib/Frontend/FrontendActions.cpp create mode 100644 clang/lib/Frontend/FrontendOptions.cpp create mode 100644 clang/lib/Frontend/HeaderIncludeGen.cpp create mode 100644 clang/lib/Frontend/InitHeaderSearch.cpp create mode 100644 clang/lib/Frontend/InitPreprocessor.cpp create mode 100644 clang/lib/Frontend/LangStandards.cpp create mode 100644 clang/lib/Frontend/LayoutOverrideSource.cpp create mode 100644 clang/lib/Frontend/LogDiagnosticPrinter.cpp create mode 100644 clang/lib/Frontend/Makefile create mode 100644 clang/lib/Frontend/MultiplexConsumer.cpp create mode 100644 clang/lib/Frontend/PrintPreprocessedOutput.cpp create mode 100644 clang/lib/Frontend/SerializedDiagnosticPrinter.cpp create mode 100644 clang/lib/Frontend/TextDiagnostic.cpp create mode 100644 clang/lib/Frontend/TextDiagnosticBuffer.cpp create mode 100644 clang/lib/Frontend/TextDiagnosticPrinter.cpp create mode 100644 clang/lib/Frontend/VerifyDiagnosticConsumer.cpp create mode 100644 clang/lib/Frontend/Warnings.cpp (limited to 'clang/lib/Frontend') diff --git a/clang/lib/Frontend/ASTConsumers.cpp b/clang/lib/Frontend/ASTConsumers.cpp new file mode 100644 index 0000000..390ae09 --- /dev/null +++ b/clang/lib/Frontend/ASTConsumers.cpp @@ -0,0 +1,422 @@ +//===--- ASTConsumers.cpp - ASTConsumer implementations -------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// AST Consumer Implementations. +// +//===----------------------------------------------------------------------===// + +#include "clang/Frontend/ASTConsumers.h" +#include "clang/Basic/Diagnostic.h" +#include "clang/Basic/SourceManager.h" +#include "clang/Basic/FileManager.h" +#include "clang/AST/AST.h" +#include "clang/AST/ASTConsumer.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/RecordLayout.h" +#include "clang/AST/PrettyPrinter.h" +#include "llvm/Module.h" +#include "llvm/Support/Timer.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/Path.h" +using namespace clang; + +//===----------------------------------------------------------------------===// +/// ASTPrinter - Pretty-printer and dumper of ASTs + +namespace { + class ASTPrinter : public ASTConsumer { + raw_ostream &Out; + bool Dump; + + public: + ASTPrinter(raw_ostream* o = NULL, bool Dump = false) + : Out(o? *o : llvm::outs()), Dump(Dump) { } + + virtual void HandleTranslationUnit(ASTContext &Context) { + PrintingPolicy Policy = Context.getPrintingPolicy(); + Policy.Dump = Dump; + Context.getTranslationUnitDecl()->print(Out, Policy, /*Indentation=*/0, + /*PrintInstantiation=*/true); + } + }; +} // end anonymous namespace + +ASTConsumer *clang::CreateASTPrinter(raw_ostream* out) { + return new ASTPrinter(out); +} + +ASTConsumer *clang::CreateASTDumper() { + return new ASTPrinter(0, true); +} + +//===----------------------------------------------------------------------===// +/// ASTViewer - AST Visualization + +namespace { + class ASTViewer : public ASTConsumer { + ASTContext *Context; + public: + void Initialize(ASTContext &Context) { + this->Context = &Context; + } + + virtual bool HandleTopLevelDecl(DeclGroupRef D) { + 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(D) || isa(D)) { + D->print(llvm::errs()); + + if (Stmt *Body = D->getBody()) { + llvm::errs() << '\n'; + Body->viewAST(); + llvm::errs() << '\n'; + } + } +} + + +ASTConsumer *clang::CreateASTViewer() { return new ASTViewer(); } + +//===----------------------------------------------------------------------===// +/// DeclContextPrinter - Decl and DeclContext Visualization + +namespace { + +class DeclContextPrinter : public ASTConsumer { + raw_ostream& Out; +public: + DeclContextPrinter() : Out(llvm::errs()) {} + + void HandleTranslationUnit(ASTContext &C) { + PrintDeclContext(C.getTranslationUnitDecl(), 4); + } + + void PrintDeclContext(const DeclContext* DC, unsigned Indentation); +}; +} // end anonymous namespace + +void DeclContextPrinter::PrintDeclContext(const DeclContext* DC, + unsigned Indentation) { + // Print DeclContext name. + switch (DC->getDeclKind()) { + case Decl::TranslationUnit: + Out << "[translation unit] " << DC; + break; + case Decl::Namespace: { + Out << "[namespace] "; + const NamespaceDecl* ND = cast(DC); + Out << *ND; + break; + } + case Decl::Enum: { + const EnumDecl* ED = cast(DC); + if (ED->isCompleteDefinition()) + Out << "[enum] "; + else + Out << " "; + Out << *ED; + break; + } + case Decl::Record: { + const RecordDecl* RD = cast(DC); + if (RD->isCompleteDefinition()) + Out << "[struct] "; + else + Out << " "; + Out << *RD; + break; + } + case Decl::CXXRecord: { + const CXXRecordDecl* RD = cast(DC); + if (RD->isCompleteDefinition()) + Out << "[class] "; + else + Out << " "; + Out << *RD << ' ' << DC; + break; + } + case Decl::ObjCMethod: + Out << "[objc method]"; + break; + case Decl::ObjCInterface: + Out << "[objc interface]"; + break; + case Decl::ObjCCategory: + Out << "[objc category]"; + break; + case Decl::ObjCProtocol: + Out << "[objc protocol]"; + break; + case Decl::ObjCImplementation: + Out << "[objc implementation]"; + break; + case Decl::ObjCCategoryImpl: + Out << "[objc categoryimpl]"; + break; + case Decl::LinkageSpec: + Out << "[linkage spec]"; + break; + case Decl::Block: + Out << "[block]"; + break; + case Decl::Function: { + const FunctionDecl* FD = cast(DC); + if (FD->doesThisDeclarationHaveABody()) + Out << "[function] "; + else + Out << " "; + Out << *FD; + // Print the parameters. + Out << "("; + bool PrintComma = false; + for (FunctionDecl::param_const_iterator I = FD->param_begin(), + E = FD->param_end(); I != E; ++I) { + if (PrintComma) + Out << ", "; + else + PrintComma = true; + Out << **I; + } + Out << ")"; + break; + } + case Decl::CXXMethod: { + const CXXMethodDecl* D = cast(DC); + if (D->isOutOfLine()) + Out << "[c++ method] "; + else if (D->isImplicit()) + Out << "(c++ method) "; + else + Out << " "; + Out << *D; + // Print the parameters. + Out << "("; + bool PrintComma = false; + for (FunctionDecl::param_const_iterator I = D->param_begin(), + E = D->param_end(); I != E; ++I) { + if (PrintComma) + Out << ", "; + else + PrintComma = true; + Out << **I; + } + Out << ")"; + + // Check the semantic DeclContext. + const DeclContext* SemaDC = D->getDeclContext(); + const DeclContext* LexicalDC = D->getLexicalDeclContext(); + if (SemaDC != LexicalDC) + Out << " [[" << SemaDC << "]]"; + + break; + } + case Decl::CXXConstructor: { + const CXXConstructorDecl* D = cast(DC); + if (D->isOutOfLine()) + Out << "[c++ ctor] "; + else if (D->isImplicit()) + Out << "(c++ ctor) "; + else + Out << " "; + Out << *D; + // Print the parameters. + Out << "("; + bool PrintComma = false; + for (FunctionDecl::param_const_iterator I = D->param_begin(), + E = D->param_end(); I != E; ++I) { + if (PrintComma) + Out << ", "; + else + PrintComma = true; + Out << **I; + } + Out << ")"; + + // Check the semantic DC. + const DeclContext* SemaDC = D->getDeclContext(); + const DeclContext* LexicalDC = D->getLexicalDeclContext(); + if (SemaDC != LexicalDC) + Out << " [[" << SemaDC << "]]"; + break; + } + case Decl::CXXDestructor: { + const CXXDestructorDecl* D = cast(DC); + if (D->isOutOfLine()) + Out << "[c++ dtor] "; + else if (D->isImplicit()) + Out << "(c++ dtor) "; + else + Out << " "; + Out << *D; + // Check the semantic DC. + const DeclContext* SemaDC = D->getDeclContext(); + const DeclContext* LexicalDC = D->getLexicalDeclContext(); + if (SemaDC != LexicalDC) + Out << " [[" << SemaDC << "]]"; + break; + } + case Decl::CXXConversion: { + const CXXConversionDecl* D = cast(DC); + if (D->isOutOfLine()) + Out << "[c++ conversion] "; + else if (D->isImplicit()) + Out << "(c++ conversion) "; + else + Out << " "; + Out << *D; + // Check the semantic DC. + const DeclContext* SemaDC = D->getDeclContext(); + const DeclContext* LexicalDC = D->getLexicalDeclContext(); + if (SemaDC != LexicalDC) + Out << " [[" << SemaDC << "]]"; + break; + } + + default: + llvm_unreachable("a decl that inherits DeclContext isn't handled"); + } + + Out << "\n"; + + // Print decls in the DeclContext. + for (DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end(); + I != E; ++I) { + for (unsigned i = 0; i < Indentation; ++i) + Out << " "; + + Decl::Kind DK = I->getKind(); + switch (DK) { + case Decl::Namespace: + case Decl::Enum: + case Decl::Record: + case Decl::CXXRecord: + case Decl::ObjCMethod: + case Decl::ObjCInterface: + case Decl::ObjCCategory: + case Decl::ObjCProtocol: + case Decl::ObjCImplementation: + case Decl::ObjCCategoryImpl: + case Decl::LinkageSpec: + case Decl::Block: + case Decl::Function: + case Decl::CXXMethod: + case Decl::CXXConstructor: + case Decl::CXXDestructor: + case Decl::CXXConversion: + { + DeclContext* DC = cast(*I); + PrintDeclContext(DC, Indentation+2); + break; + } + case Decl::IndirectField: { + IndirectFieldDecl* IFD = cast(*I); + Out << " " << *IFD << '\n'; + break; + } + case Decl::Label: { + LabelDecl *LD = cast(*I); + Out << "