blob: d4185648cc266f3074598852ba1f464b0e1bfac6 [file] [log] [blame]
Chris Lattner57629372007-09-15 22:21:22 +00001//===--- 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 Lattnerbf0bfa62007-10-17 22:35:30 +000016#include "clang/AST/Stmt.h"
Chris Lattner93e2a4e2007-10-17 21:23:07 +000017#include "clang/Lex/Lexer.h"
Chris Lattner569faa62007-10-11 18:38:32 +000018#include "clang/Basic/SourceManager.h"
Chris Lattnerbf0bfa62007-10-17 22:35:30 +000019#include <sstream>
Chris Lattner57629372007-09-15 22:21:22 +000020using namespace clang;
21
Chris Lattner3cfe3d32007-10-13 00:11:23 +000022/// 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.
25unsigned 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 Lattnerf5e7f842007-10-13 00:17:04 +000033 Deltas[DeltaIdx].FileLoc < OrigOffset; ++DeltaIdx)
Chris Lattner3cfe3d32007-10-13 00:11:23 +000034 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.
44void 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 Lattnerf5e7f842007-10-13 00:17:04 +000050 Deltas[DeltaIdx].FileLoc < OrigOffset; ++DeltaIdx)
Chris Lattner3cfe3d32007-10-13 00:11:23 +000051 ;
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 Lattner57629372007-09-15 22:21:22 +000085
86void RewriteBuffer::RemoveText(unsigned OrigOffset, unsigned Size) {
Chris Lattner3cfe3d32007-10-13 00:11:23 +000087 // 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 Lattner57629372007-09-15 22:21:22 +000098}
99
100void RewriteBuffer::InsertText(unsigned OrigOffset,
101 const char *StrData, unsigned StrLen) {
Chris Lattnercea0bcc2007-10-13 00:21:23 +0000102 // Nothing to insert, exit early.
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000103 if (StrLen == 0) return;
Chris Lattnercea0bcc2007-10-13 00:21:23 +0000104
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 Lattner57629372007-09-15 22:21:22 +0000113}
Chris Lattner569faa62007-10-11 18:38:32 +0000114
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000115/// 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.
118void RewriteBuffer::ReplaceText(unsigned OrigOffset, unsigned OrigLength,
119 const char *NewStr, unsigned NewLength) {
Chris Lattnere471a3b2007-10-13 00:46:29 +0000120 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 Lattner3cfe3d32007-10-13 00:11:23 +0000125
Chris Lattnere471a3b2007-10-13 00:46:29 +0000126 // If replacing without shifting around, just overwrite the text.
127 if (OrigLength == NewLength)
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000128 return;
Chris Lattnere471a3b2007-10-13 00:46:29 +0000129
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 Lattner3cfe3d32007-10-13 00:11:23 +0000138 }
Chris Lattnere471a3b2007-10-13 00:46:29 +0000139 AddDelta(OrigOffset, NewLength-OrigLength);
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000140}
Chris Lattner569faa62007-10-11 18:38:32 +0000141
142
143//===----------------------------------------------------------------------===//
144// Rewriter class
145//===----------------------------------------------------------------------===//
146
Chris Lattner6fe8b272007-10-16 22:36:42 +0000147/// getRangeSize - Return the size in bytes of the specified range if they
148/// are in the same file. If not, this returns -1.
149int 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 Lattnera8a73682007-10-25 17:17:34 +0000162 unsigned Delta;
163
164 // If no edits have been made to this buffer, the delta between the range
165 // Is just the difference in offsets.
166 std::map<unsigned, RewriteBuffer>::const_iterator I =
167 RewriteBuffers.find(StartFileID);
168 if (I == RewriteBuffers.end()) {
169 Delta = EndOff-StartOff;
170 } else {
171 // Otherwise, subtracted the mapped offsets instead.
172 const RewriteBuffer &RB = I->second;
173 Delta = RB.getMappedOffset(EndOff, true);
174 Delta -= RB.getMappedOffset(StartOff);
175 }
176
177
Chris Lattner93e2a4e2007-10-17 21:23:07 +0000178 // Adjust the end offset to the end of the last token, instead of being the
179 // start of the last token.
Chris Lattnera8a73682007-10-25 17:17:34 +0000180 Delta += Lexer::MeasureTokenLength(Range.getEnd(), *SourceMgr);
Chris Lattner93e2a4e2007-10-17 21:23:07 +0000181
Chris Lattnera8a73682007-10-25 17:17:34 +0000182 return Delta;
Chris Lattner6fe8b272007-10-16 22:36:42 +0000183}
184
185
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000186unsigned Rewriter::getLocationOffsetAndFileID(SourceLocation Loc,
187 unsigned &FileID) const {
Chris Lattner74db1682007-10-16 21:07:07 +0000188 std::pair<unsigned,unsigned> V = SourceMgr->getDecomposedFileLoc(Loc);
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000189 FileID = V.first;
190 return V.second;
191}
192
193
Chris Lattner569faa62007-10-11 18:38:32 +0000194/// getEditBuffer - Get or create a RewriteBuffer for the specified FileID.
195///
196RewriteBuffer &Rewriter::getEditBuffer(unsigned FileID) {
197 std::map<unsigned, RewriteBuffer>::iterator I =
198 RewriteBuffers.lower_bound(FileID);
199 if (I != RewriteBuffers.end() && I->first == FileID)
200 return I->second;
201 I = RewriteBuffers.insert(I, std::make_pair(FileID, RewriteBuffer()));
202
Chris Lattner74db1682007-10-16 21:07:07 +0000203 std::pair<const char*, const char*> MB = SourceMgr->getBufferData(FileID);
Chris Lattner569faa62007-10-11 18:38:32 +0000204 I->second.Initialize(MB.first, MB.second);
205
206 return I->second;
207}
208
Chris Lattnercfd61c82007-10-16 22:51:17 +0000209/// RemoveText - Remove the specified text region. This method is only valid
210/// on a rewritable source location.
211void Rewriter::RemoveText(SourceLocation Start, unsigned Length) {
212 unsigned FileID;
213 unsigned StartOffs = getLocationOffsetAndFileID(Start, FileID);
214 getEditBuffer(FileID).RemoveText(StartOffs, Length);
215}
Chris Lattner569faa62007-10-11 18:38:32 +0000216
Chris Lattnercfd61c82007-10-16 22:51:17 +0000217/// ReplaceText - This method replaces a range of characters in the input
218/// buffer with a new string. This is effectively a combined "remove/insert"
219/// operation.
Chris Lattner569faa62007-10-11 18:38:32 +0000220void Rewriter::ReplaceText(SourceLocation Start, unsigned OrigLength,
221 const char *NewStr, unsigned NewLength) {
222 assert(isRewritable(Start) && "Not a rewritable location!");
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000223 unsigned StartFileID;
224 unsigned StartOffs = getLocationOffsetAndFileID(Start, StartFileID);
Chris Lattner569faa62007-10-11 18:38:32 +0000225
Chris Lattner3cfe3d32007-10-13 00:11:23 +0000226 getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength,
227 NewStr, NewLength);
Chris Lattner569faa62007-10-11 18:38:32 +0000228}
Chris Lattnerbf0bfa62007-10-17 22:35:30 +0000229
230/// ReplaceStmt - This replaces a Stmt/Expr with another, using the pretty
231/// printer to generate the replacement code. This returns true if the input
232/// could not be rewritten, or false if successful.
233bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) {
234 // Measaure the old text.
235 int Size = getRangeSize(From->getSourceRange());
236 if (Size == -1)
237 return true;
238
239 // Get the new text.
240 std::ostringstream S;
241 To->printPretty(S);
242 const std::string &Str = S.str();
243
244 ReplaceText(From->getLocStart(), Size, &Str[0], Str.size());
245 return false;
246}
247
248