Chris Lattner | 1b30e1ac | 2009-06-21 03:36:54 +0000 | [diff] [blame] | 1 | //===- SourceMgr.cpp - Manager for Simple Source Buffers & Diagnostics ----===// |
Chris Lattner | 8db9bc7 | 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 | 1b30e1ac | 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 | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 16 | #include "llvm/Support/SourceMgr.h" |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/ArrayRef.h" |
David Majnemer | 562e829 | 2016-08-12 00:18:03 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallVector.h" |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/StringRef.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Twine.h" |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ErrorOr.h" |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Locale.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/Support/MemoryBuffer.h" |
Yaron Keren | 1521720 | 2014-05-16 13:16:30 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Path.h" |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 26 | #include "llvm/Support/SMLoc.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 28 | #include <algorithm> |
| 29 | #include <cassert> |
| 30 | #include <cstddef> |
| 31 | #include <memory> |
| 32 | #include <string> |
| 33 | #include <utility> |
| 34 | |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 35 | using namespace llvm; |
| 36 | |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 37 | static const size_t TabStop = 8; |
| 38 | |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 39 | namespace { |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 41 | struct LineNoCacheTy { |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 42 | const char *LastQuery; |
Benjamin Kramer | 0464ae8 | 2016-08-16 19:20:10 +0000 | [diff] [blame] | 43 | unsigned LastQueryBufferID; |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 44 | unsigned LineNoOfQuery; |
| 45 | }; |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 46 | |
| 47 | } // end anonymous namespace |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 48 | |
| 49 | static LineNoCacheTy *getCache(void *Ptr) { |
| 50 | return (LineNoCacheTy*)Ptr; |
| 51 | } |
| 52 | |
Chris Lattner | fd25575 | 2009-06-21 03:41:50 +0000 | [diff] [blame] | 53 | SourceMgr::~SourceMgr() { |
Gabor Horvath | 43b72d5 | 2017-05-01 16:18:42 +0000 | [diff] [blame] | 54 | delete getCache(LineNoCache); |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Dmitri Gribenko | a5b27a7 | 2014-07-09 08:30:15 +0000 | [diff] [blame] | 57 | unsigned SourceMgr::AddIncludeFile(const std::string &Filename, |
| 58 | SMLoc IncludeLoc, |
| 59 | std::string &IncludedFile) { |
Joerg Sonnenberger | af5f23e | 2011-06-01 13:10:15 +0000 | [diff] [blame] | 60 | IncludedFile = Filename; |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 61 | ErrorOr<std::unique_ptr<MemoryBuffer>> NewBufOrErr = |
Matt Arsenault | 6e863d1 | 2014-11-06 01:13:27 +0000 | [diff] [blame] | 62 | MemoryBuffer::getFile(IncludedFile); |
Chris Lattner | 976af62 | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 63 | |
| 64 | // If the file didn't exist directly, see if it's in an include path. |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 65 | for (unsigned i = 0, e = IncludeDirectories.size(); i != e && !NewBufOrErr; |
| 66 | ++i) { |
| 67 | IncludedFile = |
| 68 | IncludeDirectories[i] + sys::path::get_separator().data() + Filename; |
Matt Arsenault | 6e863d1 | 2014-11-06 01:13:27 +0000 | [diff] [blame] | 69 | NewBufOrErr = MemoryBuffer::getFile(IncludedFile); |
Chris Lattner | 976af62 | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 70 | } |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 71 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 72 | if (!NewBufOrErr) |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 73 | return 0; |
Chris Lattner | 976af62 | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 74 | |
David Blaikie | 1961f14 | 2014-08-21 20:44:56 +0000 | [diff] [blame] | 75 | return AddNewSourceBuffer(std::move(*NewBufOrErr), IncludeLoc); |
Chris Lattner | 976af62 | 2009-06-21 05:06:04 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 78 | unsigned SourceMgr::FindBufferContainingLoc(SMLoc Loc) const { |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 79 | for (unsigned i = 0, e = Buffers.size(); i != e; ++i) |
Chris Lattner | 87710ca | 2009-03-13 16:01:53 +0000 | [diff] [blame] | 80 | if (Loc.getPointer() >= Buffers[i].Buffer->getBufferStart() && |
Chris Lattner | 0f6dc78 | 2009-03-18 20:36:45 +0000 | [diff] [blame] | 81 | // Use <= here so that a pointer to the null at the end of the buffer |
| 82 | // is included as part of the buffer. |
| 83 | Loc.getPointer() <= Buffers[i].Buffer->getBufferEnd()) |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 84 | return i + 1; |
| 85 | return 0; |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Chris Lattner | 9322ba8 | 2012-05-05 22:17:32 +0000 | [diff] [blame] | 88 | std::pair<unsigned, unsigned> |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 89 | SourceMgr::getLineAndColumn(SMLoc Loc, unsigned BufferID) const { |
| 90 | if (!BufferID) |
| 91 | BufferID = FindBufferContainingLoc(Loc); |
| 92 | assert(BufferID && "Invalid Location!"); |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 93 | |
Alp Toker | 7899d50 | 2014-06-25 00:41:15 +0000 | [diff] [blame] | 94 | const MemoryBuffer *Buff = getMemoryBuffer(BufferID); |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 95 | |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 96 | // Count the number of \n's between the start of the file and the specified |
| 97 | // location. |
| 98 | unsigned LineNo = 1; |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 99 | |
Chris Lattner | 9322ba8 | 2012-05-05 22:17:32 +0000 | [diff] [blame] | 100 | const char *BufStart = Buff->getBufferStart(); |
| 101 | const char *Ptr = BufStart; |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 102 | |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 103 | // If we have a line number cache, and if the query is to a later point in the |
| 104 | // same file, start searching from the last query location. This optimizes |
| 105 | // for the case when multiple diagnostics come out of one file in order. |
| 106 | if (LineNoCacheTy *Cache = getCache(LineNoCache)) |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 107 | if (Cache->LastQueryBufferID == BufferID && |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 108 | Cache->LastQuery <= Loc.getPointer()) { |
| 109 | Ptr = Cache->LastQuery; |
| 110 | LineNo = Cache->LineNoOfQuery; |
| 111 | } |
| 112 | |
| 113 | // Scan for the location being queried, keeping track of the number of lines |
| 114 | // we see. |
Chris Lattner | 526c8cb | 2009-06-21 03:39:35 +0000 | [diff] [blame] | 115 | for (; SMLoc::getFromPointer(Ptr) != Loc; ++Ptr) |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 116 | if (*Ptr == '\n') ++LineNo; |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 117 | |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 118 | // Allocate the line number cache if it doesn't exist. |
Craig Topper | 8d399f8 | 2014-04-09 04:20:00 +0000 | [diff] [blame] | 119 | if (!LineNoCache) |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 120 | LineNoCache = new LineNoCacheTy(); |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 121 | |
Chris Lattner | 5d47e93 | 2009-08-11 17:49:14 +0000 | [diff] [blame] | 122 | // Update the line # cache. |
| 123 | LineNoCacheTy &Cache = *getCache(LineNoCache); |
| 124 | Cache.LastQueryBufferID = BufferID; |
| 125 | Cache.LastQuery = Ptr; |
| 126 | Cache.LineNoOfQuery = LineNo; |
Chris Lattner | 9322ba8 | 2012-05-05 22:17:32 +0000 | [diff] [blame] | 127 | |
| 128 | size_t NewlineOffs = StringRef(BufStart, Ptr-BufStart).find_last_of("\n\r"); |
Matt Beaumont-Gay | a1b3b00 | 2012-05-07 18:12:42 +0000 | [diff] [blame] | 129 | if (NewlineOffs == StringRef::npos) NewlineOffs = ~(size_t)0; |
Chris Lattner | 9322ba8 | 2012-05-05 22:17:32 +0000 | [diff] [blame] | 130 | return std::make_pair(LineNo, Ptr-BufStart-NewlineOffs); |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 133 | void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const { |
Chris Lattner | 526c8cb | 2009-06-21 03:39:35 +0000 | [diff] [blame] | 134 | if (IncludeLoc == SMLoc()) return; // Top of stack. |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 135 | |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 136 | unsigned CurBuf = FindBufferContainingLoc(IncludeLoc); |
| 137 | assert(CurBuf && "Invalid or unspecified location!"); |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 138 | |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 139 | PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS); |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 140 | |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 141 | OS << "Included from " |
| 142 | << getBufferInfo(CurBuf).Buffer->getBufferIdentifier() |
| 143 | << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n"; |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Chris Lattner | 03b80a4 | 2011-10-16 05:43:57 +0000 | [diff] [blame] | 146 | SMDiagnostic SourceMgr::GetMessage(SMLoc Loc, SourceMgr::DiagKind Kind, |
Chris Lattner | 7284526 | 2011-10-16 05:47:55 +0000 | [diff] [blame] | 147 | const Twine &Msg, |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 148 | ArrayRef<SMRange> Ranges, |
| 149 | ArrayRef<SMFixIt> FixIts) const { |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 150 | // First thing to do: find the current buffer containing the specified |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 151 | // location to pull out the source line. |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 152 | SmallVector<std::pair<unsigned, unsigned>, 4> ColRanges; |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 153 | std::pair<unsigned, unsigned> LineAndCol; |
Mehdi Amini | 99d1b29 | 2016-10-01 16:38:28 +0000 | [diff] [blame] | 154 | StringRef BufferID = "<unknown>"; |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 155 | std::string LineStr; |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 156 | |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 157 | if (Loc.isValid()) { |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 158 | unsigned CurBuf = FindBufferContainingLoc(Loc); |
| 159 | assert(CurBuf && "Invalid or unspecified location!"); |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 160 | |
Alp Toker | 7899d50 | 2014-06-25 00:41:15 +0000 | [diff] [blame] | 161 | const MemoryBuffer *CurMB = getMemoryBuffer(CurBuf); |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 162 | BufferID = CurMB->getBufferIdentifier(); |
| 163 | |
| 164 | // Scan backward to find the start of the line. |
| 165 | const char *LineStart = Loc.getPointer(); |
| 166 | const char *BufStart = CurMB->getBufferStart(); |
| 167 | while (LineStart != BufStart && LineStart[-1] != '\n' && |
| 168 | LineStart[-1] != '\r') |
| 169 | --LineStart; |
| 170 | |
| 171 | // Get the end of the line. |
| 172 | const char *LineEnd = Loc.getPointer(); |
| 173 | const char *BufEnd = CurMB->getBufferEnd(); |
| 174 | while (LineEnd != BufEnd && LineEnd[0] != '\n' && LineEnd[0] != '\r') |
| 175 | ++LineEnd; |
| 176 | LineStr = std::string(LineStart, LineEnd); |
| 177 | |
| 178 | // Convert any ranges to column ranges that only intersect the line of the |
| 179 | // location. |
| 180 | for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { |
| 181 | SMRange R = Ranges[i]; |
| 182 | if (!R.isValid()) continue; |
| 183 | |
| 184 | // If the line doesn't contain any part of the range, then ignore it. |
| 185 | if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart) |
| 186 | continue; |
| 187 | |
| 188 | // Ignore pieces of the range that go onto other lines. |
| 189 | if (R.Start.getPointer() < LineStart) |
| 190 | R.Start = SMLoc::getFromPointer(LineStart); |
| 191 | if (R.End.getPointer() > LineEnd) |
| 192 | R.End = SMLoc::getFromPointer(LineEnd); |
| 193 | |
| 194 | // Translate from SMLoc ranges to column ranges. |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 195 | // FIXME: Handle multibyte characters. |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 196 | ColRanges.push_back(std::make_pair(R.Start.getPointer()-LineStart, |
| 197 | R.End.getPointer()-LineStart)); |
| 198 | } |
| 199 | |
| 200 | LineAndCol = getLineAndColumn(Loc, CurBuf); |
| 201 | } |
| 202 | |
| 203 | return SMDiagnostic(*this, Loc, BufferID, LineAndCol.first, |
Chris Lattner | 9322ba8 | 2012-05-05 22:17:32 +0000 | [diff] [blame] | 204 | LineAndCol.second-1, Kind, Msg.str(), |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 205 | LineStr, ColRanges, FixIts); |
Chris Lattner | 200e075 | 2009-07-02 23:08:13 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Jordan Rose | 57ffdb0 | 2014-06-17 02:15:40 +0000 | [diff] [blame] | 208 | void SourceMgr::PrintMessage(raw_ostream &OS, const SMDiagnostic &Diagnostic, |
| 209 | bool ShowColors) const { |
Chris Lattner | 3c79981 | 2010-04-06 00:26:48 +0000 | [diff] [blame] | 210 | // Report the message with the diagnostic handler if present. |
| 211 | if (DiagHandler) { |
Chris Lattner | 03b80a4 | 2011-10-16 05:43:57 +0000 | [diff] [blame] | 212 | DiagHandler(Diagnostic, DiagContext); |
Chris Lattner | 3c79981 | 2010-04-06 00:26:48 +0000 | [diff] [blame] | 213 | return; |
| 214 | } |
Michael J. Spencer | db97c0b | 2010-12-09 17:37:32 +0000 | [diff] [blame] | 215 | |
Jordan Rose | 57ffdb0 | 2014-06-17 02:15:40 +0000 | [diff] [blame] | 216 | if (Diagnostic.getLoc().isValid()) { |
Alp Toker | a55b95b | 2014-07-06 10:33:31 +0000 | [diff] [blame] | 217 | unsigned CurBuf = FindBufferContainingLoc(Diagnostic.getLoc()); |
| 218 | assert(CurBuf && "Invalid or unspecified location!"); |
Chris Lattner | 854f366 | 2012-05-06 16:20:49 +0000 | [diff] [blame] | 219 | PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS); |
| 220 | } |
Chris Lattner | 200e075 | 2009-07-02 23:08:13 +0000 | [diff] [blame] | 221 | |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 222 | Diagnostic.print(nullptr, OS, ShowColors); |
Chris Lattner | 8db9bc7 | 2009-03-13 07:05:43 +0000 | [diff] [blame] | 223 | } |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 224 | |
Jordan Rose | 57ffdb0 | 2014-06-17 02:15:40 +0000 | [diff] [blame] | 225 | void SourceMgr::PrintMessage(raw_ostream &OS, SMLoc Loc, |
| 226 | SourceMgr::DiagKind Kind, |
| 227 | const Twine &Msg, ArrayRef<SMRange> Ranges, |
| 228 | ArrayRef<SMFixIt> FixIts, bool ShowColors) const { |
| 229 | PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors); |
| 230 | } |
| 231 | |
Dmitri Gribenko | 8f94462 | 2013-09-27 21:09:25 +0000 | [diff] [blame] | 232 | void SourceMgr::PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, |
| 233 | const Twine &Msg, ArrayRef<SMRange> Ranges, |
| 234 | ArrayRef<SMFixIt> FixIts, bool ShowColors) const { |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 235 | PrintMessage(errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); |
Dmitri Gribenko | 8f94462 | 2013-09-27 21:09:25 +0000 | [diff] [blame] | 236 | } |
| 237 | |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 238 | //===----------------------------------------------------------------------===// |
| 239 | // SMDiagnostic Implementation |
| 240 | //===----------------------------------------------------------------------===// |
| 241 | |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 242 | SMDiagnostic::SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, |
Chris Lattner | 03b80a4 | 2011-10-16 05:43:57 +0000 | [diff] [blame] | 243 | int Line, int Col, SourceMgr::DiagKind Kind, |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 244 | StringRef Msg, StringRef LineStr, |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 245 | ArrayRef<std::pair<unsigned,unsigned>> Ranges, |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 246 | ArrayRef<SMFixIt> Hints) |
Chris Lattner | 03b80a4 | 2011-10-16 05:43:57 +0000 | [diff] [blame] | 247 | : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind), |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 248 | Message(Msg), LineContents(LineStr), Ranges(Ranges.vec()), |
| 249 | FixIts(Hints.begin(), Hints.end()) { |
| 250 | std::sort(FixIts.begin(), FixIts.end()); |
Chris Lattner | 03b80a4 | 2011-10-16 05:43:57 +0000 | [diff] [blame] | 251 | } |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 252 | |
Benjamin Kramer | 6ecb1e7 | 2013-02-15 12:30:38 +0000 | [diff] [blame] | 253 | static void buildFixItLine(std::string &CaretLine, std::string &FixItLine, |
| 254 | ArrayRef<SMFixIt> FixIts, ArrayRef<char> SourceLine){ |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 255 | if (FixIts.empty()) |
| 256 | return; |
| 257 | |
| 258 | const char *LineStart = SourceLine.begin(); |
| 259 | const char *LineEnd = SourceLine.end(); |
| 260 | |
| 261 | size_t PrevHintEndCol = 0; |
| 262 | |
| 263 | for (ArrayRef<SMFixIt>::iterator I = FixIts.begin(), E = FixIts.end(); |
| 264 | I != E; ++I) { |
| 265 | // If the fixit contains a newline or tab, ignore it. |
| 266 | if (I->getText().find_first_of("\n\r\t") != StringRef::npos) |
| 267 | continue; |
| 268 | |
| 269 | SMRange R = I->getRange(); |
| 270 | |
| 271 | // If the line doesn't contain any part of the range, then ignore it. |
| 272 | if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart) |
| 273 | continue; |
| 274 | |
| 275 | // Translate from SMLoc to column. |
| 276 | // Ignore pieces of the range that go onto other lines. |
| 277 | // FIXME: Handle multibyte characters in the source line. |
| 278 | unsigned FirstCol; |
| 279 | if (R.Start.getPointer() < LineStart) |
| 280 | FirstCol = 0; |
| 281 | else |
| 282 | FirstCol = R.Start.getPointer() - LineStart; |
| 283 | |
| 284 | // If we inserted a long previous hint, push this one forwards, and add |
| 285 | // an extra space to show that this is not part of the previous |
| 286 | // completion. This is sort of the best we can do when two hints appear |
| 287 | // to overlap. |
| 288 | // |
| 289 | // Note that if this hint is located immediately after the previous |
| 290 | // hint, no space will be added, since the location is more important. |
| 291 | unsigned HintCol = FirstCol; |
| 292 | if (HintCol < PrevHintEndCol) |
| 293 | HintCol = PrevHintEndCol + 1; |
| 294 | |
| 295 | // FIXME: This assertion is intended to catch unintended use of multibyte |
| 296 | // characters in fixits. If we decide to do this, we'll have to track |
| 297 | // separate byte widths for the source and fixit lines. |
Eugene Zelenko | 454d0ce | 2017-02-15 22:17:02 +0000 | [diff] [blame] | 298 | assert((size_t)sys::locale::columnWidth(I->getText()) == |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 299 | I->getText().size()); |
| 300 | |
| 301 | // This relies on one byte per column in our fixit hints. |
| 302 | unsigned LastColumnModified = HintCol + I->getText().size(); |
| 303 | if (LastColumnModified > FixItLine.size()) |
| 304 | FixItLine.resize(LastColumnModified, ' '); |
| 305 | |
| 306 | std::copy(I->getText().begin(), I->getText().end(), |
| 307 | FixItLine.begin() + HintCol); |
| 308 | |
| 309 | PrevHintEndCol = LastColumnModified; |
| 310 | |
| 311 | // For replacements, mark the removal range with '~'. |
| 312 | // FIXME: Handle multibyte characters in the source line. |
| 313 | unsigned LastCol; |
| 314 | if (R.End.getPointer() >= LineEnd) |
| 315 | LastCol = LineEnd - LineStart; |
| 316 | else |
| 317 | LastCol = R.End.getPointer() - LineStart; |
| 318 | |
| 319 | std::fill(&CaretLine[FirstCol], &CaretLine[LastCol], '~'); |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | static void printSourceLine(raw_ostream &S, StringRef LineContents) { |
| 324 | // Print out the source line one character at a time, so we can expand tabs. |
| 325 | for (unsigned i = 0, e = LineContents.size(), OutCol = 0; i != e; ++i) { |
| 326 | if (LineContents[i] != '\t') { |
| 327 | S << LineContents[i]; |
| 328 | ++OutCol; |
| 329 | continue; |
| 330 | } |
| 331 | |
| 332 | // If we have a tab, emit at least one space, then round up to 8 columns. |
| 333 | do { |
| 334 | S << ' '; |
| 335 | ++OutCol; |
| 336 | } while ((OutCol % TabStop) != 0); |
| 337 | } |
| 338 | S << '\n'; |
| 339 | } |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 340 | |
Jordan Rose | ceb1dbb | 2013-01-11 02:37:55 +0000 | [diff] [blame] | 341 | static bool isNonASCII(char c) { |
| 342 | return c & 0x80; |
| 343 | } |
| 344 | |
Alex Lorenz | 735c47e | 2015-06-15 20:30:22 +0000 | [diff] [blame] | 345 | void SMDiagnostic::print(const char *ProgName, raw_ostream &S, bool ShowColors, |
| 346 | bool ShowKindLabel) const { |
Daniel Dunbar | c8b8c49 | 2012-07-20 18:29:44 +0000 | [diff] [blame] | 347 | // Display colors only if OS supports colors. |
| 348 | ShowColors &= S.has_colors(); |
Benjamin Kramer | bb73d19 | 2012-04-18 19:04:15 +0000 | [diff] [blame] | 349 | |
| 350 | if (ShowColors) |
| 351 | S.changeColor(raw_ostream::SAVEDCOLOR, true); |
| 352 | |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 353 | if (ProgName && ProgName[0]) |
| 354 | S << ProgName << ": "; |
| 355 | |
Dan Gohman | 7c67590 | 2010-01-21 10:13:27 +0000 | [diff] [blame] | 356 | if (!Filename.empty()) { |
| 357 | if (Filename == "-") |
| 358 | S << "<stdin>"; |
| 359 | else |
| 360 | S << Filename; |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 361 | |
Dan Gohman | 7c67590 | 2010-01-21 10:13:27 +0000 | [diff] [blame] | 362 | if (LineNo != -1) { |
| 363 | S << ':' << LineNo; |
| 364 | if (ColumnNo != -1) |
| 365 | S << ':' << (ColumnNo+1); |
| 366 | } |
| 367 | S << ": "; |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 368 | } |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 369 | |
Alex Lorenz | 735c47e | 2015-06-15 20:30:22 +0000 | [diff] [blame] | 370 | if (ShowKindLabel) { |
| 371 | switch (Kind) { |
| 372 | case SourceMgr::DK_Error: |
| 373 | if (ShowColors) |
| 374 | S.changeColor(raw_ostream::RED, true); |
| 375 | S << "error: "; |
| 376 | break; |
| 377 | case SourceMgr::DK_Warning: |
| 378 | if (ShowColors) |
| 379 | S.changeColor(raw_ostream::MAGENTA, true); |
| 380 | S << "warning: "; |
| 381 | break; |
| 382 | case SourceMgr::DK_Note: |
| 383 | if (ShowColors) |
| 384 | S.changeColor(raw_ostream::BLACK, true); |
| 385 | S << "note: "; |
| 386 | break; |
Adam Nemet | 01104ae | 2017-10-12 23:56:02 +0000 | [diff] [blame] | 387 | case SourceMgr::DK_Remark: |
| 388 | if (ShowColors) |
| 389 | S.changeColor(raw_ostream::BLUE, true); |
| 390 | S << "remark: "; |
| 391 | break; |
Alex Lorenz | 735c47e | 2015-06-15 20:30:22 +0000 | [diff] [blame] | 392 | } |
Benjamin Kramer | bb73d19 | 2012-04-18 19:04:15 +0000 | [diff] [blame] | 393 | |
Alex Lorenz | 735c47e | 2015-06-15 20:30:22 +0000 | [diff] [blame] | 394 | if (ShowColors) { |
| 395 | S.resetColor(); |
| 396 | S.changeColor(raw_ostream::SAVEDCOLOR, true); |
| 397 | } |
Benjamin Kramer | bb73d19 | 2012-04-18 19:04:15 +0000 | [diff] [blame] | 398 | } |
| 399 | |
Dan Gohman | 7c67590 | 2010-01-21 10:13:27 +0000 | [diff] [blame] | 400 | S << Message << '\n'; |
Daniel Dunbar | 5a308f5 | 2009-11-22 22:08:00 +0000 | [diff] [blame] | 401 | |
Benjamin Kramer | bb73d19 | 2012-04-18 19:04:15 +0000 | [diff] [blame] | 402 | if (ShowColors) |
| 403 | S.resetColor(); |
| 404 | |
Chris Lattner | 7284526 | 2011-10-16 05:47:55 +0000 | [diff] [blame] | 405 | if (LineNo == -1 || ColumnNo == -1) |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 406 | return; |
Mikhail Glushenkov | 84afae3 | 2010-01-27 10:13:11 +0000 | [diff] [blame] | 407 | |
Jordan Rose | ceb1dbb | 2013-01-11 02:37:55 +0000 | [diff] [blame] | 408 | // FIXME: If there are multibyte or multi-column characters in the source, all |
| 409 | // our ranges will be wrong. To do this properly, we'll need a byte-to-column |
| 410 | // map like Clang's TextDiagnostic. For now, we'll just handle tabs by |
| 411 | // expanding them later, and bail out rather than show incorrect ranges and |
| 412 | // misaligned fixits for any other odd characters. |
David Majnemer | 562e829 | 2016-08-12 00:18:03 +0000 | [diff] [blame] | 413 | if (find_if(LineContents, isNonASCII) != LineContents.end()) { |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 414 | printSourceLine(S, LineContents); |
| 415 | return; |
| 416 | } |
Jordan Rose | ceb1dbb | 2013-01-11 02:37:55 +0000 | [diff] [blame] | 417 | size_t NumColumns = LineContents.size(); |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 418 | |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 419 | // Build the line with the caret and ranges. |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 420 | std::string CaretLine(NumColumns+1, ' '); |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 421 | |
| 422 | // Expand any ranges. |
| 423 | for (unsigned r = 0, e = Ranges.size(); r != e; ++r) { |
| 424 | std::pair<unsigned, unsigned> R = Ranges[r]; |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 425 | std::fill(&CaretLine[R.first], |
| 426 | &CaretLine[std::min((size_t)R.second, CaretLine.size())], |
| 427 | '~'); |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 428 | } |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 429 | |
| 430 | // Add any fix-its. |
| 431 | // FIXME: Find the beginning of the line properly for multibyte characters. |
| 432 | std::string FixItInsertionLine; |
| 433 | buildFixItLine(CaretLine, FixItInsertionLine, FixIts, |
| 434 | makeArrayRef(Loc.getPointer() - ColumnNo, |
| 435 | LineContents.size())); |
| 436 | |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 437 | // Finally, plop on the caret. |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 438 | if (unsigned(ColumnNo) <= NumColumns) |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 439 | CaretLine[ColumnNo] = '^'; |
| 440 | else |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 441 | CaretLine[NumColumns] = '^'; |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 442 | |
| 443 | // ... and remove trailing whitespace so the output doesn't wrap for it. We |
| 444 | // know that the line isn't completely empty because it has the caret in it at |
| 445 | // least. |
| 446 | CaretLine.erase(CaretLine.find_last_not_of(' ')+1); |
| 447 | |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 448 | printSourceLine(S, LineContents); |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 449 | |
Benjamin Kramer | bb73d19 | 2012-04-18 19:04:15 +0000 | [diff] [blame] | 450 | if (ShowColors) |
| 451 | S.changeColor(raw_ostream::GREEN, true); |
| 452 | |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 453 | // Print out the caret line, matching tabs in the source line. |
| 454 | for (unsigned i = 0, e = CaretLine.size(), OutCol = 0; i != e; ++i) { |
| 455 | if (i >= LineContents.size() || LineContents[i] != '\t') { |
| 456 | S << CaretLine[i]; |
| 457 | ++OutCol; |
| 458 | continue; |
| 459 | } |
| 460 | |
| 461 | // Okay, we have a tab. Insert the appropriate number of characters. |
| 462 | do { |
| 463 | S << CaretLine[i]; |
| 464 | ++OutCol; |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 465 | } while ((OutCol % TabStop) != 0); |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 466 | } |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 467 | S << '\n'; |
Benjamin Kramer | bb73d19 | 2012-04-18 19:04:15 +0000 | [diff] [blame] | 468 | |
| 469 | if (ShowColors) |
| 470 | S.resetColor(); |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 471 | |
| 472 | // Print out the replacement line, matching tabs in the source line. |
| 473 | if (FixItInsertionLine.empty()) |
| 474 | return; |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 475 | |
Dmitri Gribenko | 78fe2ba | 2013-09-27 21:24:36 +0000 | [diff] [blame] | 476 | for (size_t i = 0, e = FixItInsertionLine.size(), OutCol = 0; i < e; ++i) { |
Jordan Rose | efd8f80 | 2013-01-10 18:50:15 +0000 | [diff] [blame] | 477 | if (i >= LineContents.size() || LineContents[i] != '\t') { |
| 478 | S << FixItInsertionLine[i]; |
| 479 | ++OutCol; |
| 480 | continue; |
| 481 | } |
| 482 | |
| 483 | // Okay, we have a tab. Insert the appropriate number of characters. |
| 484 | do { |
| 485 | S << FixItInsertionLine[i]; |
| 486 | // FIXME: This is trying not to break up replacements, but then to re-sync |
| 487 | // with the tabs between replacements. This will fail, though, if two |
| 488 | // fix-it replacements are exactly adjacent, or if a fix-it contains a |
| 489 | // space. Really we should be precomputing column widths, which we'll |
| 490 | // need anyway for multibyte chars. |
| 491 | if (FixItInsertionLine[i] != ' ') |
| 492 | ++i; |
| 493 | ++OutCol; |
| 494 | } while (((OutCol % TabStop) != 0) && i != e); |
| 495 | } |
Chris Lattner | a3a0681 | 2011-10-16 04:47:35 +0000 | [diff] [blame] | 496 | S << '\n'; |
Chris Lattner | cc64cc9 | 2009-07-02 22:24:20 +0000 | [diff] [blame] | 497 | } |