Chris Lattner | 8bd12b8 | 2007-09-15 22:21:22 +0000 | [diff] [blame] | 1 | //===--- Rewriter.cpp - Code rewriting interface --------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the Rewriter class, which is used for code |
| 11 | // transformations. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Rewrite/Rewriter.h" |
Chris Lattner | 01c5748 | 2007-10-17 22:35:30 +0000 | [diff] [blame] | 16 | #include "clang/AST/Stmt.h" |
Chris Lattner | 9d62a5b | 2007-10-17 21:23:07 +0000 | [diff] [blame] | 17 | #include "clang/Lex/Lexer.h" |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 18 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 01c5748 | 2007-10-17 22:35:30 +0000 | [diff] [blame] | 19 | #include <sstream> |
Chris Lattner | 8bd12b8 | 2007-09-15 22:21:22 +0000 | [diff] [blame] | 20 | using namespace clang; |
| 21 | |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 22 | /// getMappedOffset - Given an offset into the original SourceBuffer that this |
| 23 | /// RewriteBuffer is based on, map it into the offset space of the |
| 24 | /// RewriteBuffer. |
| 25 | unsigned RewriteBuffer::getMappedOffset(unsigned OrigOffset, |
| 26 | bool AfterInserts) const { |
| 27 | unsigned ResultOffset = OrigOffset; |
| 28 | unsigned DeltaIdx = 0; |
| 29 | |
| 30 | // Move past any deltas that are relevant. |
| 31 | // FIXME: binary search. |
| 32 | for (; DeltaIdx != Deltas.size() && |
Chris Lattner | 88d0ed0 | 2007-10-13 00:17:04 +0000 | [diff] [blame] | 33 | Deltas[DeltaIdx].FileLoc < OrigOffset; ++DeltaIdx) |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 34 | ResultOffset += Deltas[DeltaIdx].Delta; |
| 35 | |
| 36 | if (AfterInserts && DeltaIdx != Deltas.size() && |
| 37 | OrigOffset == Deltas[DeltaIdx].FileLoc) |
| 38 | ResultOffset += Deltas[DeltaIdx].Delta; |
| 39 | return ResultOffset; |
| 40 | } |
| 41 | |
| 42 | /// AddDelta - When a change is made that shifts around the text buffer, this |
| 43 | /// method is used to record that info. |
| 44 | void RewriteBuffer::AddDelta(unsigned OrigOffset, int Change) { |
| 45 | assert(Change != 0 && "Not changing anything"); |
| 46 | unsigned DeltaIdx = 0; |
| 47 | |
| 48 | // Skip over any unrelated deltas. |
| 49 | for (; DeltaIdx != Deltas.size() && |
Chris Lattner | 88d0ed0 | 2007-10-13 00:17:04 +0000 | [diff] [blame] | 50 | Deltas[DeltaIdx].FileLoc < OrigOffset; ++DeltaIdx) |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 51 | ; |
| 52 | |
| 53 | // If there is no a delta for this offset, insert a new delta record. |
| 54 | if (DeltaIdx == Deltas.size() || OrigOffset != Deltas[DeltaIdx].FileLoc) { |
| 55 | // If this is a removal, check to see if this can be folded into |
| 56 | // a delta at the end of the deletion. For example, if we have: |
| 57 | // ABCXDEF (X inserted after C) and delete C, we want to end up with no |
| 58 | // delta because X basically replaced C. |
| 59 | if (Change < 0 && DeltaIdx != Deltas.size() && |
| 60 | OrigOffset-Change == Deltas[DeltaIdx].FileLoc) { |
| 61 | // Adjust the start of the delta to be the start of the deleted region. |
| 62 | Deltas[DeltaIdx].FileLoc += Change; |
| 63 | Deltas[DeltaIdx].Delta += Change; |
| 64 | |
| 65 | // If the delta becomes a noop, remove it. |
| 66 | if (Deltas[DeltaIdx].Delta == 0) |
| 67 | Deltas.erase(Deltas.begin()+DeltaIdx); |
| 68 | return; |
| 69 | } |
| 70 | |
| 71 | // Otherwise, create an entry and return. |
| 72 | Deltas.insert(Deltas.begin()+DeltaIdx, |
| 73 | SourceDelta::get(OrigOffset, Change)); |
| 74 | return; |
| 75 | } |
| 76 | |
| 77 | // Otherwise, we found a delta record at this offset, adjust it. |
| 78 | Deltas[DeltaIdx].Delta += Change; |
| 79 | |
| 80 | // If it is now dead, remove it. |
| 81 | if (Deltas[DeltaIdx].Delta) |
| 82 | Deltas.erase(Deltas.begin()+DeltaIdx); |
| 83 | } |
| 84 | |
Chris Lattner | 8bd12b8 | 2007-09-15 22:21:22 +0000 | [diff] [blame] | 85 | |
| 86 | void RewriteBuffer::RemoveText(unsigned OrigOffset, unsigned Size) { |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 87 | // Nothing to remove, exit early. |
| 88 | if (Size == 0) return; |
| 89 | |
| 90 | unsigned RealOffset = getMappedOffset(OrigOffset, true); |
| 91 | assert(RealOffset+Size < Buffer.size() && "Invalid location"); |
| 92 | |
| 93 | // Remove the dead characters. |
| 94 | Buffer.erase(Buffer.begin()+RealOffset, Buffer.begin()+RealOffset+Size); |
| 95 | |
| 96 | // Add a delta so that future changes are offset correctly. |
| 97 | AddDelta(OrigOffset, -Size); |
Chris Lattner | 8bd12b8 | 2007-09-15 22:21:22 +0000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void RewriteBuffer::InsertText(unsigned OrigOffset, |
| 101 | const char *StrData, unsigned StrLen) { |
Chris Lattner | 03b0710 | 2007-10-13 00:21:23 +0000 | [diff] [blame] | 102 | // Nothing to insert, exit early. |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 103 | if (StrLen == 0) return; |
Chris Lattner | 03b0710 | 2007-10-13 00:21:23 +0000 | [diff] [blame] | 104 | |
| 105 | unsigned RealOffset = getMappedOffset(OrigOffset, true); |
| 106 | assert(RealOffset <= Buffer.size() && "Invalid location"); |
| 107 | |
| 108 | // Remove the dead characters. |
| 109 | Buffer.insert(Buffer.begin()+RealOffset, StrData, StrData+StrLen); |
| 110 | |
| 111 | // Add a delta so that future changes are offset correctly. |
| 112 | AddDelta(OrigOffset, StrLen); |
Chris Lattner | 8bd12b8 | 2007-09-15 22:21:22 +0000 | [diff] [blame] | 113 | } |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 114 | |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 115 | /// ReplaceText - This method replaces a range of characters in the input |
| 116 | /// buffer with a new string. This is effectively a combined "remove/insert" |
| 117 | /// operation. |
| 118 | void RewriteBuffer::ReplaceText(unsigned OrigOffset, unsigned OrigLength, |
| 119 | const char *NewStr, unsigned NewLength) { |
Chris Lattner | 57c337d | 2007-10-13 00:46:29 +0000 | [diff] [blame] | 120 | unsigned RealOffset = getMappedOffset(OrigOffset); |
| 121 | assert(RealOffset+OrigLength <= Buffer.size() && "Invalid location"); |
| 122 | |
| 123 | // Overwrite the common piece. |
| 124 | memcpy(&Buffer[RealOffset], NewStr, std::min(OrigLength, NewLength)); |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 125 | |
Chris Lattner | 57c337d | 2007-10-13 00:46:29 +0000 | [diff] [blame] | 126 | // If replacing without shifting around, just overwrite the text. |
| 127 | if (OrigLength == NewLength) |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 128 | return; |
Chris Lattner | 57c337d | 2007-10-13 00:46:29 +0000 | [diff] [blame] | 129 | |
| 130 | // If inserting more than existed before, this is like an insertion. |
| 131 | if (NewLength > OrigLength) { |
| 132 | Buffer.insert(Buffer.begin()+RealOffset+OrigLength, |
| 133 | NewStr+OrigLength, NewStr+NewLength); |
| 134 | } else { |
| 135 | // If insertion less than existed before, this is like a removal. |
| 136 | Buffer.erase(Buffer.begin()+RealOffset+NewLength, |
| 137 | Buffer.begin()+RealOffset+OrigLength); |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 138 | } |
Chris Lattner | 57c337d | 2007-10-13 00:46:29 +0000 | [diff] [blame] | 139 | AddDelta(OrigOffset, NewLength-OrigLength); |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 140 | } |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 141 | |
| 142 | |
| 143 | //===----------------------------------------------------------------------===// |
| 144 | // Rewriter class |
| 145 | //===----------------------------------------------------------------------===// |
| 146 | |
Chris Lattner | 311ff02 | 2007-10-16 22:36:42 +0000 | [diff] [blame] | 147 | /// getRangeSize - Return the size in bytes of the specified range if they |
| 148 | /// are in the same file. If not, this returns -1. |
| 149 | int Rewriter::getRangeSize(SourceRange Range) const { |
| 150 | if (!isRewritable(Range.getBegin()) || |
| 151 | !isRewritable(Range.getEnd())) return -1; |
| 152 | |
| 153 | unsigned StartOff, StartFileID; |
| 154 | unsigned EndOff , EndFileID; |
| 155 | |
| 156 | StartOff = getLocationOffsetAndFileID(Range.getBegin(), StartFileID); |
| 157 | EndOff = getLocationOffsetAndFileID(Range.getEnd(), EndFileID); |
| 158 | |
| 159 | if (StartFileID != EndFileID) |
| 160 | return -1; |
| 161 | |
Chris Lattner | 9d62a5b | 2007-10-17 21:23:07 +0000 | [diff] [blame] | 162 | // Adjust the end offset to the end of the last token, instead of being the |
| 163 | // start of the last token. |
| 164 | EndOff += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr); |
| 165 | |
Chris Lattner | 311ff02 | 2007-10-16 22:36:42 +0000 | [diff] [blame] | 166 | return EndOff-StartOff; |
| 167 | } |
| 168 | |
| 169 | |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 170 | unsigned Rewriter::getLocationOffsetAndFileID(SourceLocation Loc, |
| 171 | unsigned &FileID) const { |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 172 | std::pair<unsigned,unsigned> V = SourceMgr->getDecomposedFileLoc(Loc); |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 173 | FileID = V.first; |
| 174 | return V.second; |
| 175 | } |
| 176 | |
| 177 | |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 178 | /// getEditBuffer - Get or create a RewriteBuffer for the specified FileID. |
| 179 | /// |
| 180 | RewriteBuffer &Rewriter::getEditBuffer(unsigned FileID) { |
| 181 | std::map<unsigned, RewriteBuffer>::iterator I = |
| 182 | RewriteBuffers.lower_bound(FileID); |
| 183 | if (I != RewriteBuffers.end() && I->first == FileID) |
| 184 | return I->second; |
| 185 | I = RewriteBuffers.insert(I, std::make_pair(FileID, RewriteBuffer())); |
| 186 | |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 187 | std::pair<const char*, const char*> MB = SourceMgr->getBufferData(FileID); |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 188 | I->second.Initialize(MB.first, MB.second); |
| 189 | |
| 190 | return I->second; |
| 191 | } |
| 192 | |
Chris Lattner | 674af95 | 2007-10-16 22:51:17 +0000 | [diff] [blame] | 193 | /// RemoveText - Remove the specified text region. This method is only valid |
| 194 | /// on a rewritable source location. |
| 195 | void Rewriter::RemoveText(SourceLocation Start, unsigned Length) { |
| 196 | unsigned FileID; |
| 197 | unsigned StartOffs = getLocationOffsetAndFileID(Start, FileID); |
| 198 | getEditBuffer(FileID).RemoveText(StartOffs, Length); |
| 199 | } |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 200 | |
Chris Lattner | 674af95 | 2007-10-16 22:51:17 +0000 | [diff] [blame] | 201 | /// ReplaceText - This method replaces a range of characters in the input |
| 202 | /// buffer with a new string. This is effectively a combined "remove/insert" |
| 203 | /// operation. |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 204 | void Rewriter::ReplaceText(SourceLocation Start, unsigned OrigLength, |
| 205 | const char *NewStr, unsigned NewLength) { |
| 206 | assert(isRewritable(Start) && "Not a rewritable location!"); |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 207 | unsigned StartFileID; |
| 208 | unsigned StartOffs = getLocationOffsetAndFileID(Start, StartFileID); |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 209 | |
Chris Lattner | 7c23960 | 2007-10-13 00:11:23 +0000 | [diff] [blame] | 210 | getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength, |
| 211 | NewStr, NewLength); |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 212 | } |
Chris Lattner | 01c5748 | 2007-10-17 22:35:30 +0000 | [diff] [blame] | 213 | |
| 214 | /// ReplaceStmt - This replaces a Stmt/Expr with another, using the pretty |
| 215 | /// printer to generate the replacement code. This returns true if the input |
| 216 | /// could not be rewritten, or false if successful. |
| 217 | bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) { |
| 218 | // Measaure the old text. |
| 219 | int Size = getRangeSize(From->getSourceRange()); |
| 220 | if (Size == -1) |
| 221 | return true; |
| 222 | |
| 223 | // Get the new text. |
| 224 | std::ostringstream S; |
| 225 | To->printPretty(S); |
| 226 | const std::string &Str = S.str(); |
| 227 | |
| 228 | ReplaceText(From->getLocStart(), Size, &Str[0], Str.size()); |
| 229 | return false; |
| 230 | } |
| 231 | |
| 232 | |