2009-06-21 05:36:54 +02:00
|
|
|
//===- SourceMgr.h - Manager for Source Buffers & Diagnostics ---*- C++ -*-===//
|
2009-03-13 08:05:43 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-01-18 23:07:51 +01:00
|
|
|
// This file declares the SMDiagnostic and SourceMgr classes. This
|
2009-07-03 00:24:20 +02:00
|
|
|
// provides a simple substrate for diagnostics, #include handling, and other low
|
|
|
|
// level things for simple parsers.
|
2009-03-13 08:05:43 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-06-21 05:41:50 +02:00
|
|
|
#ifndef SUPPORT_SOURCEMGR_H
|
|
|
|
#define SUPPORT_SOURCEMGR_H
|
2009-03-13 08:05:43 +01:00
|
|
|
|
2010-01-18 23:07:51 +01:00
|
|
|
#include "llvm/Support/SMLoc.h"
|
2011-10-16 06:47:35 +02:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2009-03-13 09:12:13 +01:00
|
|
|
#include <string>
|
2009-03-13 08:05:43 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class MemoryBuffer;
|
2009-06-21 05:41:50 +02:00
|
|
|
class SourceMgr;
|
2009-07-03 00:24:20 +02:00
|
|
|
class SMDiagnostic;
|
2010-09-27 19:42:11 +02:00
|
|
|
class Twine;
|
2009-07-03 00:24:20 +02:00
|
|
|
class raw_ostream;
|
2009-03-13 08:05:43 +01:00
|
|
|
|
2009-07-03 00:24:20 +02:00
|
|
|
/// SourceMgr - This owns the files read by a parser, handles include stacks,
|
|
|
|
/// and handles diagnostic wrangling.
|
2009-06-21 05:41:50 +02:00
|
|
|
class SourceMgr {
|
2010-04-06 02:26:48 +02:00
|
|
|
public:
|
2011-10-16 07:43:57 +02:00
|
|
|
enum DiagKind {
|
|
|
|
DK_Error,
|
|
|
|
DK_Warning,
|
|
|
|
DK_Note
|
|
|
|
};
|
|
|
|
|
2010-04-06 02:26:48 +02:00
|
|
|
/// DiagHandlerTy - Clients that want to handle their own diagnostics in a
|
|
|
|
/// custom way can register a function pointer+context as a diagnostic
|
|
|
|
/// handler. It gets called each time PrintMessage is invoked.
|
2011-10-16 07:43:57 +02:00
|
|
|
typedef void (*DiagHandlerTy)(const SMDiagnostic &, void *Context);
|
2010-04-06 02:26:48 +02:00
|
|
|
private:
|
2009-03-13 08:05:43 +01:00
|
|
|
struct SrcBuffer {
|
|
|
|
/// Buffer - The memory buffer for the file.
|
|
|
|
MemoryBuffer *Buffer;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-03-13 08:05:43 +01:00
|
|
|
/// IncludeLoc - This is the location of the parent include, or null if at
|
|
|
|
/// the top level.
|
2009-06-21 05:39:35 +02:00
|
|
|
SMLoc IncludeLoc;
|
2009-03-13 08:05:43 +01:00
|
|
|
};
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-03-13 08:05:43 +01:00
|
|
|
/// Buffers - This is all of the buffers that we are reading from.
|
|
|
|
std::vector<SrcBuffer> Buffers;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-06-21 07:06:04 +02:00
|
|
|
// IncludeDirectories - This is the list of directories we should search for
|
|
|
|
// include files in.
|
|
|
|
std::vector<std::string> IncludeDirectories;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-08-11 19:49:14 +02:00
|
|
|
/// LineNoCache - This is a cache for line number queries, its implementation
|
|
|
|
/// is really private to SourceMgr.cpp.
|
|
|
|
mutable void *LineNoCache;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2010-04-06 02:26:48 +02:00
|
|
|
DiagHandlerTy DiagHandler;
|
|
|
|
void *DiagContext;
|
|
|
|
|
2009-06-21 05:41:50 +02:00
|
|
|
SourceMgr(const SourceMgr&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const SourceMgr&); // DO NOT IMPLEMENT
|
2009-03-13 08:05:43 +01:00
|
|
|
public:
|
2010-04-06 02:26:48 +02:00
|
|
|
SourceMgr() : LineNoCache(0), DiagHandler(0), DiagContext(0) {}
|
2009-06-21 05:41:50 +02:00
|
|
|
~SourceMgr();
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-06-21 07:06:04 +02:00
|
|
|
void setIncludeDirs(const std::vector<std::string> &Dirs) {
|
|
|
|
IncludeDirectories = Dirs;
|
|
|
|
}
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2010-04-06 02:26:48 +02:00
|
|
|
/// setDiagHandler - Specify a diagnostic handler to be invoked every time
|
2010-11-17 09:13:01 +01:00
|
|
|
/// PrintMessage is called. Ctx is passed into the handler when it is invoked.
|
|
|
|
void setDiagHandler(DiagHandlerTy DH, void *Ctx = 0) {
|
2010-04-06 02:26:48 +02:00
|
|
|
DiagHandler = DH;
|
|
|
|
DiagContext = Ctx;
|
|
|
|
}
|
|
|
|
|
2011-10-16 12:48:29 +02:00
|
|
|
DiagHandlerTy getDiagHandler() const { return DiagHandler; }
|
|
|
|
void *getDiagContext() const { return DiagContext; }
|
|
|
|
|
2009-03-13 08:05:43 +01:00
|
|
|
const SrcBuffer &getBufferInfo(unsigned i) const {
|
|
|
|
assert(i < Buffers.size() && "Invalid Buffer ID!");
|
|
|
|
return Buffers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
const MemoryBuffer *getMemoryBuffer(unsigned i) const {
|
|
|
|
assert(i < Buffers.size() && "Invalid Buffer ID!");
|
|
|
|
return Buffers[i].Buffer;
|
|
|
|
}
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-06-21 05:39:35 +02:00
|
|
|
SMLoc getParentIncludeLoc(unsigned i) const {
|
2009-03-13 08:05:43 +01:00
|
|
|
assert(i < Buffers.size() && "Invalid Buffer ID!");
|
|
|
|
return Buffers[i].IncludeLoc;
|
|
|
|
}
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2010-04-06 01:07:42 +02:00
|
|
|
/// AddNewSourceBuffer - Add a new source buffer to this source manager. This
|
|
|
|
/// takes ownership of the memory buffer.
|
2009-06-21 05:39:35 +02:00
|
|
|
unsigned AddNewSourceBuffer(MemoryBuffer *F, SMLoc IncludeLoc) {
|
2009-03-13 08:05:43 +01:00
|
|
|
SrcBuffer NB;
|
|
|
|
NB.Buffer = F;
|
|
|
|
NB.IncludeLoc = IncludeLoc;
|
|
|
|
Buffers.push_back(NB);
|
|
|
|
return Buffers.size()-1;
|
|
|
|
}
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-06-21 07:06:04 +02:00
|
|
|
/// AddIncludeFile - Search for a file with the specified name in the current
|
|
|
|
/// directory or in one of the IncludeDirs. If no file is found, this returns
|
|
|
|
/// ~0, otherwise it returns the buffer ID of the stacked file.
|
2011-06-01 15:10:15 +02:00
|
|
|
/// The full path to the included file can be found in IncludedFile.
|
|
|
|
unsigned AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
|
|
|
|
std::string &IncludedFile);
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-03-13 08:05:43 +01:00
|
|
|
/// FindBufferContainingLoc - Return the ID of the buffer containing the
|
|
|
|
/// specified location, returning -1 if not found.
|
2009-06-21 05:39:35 +02:00
|
|
|
int FindBufferContainingLoc(SMLoc Loc) const;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-03-13 08:05:43 +01:00
|
|
|
/// FindLineNumber - Find the line number for the specified location in the
|
|
|
|
/// specified file. This is not a fast method.
|
2009-06-21 05:39:35 +02:00
|
|
|
unsigned FindLineNumber(SMLoc Loc, int BufferID = -1) const;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-06-21 23:22:11 +02:00
|
|
|
/// PrintMessage - Emit a message about the specified location with the
|
2009-03-13 08:05:43 +01:00
|
|
|
/// specified string.
|
2009-06-30 02:49:23 +02:00
|
|
|
///
|
2011-10-16 07:43:57 +02:00
|
|
|
void PrintMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
|
2011-10-16 07:47:55 +02:00
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) const;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
|
|
|
|
2009-07-03 01:08:13 +02:00
|
|
|
/// GetMessage - Return an SMDiagnostic at the specified location with the
|
|
|
|
/// specified string.
|
|
|
|
///
|
|
|
|
/// @param Type - If non-null, the kind of message (e.g., "error") which is
|
|
|
|
/// prefixed to the message.
|
2011-10-16 07:43:57 +02:00
|
|
|
SMDiagnostic GetMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
|
2011-10-16 07:47:55 +02:00
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) const;
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2011-10-12 23:38:39 +02:00
|
|
|
/// PrintIncludeStack - Prints the names of included files and the line of the
|
|
|
|
/// file they were included from. A diagnostic handler can use this before
|
|
|
|
/// printing its custom formatted message.
|
|
|
|
///
|
|
|
|
/// @param IncludeLoc - The line of the include.
|
|
|
|
/// @param OS the raw_ostream to print on.
|
2009-07-03 00:24:20 +02:00
|
|
|
void PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const;
|
|
|
|
};
|
|
|
|
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-07-03 00:24:20 +02:00
|
|
|
/// SMDiagnostic - Instances of this class encapsulate one diagnostic report,
|
|
|
|
/// allowing printing to a raw_ostream as a caret diagnostic.
|
|
|
|
class SMDiagnostic {
|
2010-04-06 20:06:18 +02:00
|
|
|
const SourceMgr *SM;
|
2010-04-06 02:26:48 +02:00
|
|
|
SMLoc Loc;
|
2009-07-03 00:24:20 +02:00
|
|
|
std::string Filename;
|
|
|
|
int LineNo, ColumnNo;
|
2011-10-16 07:43:57 +02:00
|
|
|
SourceMgr::DiagKind Kind;
|
2009-07-03 00:24:20 +02:00
|
|
|
std::string Message, LineContents;
|
2011-10-16 06:47:35 +02:00
|
|
|
std::vector<std::pair<unsigned, unsigned> > Ranges;
|
2009-11-22 23:08:00 +01:00
|
|
|
|
2009-07-03 00:24:20 +02:00
|
|
|
public:
|
2010-04-06 20:06:18 +02:00
|
|
|
// Null diagnostic.
|
2011-10-16 07:43:57 +02:00
|
|
|
SMDiagnostic()
|
2011-10-16 07:47:55 +02:00
|
|
|
: SM(0), LineNo(0), ColumnNo(0), Kind(SourceMgr::DK_Error) {}
|
2010-04-06 20:06:18 +02:00
|
|
|
// Diagnostic with no location (e.g. file not found, command line arg error).
|
2011-10-16 07:43:57 +02:00
|
|
|
SMDiagnostic(const std::string &filename, SourceMgr::DiagKind Kind,
|
|
|
|
const std::string &Msg)
|
|
|
|
: SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Kind),
|
2011-10-16 07:47:55 +02:00
|
|
|
Message(Msg) {}
|
2010-04-06 20:06:18 +02:00
|
|
|
|
|
|
|
// Diagnostic with a location.
|
|
|
|
SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN,
|
2011-10-16 07:43:57 +02:00
|
|
|
int Line, int Col, SourceMgr::DiagKind Kind,
|
2009-11-22 23:08:00 +01:00
|
|
|
const std::string &Msg, const std::string &LineStr,
|
2011-10-16 07:47:55 +02:00
|
|
|
ArrayRef<std::pair<unsigned,unsigned> > Ranges);
|
2009-07-03 00:24:20 +02:00
|
|
|
|
2010-04-06 20:06:18 +02:00
|
|
|
const SourceMgr *getSourceMgr() const { return SM; }
|
2010-04-06 02:26:48 +02:00
|
|
|
SMLoc getLoc() const { return Loc; }
|
2011-03-01 09:36:21 +01:00
|
|
|
const std::string &getFilename() const { return Filename; }
|
2010-04-06 02:26:48 +02:00
|
|
|
int getLineNo() const { return LineNo; }
|
|
|
|
int getColumnNo() const { return ColumnNo; }
|
2011-10-16 07:43:57 +02:00
|
|
|
SourceMgr::DiagKind getKind() const { return Kind; }
|
2010-04-06 02:26:48 +02:00
|
|
|
const std::string &getMessage() const { return Message; }
|
|
|
|
const std::string &getLineContents() const { return LineContents; }
|
2011-10-16 06:47:35 +02:00
|
|
|
const std::vector<std::pair<unsigned, unsigned> > &getRanges() const {
|
|
|
|
return Ranges;
|
|
|
|
}
|
|
|
|
void print(const char *ProgName, raw_ostream &S) const;
|
2009-03-13 08:05:43 +01:00
|
|
|
};
|
2010-01-27 11:13:11 +01:00
|
|
|
|
2009-03-13 08:05:43 +01:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|