mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 02:56:06 +00:00

This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. This reapplies r230044 with a fixed configure+make build and updated dependencies and testcase requirements. Over the last iteration this version adds - missing target requirements for testcases that specify an x86 triple, - a missing clangCodeGen.a dependency to libClang.a in the make build. rdar://problem/19104245 llvm-svn: 230423
68 lines
2.0 KiB
C++
68 lines
2.0 KiB
C++
//===--- GeneratePCH.cpp - Sema Consumer for PCH Generation -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the PCHGenerator, which as a SemaConsumer that generates
|
|
// a PCH file.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Serialization/ASTWriter.h"
|
|
#include "clang/AST/ASTConsumer.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/Basic/FileManager.h"
|
|
#include "clang/Lex/Preprocessor.h"
|
|
#include "clang/Sema/SemaConsumer.h"
|
|
#include "llvm/Bitcode/BitstreamWriter.h"
|
|
#include <string>
|
|
|
|
using namespace clang;
|
|
|
|
PCHGenerator::PCHGenerator(const Preprocessor &PP,
|
|
StringRef OutputFile,
|
|
clang::Module *Module,
|
|
StringRef isysroot,
|
|
bool AllowASTWithErrors)
|
|
: PP(PP), OutputFile(OutputFile), Module(Module),
|
|
isysroot(isysroot.str()),
|
|
SemaPtr(nullptr), Stream(Buffer),
|
|
Writer(Stream),
|
|
AllowASTWithErrors(AllowASTWithErrors),
|
|
HasEmittedPCH(false) {
|
|
}
|
|
|
|
PCHGenerator::~PCHGenerator() {
|
|
}
|
|
|
|
void PCHGenerator::HandleTranslationUnit(ASTContext &Ctx) {
|
|
// Don't create a PCH if there were fatal failures during module loading.
|
|
if (PP.getModuleLoader().HadFatalFailure)
|
|
return;
|
|
|
|
bool hasErrors = PP.getDiagnostics().hasErrorOccurred();
|
|
if (hasErrors && !AllowASTWithErrors)
|
|
return;
|
|
|
|
// Emit the PCH file
|
|
assert(SemaPtr && "No Sema?");
|
|
Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
|
|
|
|
if (SerializationFinishedCallback)
|
|
SerializationFinishedCallback(&Buffer);
|
|
|
|
HasEmittedPCH = true;
|
|
}
|
|
|
|
ASTMutationListener *PCHGenerator::GetASTMutationListener() {
|
|
return &Writer;
|
|
}
|
|
|
|
ASTDeserializationListener *PCHGenerator::GetASTDeserializationListener() {
|
|
return &Writer;
|
|
}
|