123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611 |
- //===--- SerializedDiagnosticPrinter.cpp - Serializer for diagnostics -----===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- #include <vector>
- #include "llvm/Support/raw_ostream.h"
- #include "llvm/ADT/StringRef.h"
- #include "llvm/ADT/SmallString.h"
- #include "llvm/ADT/DenseSet.h"
- #include "clang/Basic/SourceManager.h"
- #include "clang/Basic/FileManager.h"
- #include "clang/Basic/Diagnostic.h"
- #include "clang/Basic/Version.h"
- #include "clang/Lex/Lexer.h"
- #include "clang/Frontend/SerializedDiagnosticPrinter.h"
- #include "clang/Frontend/DiagnosticRenderer.h"
- using namespace clang;
- using namespace clang::serialized_diags;
- namespace {
-
- class AbbreviationMap {
- llvm::DenseMap<unsigned, unsigned> Abbrevs;
- public:
- AbbreviationMap() {}
-
- void set(unsigned recordID, unsigned abbrevID) {
- assert(Abbrevs.find(recordID) == Abbrevs.end()
- && "Abbreviation already set.");
- Abbrevs[recordID] = abbrevID;
- }
-
- unsigned get(unsigned recordID) {
- assert(Abbrevs.find(recordID) != Abbrevs.end() &&
- "Abbreviation not set.");
- return Abbrevs[recordID];
- }
- };
-
- typedef llvm::SmallVector<uint64_t, 64> RecordData;
- typedef llvm::SmallVectorImpl<uint64_t> RecordDataImpl;
- class SDiagsWriter;
-
- class SDiagsRenderer : public DiagnosticRenderer {
- SDiagsWriter &Writer;
- RecordData &Record;
- public:
- SDiagsRenderer(SDiagsWriter &Writer, RecordData &Record,
- const SourceManager &SM,
- const LangOptions &LangOpts,
- const DiagnosticOptions &DiagOpts)
- : DiagnosticRenderer(SM, LangOpts, DiagOpts),
- Writer(Writer), Record(Record){}
- virtual ~SDiagsRenderer() {}
-
- protected:
- virtual void emitDiagnosticMessage(SourceLocation Loc,
- PresumedLoc PLoc,
- DiagnosticsEngine::Level Level,
- StringRef Message,
- ArrayRef<CharSourceRange> Ranges,
- const Diagnostic *Info);
-
- virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
- DiagnosticsEngine::Level Level,
- ArrayRef<CharSourceRange> Ranges) {}
-
- virtual void emitBasicNote(StringRef Message);
-
- void emitNote(SourceLocation Loc, StringRef Message);
-
- virtual void emitIncludeLocation(SourceLocation Loc,
- PresumedLoc PLoc);
-
- virtual void emitCodeContext(SourceLocation Loc,
- DiagnosticsEngine::Level Level,
- SmallVectorImpl<CharSourceRange>& Ranges,
- ArrayRef<FixItHint> Hints);
-
- virtual void beginDiagnostic(const Diagnostic *Info,
- DiagnosticsEngine::Level Level);
- virtual void endDiagnostic(const Diagnostic *Info,
- DiagnosticsEngine::Level Level);
- };
-
- class SDiagsWriter : public DiagnosticConsumer {
- friend class SDiagsRenderer;
- public:
- explicit SDiagsWriter(llvm::raw_ostream *os, const DiagnosticOptions &diags)
- : LangOpts(0), DiagOpts(diags),
- Stream(Buffer), OS(os), inNonNoteDiagnostic(false)
- {
- EmitPreamble();
- }
-
- ~SDiagsWriter() {}
-
- void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
- const Diagnostic &Info);
-
- void BeginSourceFile(const LangOptions &LO,
- const Preprocessor *PP) {
- LangOpts = &LO;
- }
- virtual void finish();
- DiagnosticConsumer *clone(DiagnosticsEngine &Diags) const {
- // It makes no sense to clone this.
- return 0;
- }
- private:
- /// \brief Emit the preamble for the serialized diagnostics.
- void EmitPreamble();
-
- /// \brief Emit the BLOCKINFO block.
- void EmitBlockInfoBlock();
- /// \brief Emit the META data block.
- void EmitMetaBlock();
-
- /// \brief Emit a record for a CharSourceRange.
- void EmitCharSourceRange(CharSourceRange R, const SourceManager &SM);
-
- /// \brief Emit the string information for the category.
- unsigned getEmitCategory(unsigned category = 0);
-
- /// \brief Emit the string information for diagnostic flags.
- unsigned getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel,
- unsigned DiagID = 0);
-
- /// \brief Emit (lazily) the file string and retrieved the file identifier.
- unsigned getEmitFile(const char *Filename);
- /// \brief Add SourceLocation information the specified record.
- void AddLocToRecord(SourceLocation Loc, const SourceManager &SM,
- PresumedLoc PLoc, RecordDataImpl &Record,
- unsigned TokSize = 0);
- /// \brief Add SourceLocation information the specified record.
- void AddLocToRecord(SourceLocation Loc, RecordDataImpl &Record,
- const SourceManager &SM,
- unsigned TokSize = 0) {
- AddLocToRecord(Loc, SM, SM.getPresumedLoc(Loc), Record, TokSize);
- }
- /// \brief Add CharSourceRange information the specified record.
- void AddCharSourceRangeToRecord(CharSourceRange R, RecordDataImpl &Record,
- const SourceManager &SM);
- /// \brief The version of the diagnostics file.
- enum { Version = 1 };
- const LangOptions *LangOpts;
- const DiagnosticOptions &DiagOpts;
-
- /// \brief The byte buffer for the serialized content.
- std::vector<unsigned char> Buffer;
- /// \brief The BitStreamWriter for the serialized diagnostics.
- llvm::BitstreamWriter Stream;
- /// \brief The name of the diagnostics file.
- OwningPtr<llvm::raw_ostream> OS;
-
- /// \brief The set of constructed record abbreviations.
- AbbreviationMap Abbrevs;
- /// \brief A utility buffer for constructing record content.
- RecordData Record;
- /// \brief A text buffer for rendering diagnostic text.
- SmallString<256> diagBuf;
-
- /// \brief The collection of diagnostic categories used.
- llvm::DenseSet<unsigned> Categories;
-
- /// \brief The collection of files used.
- llvm::DenseMap<const char *, unsigned> Files;
- typedef llvm::DenseMap<const void *, std::pair<unsigned, llvm::StringRef> >
- DiagFlagsTy;
- /// \brief Map for uniquing strings.
- DiagFlagsTy DiagFlags;
-
- /// \brief Flag indicating whether or not we are in the process of
- /// emitting a non-note diagnostic.
- bool inNonNoteDiagnostic;
- };
- } // end anonymous namespace
- namespace clang {
- namespace serialized_diags {
- DiagnosticConsumer *create(llvm::raw_ostream *OS,
- const DiagnosticOptions &diags) {
- return new SDiagsWriter(OS, diags);
- }
- } // end namespace serialized_diags
- } // end namespace clang
- //===----------------------------------------------------------------------===//
- // Serialization methods.
- //===----------------------------------------------------------------------===//
- /// \brief Emits a block ID in the BLOCKINFO block.
- static void EmitBlockID(unsigned ID, const char *Name,
- llvm::BitstreamWriter &Stream,
- RecordDataImpl &Record) {
- Record.clear();
- Record.push_back(ID);
- Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
-
- // Emit the block name if present.
- if (Name == 0 || Name[0] == 0)
- return;
- Record.clear();
- while (*Name)
- Record.push_back(*Name++);
- Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
- }
- /// \brief Emits a record ID in the BLOCKINFO block.
- static void EmitRecordID(unsigned ID, const char *Name,
- llvm::BitstreamWriter &Stream,
- RecordDataImpl &Record){
- Record.clear();
- Record.push_back(ID);
- while (*Name)
- Record.push_back(*Name++);
- Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
- }
- void SDiagsWriter::AddLocToRecord(SourceLocation Loc,
- const SourceManager &SM,
- PresumedLoc PLoc,
- RecordDataImpl &Record,
- unsigned TokSize) {
- if (PLoc.isInvalid()) {
- // Emit a "sentinel" location.
- Record.push_back((unsigned)0); // File.
- Record.push_back((unsigned)0); // Line.
- Record.push_back((unsigned)0); // Column.
- Record.push_back((unsigned)0); // Offset.
- return;
- }
- Record.push_back(getEmitFile(PLoc.getFilename()));
- Record.push_back(PLoc.getLine());
- Record.push_back(PLoc.getColumn()+TokSize);
- Record.push_back(SM.getFileOffset(Loc));
- }
- void SDiagsWriter::AddCharSourceRangeToRecord(CharSourceRange Range,
- RecordDataImpl &Record,
- const SourceManager &SM) {
- AddLocToRecord(Range.getBegin(), Record, SM);
- unsigned TokSize = 0;
- if (Range.isTokenRange())
- TokSize = Lexer::MeasureTokenLength(Range.getEnd(),
- SM, *LangOpts);
-
- AddLocToRecord(Range.getEnd(), Record, SM, TokSize);
- }
- unsigned SDiagsWriter::getEmitFile(const char *FileName){
- if (!FileName)
- return 0;
-
- unsigned &entry = Files[FileName];
- if (entry)
- return entry;
-
- // Lazily generate the record for the file.
- entry = Files.size();
- RecordData Record;
- Record.push_back(RECORD_FILENAME);
- Record.push_back(entry);
- Record.push_back(0); // For legacy.
- Record.push_back(0); // For legacy.
- StringRef Name(FileName);
- Record.push_back(Name.size());
- Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_FILENAME), Record, Name);
- return entry;
- }
- void SDiagsWriter::EmitCharSourceRange(CharSourceRange R,
- const SourceManager &SM) {
- Record.clear();
- Record.push_back(RECORD_SOURCE_RANGE);
- AddCharSourceRangeToRecord(R, Record, SM);
- Stream.EmitRecordWithAbbrev(Abbrevs.get(RECORD_SOURCE_RANGE), Record);
- }
- /// \brief Emits the preamble of the diagnostics file.
- void SDiagsWriter::EmitPreamble() {
- // Emit the file header.
- Stream.Emit((unsigned)'D', 8);
- Stream.Emit((unsigned)'I', 8);
- Stream.Emit((unsigned)'A', 8);
- Stream.Emit((unsigned)'G', 8);
- EmitBlockInfoBlock();
- EmitMetaBlock();
- }
- static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
- using namespace llvm;
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
- }
- static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
- AddSourceLocationAbbrev(Abbrev);
- AddSourceLocationAbbrev(Abbrev);
- }
- void SDiagsWriter::EmitBlockInfoBlock() {
- Stream.EnterBlockInfoBlock(3);
- using namespace llvm;
- // ==---------------------------------------------------------------------==//
- // The subsequent records and Abbrevs are for the "Meta" block.
- // ==---------------------------------------------------------------------==//
- EmitBlockID(BLOCK_META, "Meta", Stream, Record);
- EmitRecordID(RECORD_VERSION, "Version", Stream, Record);
- BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION));
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
- Abbrevs.set(RECORD_VERSION, Stream.EmitBlockInfoAbbrev(BLOCK_META, Abbrev));
- // ==---------------------------------------------------------------------==//
- // The subsequent records and Abbrevs are for the "Diagnostic" block.
- // ==---------------------------------------------------------------------==//
- EmitBlockID(BLOCK_DIAG, "Diag", Stream, Record);
- EmitRecordID(RECORD_DIAG, "DiagInfo", Stream, Record);
- EmitRecordID(RECORD_SOURCE_RANGE, "SrcRange", Stream, Record);
- EmitRecordID(RECORD_CATEGORY, "CatName", Stream, Record);
- EmitRecordID(RECORD_DIAG_FLAG, "DiagFlag", Stream, Record);
- EmitRecordID(RECORD_FILENAME, "FileName", Stream, Record);
- EmitRecordID(RECORD_FIXIT, "FixIt", Stream, Record);
- // Emit abbreviation for RECORD_DIAG.
- Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_DIAG));
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Diag level.
- AddSourceLocationAbbrev(Abbrev);
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped Diag ID.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Text size.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Diagnostc text.
- Abbrevs.set(RECORD_DIAG, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG, Abbrev));
-
- // Emit abbrevation for RECORD_CATEGORY.
- Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_CATEGORY));
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8)); // Text size.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Category text.
- Abbrevs.set(RECORD_CATEGORY, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG, Abbrev));
- // Emit abbrevation for RECORD_SOURCE_RANGE.
- Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_SOURCE_RANGE));
- AddRangeLocationAbbrev(Abbrev);
- Abbrevs.set(RECORD_SOURCE_RANGE,
- Stream.EmitBlockInfoAbbrev(BLOCK_DIAG, Abbrev));
-
- // Emit the abbreviation for RECORD_DIAG_FLAG.
- Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_DIAG_FLAG));
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped Diag ID.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Text size.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Flag name text.
- Abbrevs.set(RECORD_DIAG_FLAG, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG,
- Abbrev));
-
- // Emit the abbreviation for RECORD_FILENAME.
- Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_FILENAME));
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped file ID.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Size.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Modifcation time.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Text size.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name text.
- Abbrevs.set(RECORD_FILENAME, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG,
- Abbrev));
-
- // Emit the abbreviation for RECORD_FIXIT.
- Abbrev = new BitCodeAbbrev();
- Abbrev->Add(BitCodeAbbrevOp(RECORD_FIXIT));
- AddRangeLocationAbbrev(Abbrev);
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Text size.
- Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // FixIt text.
- Abbrevs.set(RECORD_FIXIT, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG,
- Abbrev));
- Stream.ExitBlock();
- }
- void SDiagsWriter::EmitMetaBlock() {
- Stream.EnterSubblock(BLOCK_META, 3);
- Record.clear();
- Record.push_back(RECORD_VERSION);
- Record.push_back(Version);
- Stream.EmitRecordWithAbbrev(Abbrevs.get(RECORD_VERSION), Record);
- Stream.ExitBlock();
- }
- unsigned SDiagsWriter::getEmitCategory(unsigned int category) {
- if (Categories.count(category))
- return category;
-
- Categories.insert(category);
-
- // We use a local version of 'Record' so that we can be generating
- // another record when we lazily generate one for the category entry.
- RecordData Record;
- Record.push_back(RECORD_CATEGORY);
- Record.push_back(category);
- StringRef catName = DiagnosticIDs::getCategoryNameFromID(category);
- Record.push_back(catName.size());
- Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_CATEGORY), Record, catName);
-
- return category;
- }
- unsigned SDiagsWriter::getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel,
- unsigned DiagID) {
- if (DiagLevel == DiagnosticsEngine::Note)
- return 0; // No flag for notes.
-
- StringRef FlagName = DiagnosticIDs::getWarningOptionForDiag(DiagID);
- if (FlagName.empty())
- return 0;
- // Here we assume that FlagName points to static data whose pointer
- // value is fixed. This allows us to unique by diagnostic groups.
- const void *data = FlagName.data();
- std::pair<unsigned, StringRef> &entry = DiagFlags[data];
- if (entry.first == 0) {
- entry.first = DiagFlags.size();
- entry.second = FlagName;
-
- // Lazily emit the string in a separate record.
- RecordData Record;
- Record.push_back(RECORD_DIAG_FLAG);
- Record.push_back(entry.first);
- Record.push_back(FlagName.size());
- Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_DIAG_FLAG),
- Record, FlagName);
- }
- return entry.first;
- }
- void SDiagsWriter::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
- const Diagnostic &Info) {
- if (DiagLevel != DiagnosticsEngine::Note) {
- if (inNonNoteDiagnostic) {
- // We have encountered a non-note diagnostic. Finish up the previous
- // diagnostic block before starting a new one.
- Stream.ExitBlock();
- }
- inNonNoteDiagnostic = true;
- }
- // Compute the diagnostic text.
- diagBuf.clear();
- Info.FormatDiagnostic(diagBuf);
- SourceManager &SM = Info.getSourceManager();
- SDiagsRenderer Renderer(*this, Record, SM, *LangOpts, DiagOpts);
- Renderer.emitDiagnostic(Info.getLocation(), DiagLevel,
- diagBuf.str(),
- Info.getRanges(),
- llvm::makeArrayRef(Info.getFixItHints(),
- Info.getNumFixItHints()),
- &Info);
- }
- void
- SDiagsRenderer::emitDiagnosticMessage(SourceLocation Loc,
- PresumedLoc PLoc,
- DiagnosticsEngine::Level Level,
- StringRef Message,
- ArrayRef<clang::CharSourceRange> Ranges,
- const Diagnostic *Info) {
- // Emit the RECORD_DIAG record.
- Writer.Record.clear();
- Writer.Record.push_back(RECORD_DIAG);
- Writer.Record.push_back(Level);
- Writer.AddLocToRecord(Loc, SM, PLoc, Record);
- if (Info) {
- // Emit the category string lazily and get the category ID.
- unsigned DiagID = DiagnosticIDs::getCategoryNumberForDiag(Info->getID());
- Writer.Record.push_back(Writer.getEmitCategory(DiagID));
- // Emit the diagnostic flag string lazily and get the mapped ID.
- Writer.Record.push_back(Writer.getEmitDiagnosticFlag(Level, Info->getID()));
- }
- else {
- Writer.Record.push_back(Writer.getEmitCategory());
- Writer.Record.push_back(Writer.getEmitDiagnosticFlag(Level));
- }
- Writer.Record.push_back(Message.size());
- Writer.Stream.EmitRecordWithBlob(Writer.Abbrevs.get(RECORD_DIAG),
- Writer.Record, Message);
- }
- void SDiagsRenderer::beginDiagnostic(const Diagnostic *Info,
- DiagnosticsEngine::Level Level) {
- Writer.Stream.EnterSubblock(BLOCK_DIAG, 4);
- }
- void SDiagsRenderer::endDiagnostic(const Diagnostic *Info,
- DiagnosticsEngine::Level Level) {
- if (Info && Level != DiagnosticsEngine::Note)
- return;
- Writer.Stream.ExitBlock();
- }
- void SDiagsRenderer::emitCodeContext(SourceLocation Loc,
- DiagnosticsEngine::Level Level,
- SmallVectorImpl<CharSourceRange> &Ranges,
- ArrayRef<FixItHint> Hints) {
- // Emit Source Ranges.
- for (ArrayRef<CharSourceRange>::iterator it=Ranges.begin(), ei=Ranges.end();
- it != ei; ++it) {
- if (it->isValid())
- Writer.EmitCharSourceRange(*it, SM);
- }
-
- // Emit FixIts.
- for (ArrayRef<FixItHint>::iterator it = Hints.begin(), et = Hints.end();
- it != et; ++it) {
- const FixItHint &fix = *it;
- if (fix.isNull())
- continue;
- Writer.Record.clear();
- Writer.Record.push_back(RECORD_FIXIT);
- Writer.AddCharSourceRangeToRecord(fix.RemoveRange, Record, SM);
- Writer.Record.push_back(fix.CodeToInsert.size());
- Writer.Stream.EmitRecordWithBlob(Writer.Abbrevs.get(RECORD_FIXIT), Record,
- fix.CodeToInsert);
- }
- }
- void SDiagsRenderer::emitNote(SourceLocation Loc, StringRef Message) {
- Writer.Stream.EnterSubblock(BLOCK_DIAG, 4);
- RecordData Record;
- Record.push_back(RECORD_DIAG);
- Record.push_back(DiagnosticsEngine::Note);
- Writer.AddLocToRecord(Loc, Record, SM);
- Record.push_back(Writer.getEmitCategory());
- Record.push_back(Writer.getEmitDiagnosticFlag(DiagnosticsEngine::Note));
- Record.push_back(Message.size());
- Writer.Stream.EmitRecordWithBlob(Writer.Abbrevs.get(RECORD_DIAG),
- Record, Message);
- Writer.Stream.ExitBlock();
- }
- void SDiagsRenderer::emitIncludeLocation(SourceLocation Loc,
- PresumedLoc PLoc) {
- // Generate a note indicating the include location.
- SmallString<200> MessageStorage;
- llvm::raw_svector_ostream Message(MessageStorage);
- Message << "in file included from " << PLoc.getFilename() << ':'
- << PLoc.getLine() << ":";
- emitNote(Loc, Message.str());
- }
- void SDiagsRenderer::emitBasicNote(StringRef Message) {
- emitNote(SourceLocation(), Message);
- }
- void SDiagsWriter::finish() {
- if (inNonNoteDiagnostic) {
- // Finish off any diagnostics we were in the process of emitting.
- Stream.ExitBlock();
- inNonNoteDiagnostic = false;
- }
- // Write the generated bitstream to "Out".
- OS->write((char *)&Buffer.front(), Buffer.size());
- OS->flush();
-
- OS.reset(0);
- }
|