blob: d10bf55853f2f851f3bcfbf46c5d8fffa6fec2c1 [file] [log] [blame]
Chris Lattnerb57e3d42008-05-08 06:52:13 +00001//===--- RewriteMacros.cpp - Rewrite macros into their expansions ---------===//
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//
10// This code rewrites macro invocations into their expansions. This gives you
11// a macro expanded file that retains comments and #includes.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang.h"
16#include "clang/Rewrite/Rewriter.h"
17#include "clang/Lex/Preprocessor.h"
18#include "clang/Basic/SourceManager.h"
Chris Lattnerb57e3d42008-05-08 06:52:13 +000019#include "llvm/Support/Streams.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000020#include "llvm/Support/raw_ostream.h"
Chris Lattnerb57e3d42008-05-08 06:52:13 +000021#include "llvm/System/Path.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000022#include "llvm/ADT/OwningPtr.h"
Chris Lattnerb57e3d42008-05-08 06:52:13 +000023using namespace clang;
24
Chris Lattnerec921562008-05-10 00:02:33 +000025/// isSameToken - Return true if the two specified tokens start have the same
26/// content.
27static bool isSameToken(Token &RawTok, Token &PPTok) {
Chris Lattner8ea78e62008-05-31 22:01:01 +000028 // If two tokens have the same kind and the same identifier info, they are
29 // obviously the same.
30 if (PPTok.getKind() == RawTok.getKind() &&
31 PPTok.getIdentifierInfo() == RawTok.getIdentifierInfo())
Chris Lattnerec921562008-05-10 00:02:33 +000032 return true;
33
Chris Lattner8ea78e62008-05-31 22:01:01 +000034 // Otherwise, if they are different but have the same identifier info, they
35 // are also considered to be the same. This allows keywords and raw lexed
36 // identifiers with the same name to be treated the same.
Chris Lattnerec921562008-05-10 00:02:33 +000037 if (PPTok.getIdentifierInfo() &&
38 PPTok.getIdentifierInfo() == RawTok.getIdentifierInfo())
39 return true;
40
41 return false;
42}
43
Chris Lattner0d76fcd2008-07-25 16:29:12 +000044
45/// GetNextRawTok - Return the next raw token in the stream, skipping over
46/// comments if ReturnComment is false.
47static const Token &GetNextRawTok(const std::vector<Token> &RawTokens,
48 unsigned &CurTok, bool ReturnComment) {
49 assert(CurTok < RawTokens.size() && "Overran eof!");
Chris Lattnerec921562008-05-10 00:02:33 +000050
Chris Lattner0d76fcd2008-07-25 16:29:12 +000051 // If the client doesn't want comments and we have one, skip it.
52 if (!ReturnComment && RawTokens[CurTok].is(tok::comment))
53 ++CurTok;
54
55 return RawTokens[CurTok++];
Chris Lattnerec921562008-05-10 00:02:33 +000056}
57
Chris Lattner0d76fcd2008-07-25 16:29:12 +000058
59/// LexRawTokensFromMainFile - Lets all the raw tokens from the main file into
60/// the specified vector.
61static void LexRawTokensFromMainFile(Preprocessor &PP,
62 std::vector<Token> &RawTokens) {
63 SourceManager &SM = PP.getSourceManager();
64 std::pair<const char*,const char*> File =SM.getBufferData(SM.getMainFileID());
65
66 // Create a lexer to lex all the tokens of the main file in raw mode. Even
67 // though it is in raw mode, it will not return comments.
68 Lexer RawLex(SourceLocation::getFileLoc(SM.getMainFileID(), 0),
69 PP.getLangOptions(), File.first, File.second);
70
71 // Switch on comment lexing because we really do want them.
72 RawLex.SetCommentRetentionState(true);
73
74 Token RawTok;
75 do {
Chris Lattner590f0cc2008-10-12 01:15:46 +000076 RawLex.LexFromRawLexer(RawTok);
Chris Lattner0d76fcd2008-07-25 16:29:12 +000077
78 // If we have an identifier with no identifier info for our raw token, look
79 // up the indentifier info. This is important for equality comparison of
80 // identifier tokens.
81 if (RawTok.is(tok::identifier) && !RawTok.getIdentifierInfo())
82 RawTok.setIdentifierInfo(PP.LookUpIdentifierInfo(RawTok));
83
84 RawTokens.push_back(RawTok);
85 } while (RawTok.isNot(tok::eof));
86}
87
88
Chris Lattnerb57e3d42008-05-08 06:52:13 +000089/// RewriteMacrosInInput - Implement -rewrite-macros mode.
Chris Lattner09510522008-05-09 22:43:24 +000090void clang::RewriteMacrosInInput(Preprocessor &PP,const std::string &InFileName,
Chris Lattnerb57e3d42008-05-08 06:52:13 +000091 const std::string &OutFileName) {
92 SourceManager &SM = PP.getSourceManager();
93
94 Rewriter Rewrite;
95 Rewrite.setSourceMgr(SM);
Chris Lattnerec921562008-05-10 00:02:33 +000096 RewriteBuffer &RB = Rewrite.getEditBuffer(SM.getMainFileID());
Chris Lattnerb57e3d42008-05-08 06:52:13 +000097
Chris Lattner0d76fcd2008-07-25 16:29:12 +000098 std::vector<Token> RawTokens;
99 LexRawTokensFromMainFile(PP, RawTokens);
100 unsigned CurRawTok = 0;
101 Token RawTok = GetNextRawTok(RawTokens, CurRawTok, false);
102
Chris Lattnerec921562008-05-10 00:02:33 +0000103
104 // Get the first preprocessing token.
105 PP.EnterMainSourceFile();
106 Token PPTok;
107 PP.Lex(PPTok);
108
109 // Preprocess the input file in parallel with raw lexing the main file. Ignore
110 // all tokens that are preprocessed from a file other than the main file (e.g.
Ted Kremeneka9bc2d92008-08-14 03:45:07 +0000111 // a header). If we see tokens that are in the preprocessed file but not the
Chris Lattnerec921562008-05-10 00:02:33 +0000112 // lexed file, we have a macro expansion. If we see tokens in the lexed file
113 // that aren't in the preprocessed view, we have macros that expand to no
114 // tokens, or macro arguments etc.
115 while (RawTok.isNot(tok::eof) || PPTok.isNot(tok::eof)) {
116 SourceLocation PPLoc = SM.getLogicalLoc(PPTok.getLocation());
117
118 // If PPTok is from a different source file, ignore it.
119 if (!SM.isFromMainFile(PPLoc)) {
120 PP.Lex(PPTok);
121 continue;
122 }
123
124 // If the raw file hits a preprocessor directive, they will be extra tokens
Chris Lattnera59e0502008-07-25 16:37:06 +0000125 // in the raw file that don't exist in the preprocsesed file. However, we
126 // choose to preserve them in the output file and otherwise handle them
127 // specially.
Chris Lattnerec921562008-05-10 00:02:33 +0000128 if (RawTok.is(tok::hash) && RawTok.isAtStartOfLine()) {
Chris Lattnera59e0502008-07-25 16:37:06 +0000129 // If this is a #warning directive or #pragma mark (GNU extensions),
130 // comment the line out.
131 if (RawTokens[CurRawTok].is(tok::identifier)) {
132 const IdentifierInfo *II = RawTokens[CurRawTok].getIdentifierInfo();
133 if (!strcmp(II->getName(), "warning")) {
134 // Comment out #warning.
135 RB.InsertTextAfter(SM.getFullFilePos(RawTok.getLocation()), "//", 2);
136 } else if (!strcmp(II->getName(), "pragma") &&
137 RawTokens[CurRawTok+1].is(tok::identifier) &&
138 !strcmp(RawTokens[CurRawTok+1].getIdentifierInfo()->getName(),
139 "mark")){
140 // Comment out #pragma mark.
141 RB.InsertTextAfter(SM.getFullFilePos(RawTok.getLocation()), "//", 2);
142 }
143 }
144
145 // Otherwise, if this is a #include or some other directive, just leave it
146 // in the file by skipping over the line.
Chris Lattner0d76fcd2008-07-25 16:29:12 +0000147 RawTok = GetNextRawTok(RawTokens, CurRawTok, false);
Chris Lattnerec921562008-05-10 00:02:33 +0000148 while (!RawTok.isAtStartOfLine() && RawTok.isNot(tok::eof))
Chris Lattner0d76fcd2008-07-25 16:29:12 +0000149 RawTok = GetNextRawTok(RawTokens, CurRawTok, false);
Chris Lattnerec921562008-05-10 00:02:33 +0000150 continue;
151 }
152
153 // Okay, both tokens are from the same file. Get their offsets from the
154 // start of the file.
155 unsigned PPOffs = SM.getFullFilePos(PPLoc);
156 unsigned RawOffs = SM.getFullFilePos(RawTok.getLocation());
157
158 // If the offsets are the same and the token kind is the same, ignore them.
159 if (PPOffs == RawOffs && isSameToken(RawTok, PPTok)) {
Chris Lattner0d76fcd2008-07-25 16:29:12 +0000160 RawTok = GetNextRawTok(RawTokens, CurRawTok, false);
Chris Lattnerec921562008-05-10 00:02:33 +0000161 PP.Lex(PPTok);
162 continue;
163 }
164
165 // If the PP token is farther along than the raw token, something was
166 // deleted. Comment out the raw token.
167 if (RawOffs <= PPOffs) {
168 // Comment out a whole run of tokens instead of bracketing each one with
Chris Lattner1a787352008-06-03 06:10:17 +0000169 // comments. Add a leading space if RawTok didn't have one.
170 bool HasSpace = RawTok.hasLeadingSpace();
171 RB.InsertTextAfter(RawOffs, " /*"+HasSpace, 2+!HasSpace);
Chris Lattnerec921562008-05-10 00:02:33 +0000172 unsigned EndPos;
173
Chris Lattnerec921562008-05-10 00:02:33 +0000174 do {
175 EndPos = RawOffs+RawTok.getLength();
176
Chris Lattner0d76fcd2008-07-25 16:29:12 +0000177 RawTok = GetNextRawTok(RawTokens, CurRawTok, true);
Chris Lattnerec921562008-05-10 00:02:33 +0000178 RawOffs = SM.getFullFilePos(RawTok.getLocation());
179
180 if (RawTok.is(tok::comment)) {
Chris Lattnerec921562008-05-10 00:02:33 +0000181 // Skip past the comment.
Chris Lattner0d76fcd2008-07-25 16:29:12 +0000182 RawTok = GetNextRawTok(RawTokens, CurRawTok, false);
Chris Lattnerec921562008-05-10 00:02:33 +0000183 break;
184 }
185
186 } while (RawOffs <= PPOffs && !RawTok.isAtStartOfLine() &&
187 (PPOffs != RawOffs || !isSameToken(RawTok, PPTok)));
Chris Lattnerec921562008-05-10 00:02:33 +0000188
189 RB.InsertTextBefore(EndPos, "*/", 2);
190 continue;
191 }
192
193 // Otherwise, there was a replacement an expansion. Insert the new token
194 // in the output buffer. Insert the whole run of new tokens at once to get
195 // them in the right order.
196 unsigned InsertPos = PPOffs;
197 std::string Expansion;
198 while (PPOffs < RawOffs) {
199 Expansion += ' ' + PP.getSpelling(PPTok);
200 PP.Lex(PPTok);
201 PPLoc = SM.getLogicalLoc(PPTok.getLocation());
202 PPOffs = SM.getFullFilePos(PPLoc);
203 }
204 Expansion += ' ';
205 RB.InsertTextBefore(InsertPos, &Expansion[0], Expansion.size());
206 }
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000207
208 // Create the output file.
Ted Kremeneka95d3752008-09-13 05:16:45 +0000209 llvm::OwningPtr<llvm::raw_ostream> OwnedStream;
210 llvm::raw_ostream *OutFile;
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000211 if (OutFileName == "-") {
Ted Kremeneka95d3752008-09-13 05:16:45 +0000212 OutFile = &llvm::outs();
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000213 } else if (!OutFileName.empty()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +0000214 std::string Err;
Daniel Dunbar26fb2722008-11-13 05:09:21 +0000215 OutFile = new llvm::raw_fd_ostream(OutFileName.c_str(), false, Err);
Ted Kremeneka95d3752008-09-13 05:16:45 +0000216 OwnedStream.reset(OutFile);
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000217 } else if (InFileName == "-") {
Ted Kremeneka95d3752008-09-13 05:16:45 +0000218 OutFile = &llvm::outs();
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000219 } else {
220 llvm::sys::Path Path(InFileName);
221 Path.eraseSuffix();
222 Path.appendSuffix("cpp");
Ted Kremeneka95d3752008-09-13 05:16:45 +0000223 std::string Err;
Daniel Dunbar26fb2722008-11-13 05:09:21 +0000224 OutFile = new llvm::raw_fd_ostream(Path.toString().c_str(), false, Err);
Ted Kremeneka95d3752008-09-13 05:16:45 +0000225 OwnedStream.reset(OutFile);
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000226 }
227
228 // Get the buffer corresponding to MainFileID. If we haven't changed it, then
229 // we are done.
230 if (const RewriteBuffer *RewriteBuf =
Chris Lattnerec921562008-05-10 00:02:33 +0000231 Rewrite.getRewriteBufferFor(SM.getMainFileID())) {
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000232 //printf("Changed:\n");
233 *OutFile << std::string(RewriteBuf->begin(), RewriteBuf->end());
234 } else {
235 fprintf(stderr, "No changes\n");
236 }
Ted Kremeneka95d3752008-09-13 05:16:45 +0000237 OutFile->flush();
Chris Lattnerb57e3d42008-05-08 06:52:13 +0000238}