Chris Lattner | 099e198 | 2009-06-21 03:36:54 +0000 | [diff] [blame] | 1 | //===- SourceMgr.cpp - Manager for Simple Source Buffers & Diagnostics ----===// |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 099e198 | 2009-06-21 03:36:54 +0000 | [diff] [blame] | 10 | // This file implements the SourceMgr class. This class is used as a simple |
| 11 | // substrate for diagnostics, #include handling, and other low level things for |
| 12 | // simple parsers. |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Benjamin Kramer | d1e1703 | 2010-09-27 17:42:11 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/Twine.h" |
Chris Lattner | 099e198 | 2009-06-21 03:36:54 +0000 | [diff] [blame] | 17 | #include "llvm/Support/SourceMgr.h" |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 18 | #include "llvm/Support/MemoryBuffer.h" |
| 19 | #include "llvm/Support/raw_ostream.h" |
| 20 | using namespace llvm; |
| 21 | |
Chris Lattner | 1d96ccc | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 22 | namespace { |
| 23 | struct LineNoCacheTy { |
| 24 | int LastQueryBufferID; |
| 25 | const char *LastQuery; |
| 26 | unsigned LineNoOfQuery; |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | static LineNoCacheTy *getCache(void *Ptr) { |
| 31 | return (LineNoCacheTy*)Ptr; |
| 32 | } |
| 33 | |
| 34 | |
Chris Lattner | 8070ea3 | 2009-06-21 03:41:50 +0000 | [diff] [blame] | 35 | SourceMgr::~SourceMgr() { |
Chris Lattner | 1d96ccc | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 36 | // Delete the line # cache if allocated. |
| 37 | if (LineNoCacheTy *Cache = getCache(LineNoCache)) |
| 38 | delete Cache; |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 39 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 40 | while (!Buffers.empty()) { |
| 41 | delete Buffers.back().Buffer; |
| 42 | Buffers.pop_back(); |
| 43 | } |
| 44 | } |
| 45 | |
Chris Lattner | 7ee5d5f | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 46 | /// AddIncludeFile - Search for a file with the specified name in the current |
| 47 | /// directory or in one of the IncludeDirs. If no file is found, this returns |
| 48 | /// ~0, otherwise it returns the buffer ID of the stacked file. |
| 49 | unsigned SourceMgr::AddIncludeFile(const std::string &Filename, |
| 50 | SMLoc IncludeLoc) { |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 51 | |
Chris Lattner | 7ee5d5f | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 52 | MemoryBuffer *NewBuf = MemoryBuffer::getFile(Filename.c_str()); |
| 53 | |
| 54 | // If the file didn't exist directly, see if it's in an include path. |
| 55 | for (unsigned i = 0, e = IncludeDirectories.size(); i != e && !NewBuf; ++i) { |
| 56 | std::string IncFile = IncludeDirectories[i] + "/" + Filename; |
| 57 | NewBuf = MemoryBuffer::getFile(IncFile.c_str()); |
| 58 | } |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 7ee5d5f | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 60 | if (NewBuf == 0) return ~0U; |
| 61 | |
| 62 | return AddNewSourceBuffer(NewBuf, IncludeLoc); |
| 63 | } |
| 64 | |
| 65 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 66 | /// FindBufferContainingLoc - Return the ID of the buffer containing the |
| 67 | /// specified location, returning -1 if not found. |
Chris Lattner | 8070ea3 | 2009-06-21 03:41:50 +0000 | [diff] [blame] | 68 | int SourceMgr::FindBufferContainingLoc(SMLoc Loc) const { |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 69 | for (unsigned i = 0, e = Buffers.size(); i != e; ++i) |
Chris Lattner | 1c8ae59 | 2009-03-13 16:01:53 +0000 | [diff] [blame] | 70 | if (Loc.getPointer() >= Buffers[i].Buffer->getBufferStart() && |
Chris Lattner | d477182 | 2009-03-18 20:36:45 +0000 | [diff] [blame] | 71 | // Use <= here so that a pointer to the null at the end of the buffer |
| 72 | // is included as part of the buffer. |
| 73 | Loc.getPointer() <= Buffers[i].Buffer->getBufferEnd()) |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 74 | return i; |
| 75 | return -1; |
| 76 | } |
| 77 | |
| 78 | /// FindLineNumber - Find the line number for the specified location in the |
| 79 | /// specified file. This is not a fast method. |
Chris Lattner | 8070ea3 | 2009-06-21 03:41:50 +0000 | [diff] [blame] | 80 | unsigned SourceMgr::FindLineNumber(SMLoc Loc, int BufferID) const { |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 81 | if (BufferID == -1) BufferID = FindBufferContainingLoc(Loc); |
| 82 | assert(BufferID != -1 && "Invalid Location!"); |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 83 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 84 | MemoryBuffer *Buff = getBufferInfo(BufferID).Buffer; |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 85 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 86 | // Count the number of \n's between the start of the file and the specified |
| 87 | // location. |
| 88 | unsigned LineNo = 1; |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 89 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 90 | const char *Ptr = Buff->getBufferStart(); |
| 91 | |
Chris Lattner | 1d96ccc | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 92 | // If we have a line number cache, and if the query is to a later point in the |
| 93 | // same file, start searching from the last query location. This optimizes |
| 94 | // for the case when multiple diagnostics come out of one file in order. |
| 95 | if (LineNoCacheTy *Cache = getCache(LineNoCache)) |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 96 | if (Cache->LastQueryBufferID == BufferID && |
Chris Lattner | 1d96ccc | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 97 | Cache->LastQuery <= Loc.getPointer()) { |
| 98 | Ptr = Cache->LastQuery; |
| 99 | LineNo = Cache->LineNoOfQuery; |
| 100 | } |
| 101 | |
| 102 | // Scan for the location being queried, keeping track of the number of lines |
| 103 | // we see. |
Chris Lattner | 1e3a8a4 | 2009-06-21 03:39:35 +0000 | [diff] [blame] | 104 | for (; SMLoc::getFromPointer(Ptr) != Loc; ++Ptr) |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 105 | if (*Ptr == '\n') ++LineNo; |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 106 | |
| 107 | |
Chris Lattner | 1d96ccc | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 108 | // Allocate the line number cache if it doesn't exist. |
| 109 | if (LineNoCache == 0) |
| 110 | LineNoCache = new LineNoCacheTy(); |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 1d96ccc | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 112 | // Update the line # cache. |
| 113 | LineNoCacheTy &Cache = *getCache(LineNoCache); |
| 114 | Cache.LastQueryBufferID = BufferID; |
| 115 | Cache.LastQuery = Ptr; |
| 116 | Cache.LineNoOfQuery = LineNo; |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 117 | return LineNo; |
| 118 | } |
| 119 | |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 120 | void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const { |
Chris Lattner | 1e3a8a4 | 2009-06-21 03:39:35 +0000 | [diff] [blame] | 121 | if (IncludeLoc == SMLoc()) return; // Top of stack. |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 122 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 123 | int CurBuf = FindBufferContainingLoc(IncludeLoc); |
| 124 | assert(CurBuf != -1 && "Invalid or unspecified location!"); |
| 125 | |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 126 | PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS); |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 127 | |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 128 | OS << "Included from " |
| 129 | << getBufferInfo(CurBuf).Buffer->getBufferIdentifier() |
| 130 | << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n"; |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | |
Chris Lattner | eeb4a84 | 2009-07-02 23:08:13 +0000 | [diff] [blame] | 134 | /// GetMessage - Return an SMDiagnostic at the specified location with the |
| 135 | /// specified string. |
| 136 | /// |
| 137 | /// @param Type - If non-null, the kind of message (e.g., "error") which is |
| 138 | /// prefixed to the message. |
Benjamin Kramer | d1e1703 | 2010-09-27 17:42:11 +0000 | [diff] [blame] | 139 | SMDiagnostic SourceMgr::GetMessage(SMLoc Loc, const Twine &Msg, |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 140 | const char *Type, bool ShowLine) const { |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 141 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 142 | // First thing to do: find the current buffer containing the specified |
| 143 | // location. |
Chris Lattner | 14ee48a | 2009-06-21 21:22:11 +0000 | [diff] [blame] | 144 | int CurBuf = FindBufferContainingLoc(Loc); |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 145 | assert(CurBuf != -1 && "Invalid or unspecified location!"); |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 146 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 147 | MemoryBuffer *CurMB = getBufferInfo(CurBuf).Buffer; |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 148 | |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 149 | // Scan backward to find the start of the line. |
Chris Lattner | 14ee48a | 2009-06-21 21:22:11 +0000 | [diff] [blame] | 150 | const char *LineStart = Loc.getPointer(); |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 151 | while (LineStart != CurMB->getBufferStart() && |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 152 | LineStart[-1] != '\n' && LineStart[-1] != '\r') |
| 153 | --LineStart; |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 154 | |
| 155 | std::string LineStr; |
| 156 | if (ShowLine) { |
| 157 | // Get the end of the line. |
| 158 | const char *LineEnd = Loc.getPointer(); |
| 159 | while (LineEnd != CurMB->getBufferEnd() && |
| 160 | LineEnd[0] != '\n' && LineEnd[0] != '\r') |
| 161 | ++LineEnd; |
| 162 | LineStr = std::string(LineStart, LineEnd); |
| 163 | } |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 164 | |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 165 | std::string PrintedMsg; |
Benjamin Kramer | d1e1703 | 2010-09-27 17:42:11 +0000 | [diff] [blame] | 166 | raw_string_ostream OS(PrintedMsg); |
| 167 | if (Type) |
| 168 | OS << Type << ": "; |
| 169 | OS << Msg; |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 170 | |
Chris Lattner | b019491 | 2010-04-06 18:06:18 +0000 | [diff] [blame] | 171 | return SMDiagnostic(*this, Loc, |
Chris Lattner | 8f0f480 | 2010-04-06 00:26:48 +0000 | [diff] [blame] | 172 | CurMB->getBufferIdentifier(), FindLineNumber(Loc, CurBuf), |
Benjamin Kramer | d1e1703 | 2010-09-27 17:42:11 +0000 | [diff] [blame] | 173 | Loc.getPointer()-LineStart, OS.str(), |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 174 | LineStr, ShowLine); |
Chris Lattner | eeb4a84 | 2009-07-02 23:08:13 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Benjamin Kramer | d1e1703 | 2010-09-27 17:42:11 +0000 | [diff] [blame] | 177 | void SourceMgr::PrintMessage(SMLoc Loc, const Twine &Msg, |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 178 | const char *Type, bool ShowLine) const { |
Chris Lattner | 8f0f480 | 2010-04-06 00:26:48 +0000 | [diff] [blame] | 179 | // Report the message with the diagnostic handler if present. |
| 180 | if (DiagHandler) { |
Chris Lattner | 4afa128 | 2010-11-17 08:13:01 +0000 | [diff] [blame^] | 181 | DiagHandler(GetMessage(Loc, Msg, Type, ShowLine), DiagContext); |
Chris Lattner | 8f0f480 | 2010-04-06 00:26:48 +0000 | [diff] [blame] | 182 | return; |
| 183 | } |
| 184 | |
Chris Lattner | eeb4a84 | 2009-07-02 23:08:13 +0000 | [diff] [blame] | 185 | raw_ostream &OS = errs(); |
| 186 | |
| 187 | int CurBuf = FindBufferContainingLoc(Loc); |
| 188 | assert(CurBuf != -1 && "Invalid or unspecified location!"); |
| 189 | PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS); |
| 190 | |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 191 | GetMessage(Loc, Msg, Type, ShowLine).Print(0, OS); |
Chris Lattner | aa739d2 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 192 | } |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 193 | |
| 194 | //===----------------------------------------------------------------------===// |
| 195 | // SMDiagnostic Implementation |
| 196 | //===----------------------------------------------------------------------===// |
| 197 | |
Mikhail Glushenkov | 4221066 | 2010-01-27 10:13:28 +0000 | [diff] [blame] | 198 | void SMDiagnostic::Print(const char *ProgName, raw_ostream &S) const { |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 199 | if (ProgName && ProgName[0]) |
| 200 | S << ProgName << ": "; |
| 201 | |
Dan Gohman | 5e5442c | 2010-01-21 10:13:27 +0000 | [diff] [blame] | 202 | if (!Filename.empty()) { |
| 203 | if (Filename == "-") |
| 204 | S << "<stdin>"; |
| 205 | else |
| 206 | S << Filename; |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 207 | |
Dan Gohman | 5e5442c | 2010-01-21 10:13:27 +0000 | [diff] [blame] | 208 | if (LineNo != -1) { |
| 209 | S << ':' << LineNo; |
| 210 | if (ColumnNo != -1) |
| 211 | S << ':' << (ColumnNo+1); |
| 212 | } |
| 213 | S << ": "; |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 214 | } |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 215 | |
Dan Gohman | 5e5442c | 2010-01-21 10:13:27 +0000 | [diff] [blame] | 216 | S << Message << '\n'; |
Daniel Dunbar | 4153982 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 217 | |
| 218 | if (LineNo != -1 && ColumnNo != -1 && ShowLine) { |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 219 | S << LineContents << '\n'; |
Mikhail Glushenkov | e690ffb | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 220 | |
Chris Lattner | 2f510ae | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 221 | // Print out spaces/tabs before the caret. |
| 222 | for (unsigned i = 0; i != unsigned(ColumnNo); ++i) |
| 223 | S << (LineContents[i] == '\t' ? '\t' : ' '); |
| 224 | S << "^\n"; |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | |