Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- PrintPreprocessedOutput.cpp - Implement the -E mode --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This code simply runs the preprocessor on the input file and prints out the |
| 11 | // result. This is the traditional behavior of the -E option. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang.h" |
| 16 | #include "clang/Lex/PPCallbacks.h" |
| 17 | #include "clang/Lex/Preprocessor.h" |
| 18 | #include "clang/Lex/Pragma.h" |
| 19 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 6619f66 | 2008-04-08 04:16:20 +0000 | [diff] [blame] | 20 | #include "clang/Basic/Diagnostic.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallString.h" |
| 22 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | 6619f66 | 2008-04-08 04:16:20 +0000 | [diff] [blame] | 23 | #include "llvm/System/Path.h" |
| 24 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 25 | #include "llvm/Config/config.h" |
Chris Lattner | 93b4f30 | 2008-08-17 01:47:12 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 27 | #include <cstdio> |
| 28 | using namespace clang; |
| 29 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 30 | //===----------------------------------------------------------------------===// |
| 31 | // Preprocessed token printer |
| 32 | //===----------------------------------------------------------------------===// |
| 33 | |
| 34 | static llvm::cl::opt<bool> |
| 35 | DisableLineMarkers("P", llvm::cl::desc("Disable linemarker output in -E mode")); |
| 36 | static llvm::cl::opt<bool> |
| 37 | EnableCommentOutput("C", llvm::cl::desc("Enable comment output in -E mode")); |
| 38 | static llvm::cl::opt<bool> |
| 39 | EnableMacroCommentOutput("CC", |
| 40 | llvm::cl::desc("Enable comment output in -E mode, " |
| 41 | "even from macro expansions")); |
| 42 | |
| 43 | namespace { |
| 44 | class PrintPPOutputPPCallbacks : public PPCallbacks { |
| 45 | Preprocessor &PP; |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 46 | public: |
| 47 | llvm::raw_ostream &OS; |
| 48 | private: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 49 | unsigned CurLine; |
| 50 | bool EmittedTokensOnThisLine; |
| 51 | DirectoryLookup::DirType FileType; |
| 52 | llvm::SmallString<512> CurFilename; |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 53 | bool Initialized; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 54 | public: |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 55 | PrintPPOutputPPCallbacks(Preprocessor &pp, llvm::raw_ostream &os) |
| 56 | : PP(pp), OS(os) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 57 | CurLine = 0; |
| 58 | CurFilename += "<uninit>"; |
| 59 | EmittedTokensOnThisLine = false; |
| 60 | FileType = DirectoryLookup::NormalHeaderDir; |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 61 | Initialized = false; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | void SetEmittedTokensOnThisLine() { EmittedTokensOnThisLine = true; } |
| 65 | bool hasEmittedTokensOnThisLine() const { return EmittedTokensOnThisLine; } |
| 66 | |
| 67 | virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, |
| 68 | DirectoryLookup::DirType FileType); |
| 69 | virtual void Ident(SourceLocation Loc, const std::string &str); |
| 70 | |
| 71 | |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 72 | bool HandleFirstTokOnLine(Token &Tok); |
| 73 | bool MoveToLine(SourceLocation Loc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 74 | bool AvoidConcat(const Token &PrevTok, const Token &Tok); |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 75 | void WriteLineInfo(unsigned LineNo, const char *Extra=0, unsigned ExtraLen=0); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 76 | }; |
Chris Lattner | 6619f66 | 2008-04-08 04:16:20 +0000 | [diff] [blame] | 77 | } // end anonymous namespace |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 78 | |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 79 | void PrintPPOutputPPCallbacks::WriteLineInfo(unsigned LineNo, |
| 80 | const char *Extra, |
| 81 | unsigned ExtraLen) { |
| 82 | if (EmittedTokensOnThisLine) { |
| 83 | OS << '\n'; |
| 84 | EmittedTokensOnThisLine = false; |
| 85 | } |
| 86 | |
| 87 | OS << '#' << ' ' << LineNo << ' ' << '"'; |
| 88 | OS.write(&CurFilename[0], CurFilename.size()); |
| 89 | OS << '"'; |
| 90 | |
| 91 | if (ExtraLen) |
| 92 | OS.write(Extra, ExtraLen); |
| 93 | |
| 94 | if (FileType == DirectoryLookup::SystemHeaderDir) |
| 95 | OS.write(" 3", 2); |
| 96 | else if (FileType == DirectoryLookup::ExternCSystemHeaderDir) |
| 97 | OS.write(" 3 4", 4); |
| 98 | OS << '\n'; |
| 99 | } |
| 100 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 101 | /// MoveToLine - Move the output to the source line specified by the location |
| 102 | /// object. We can do this by emitting some number of \n's, or be emitting a |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 103 | /// #line directive. This returns false if already at the specified line, true |
| 104 | /// if some newlines were emitted. |
| 105 | bool PrintPPOutputPPCallbacks::MoveToLine(SourceLocation Loc) { |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 106 | unsigned LineNo = PP.getSourceManager().getLogicalLineNumber(Loc); |
| 107 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 108 | if (DisableLineMarkers) { |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 109 | if (LineNo == CurLine) return false; |
| 110 | |
| 111 | CurLine = LineNo; |
| 112 | |
| 113 | if (!EmittedTokensOnThisLine) |
| 114 | return true; |
| 115 | |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 116 | OS << '\n'; |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 117 | EmittedTokensOnThisLine = false; |
| 118 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 119 | } |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 121 | // If this line is "close enough" to the original line, just print newlines, |
| 122 | // otherwise print a #line directive. |
| 123 | if (LineNo-CurLine < 8) { |
| 124 | if (LineNo-CurLine == 1) |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 125 | OS << '\n'; |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 126 | else if (LineNo == CurLine) |
| 127 | return false; // Phys line moved, but logical line didn't. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 128 | else { |
| 129 | const char *NewLines = "\n\n\n\n\n\n\n\n"; |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 130 | OS.write(NewLines, LineNo-CurLine); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 131 | } |
| 132 | } else { |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 133 | WriteLineInfo(LineNo, 0, 0); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 134 | } |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 135 | |
| 136 | CurLine = LineNo; |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 137 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | |
| 141 | /// FileChanged - Whenever the preprocessor enters or exits a #include file |
| 142 | /// it invokes this handler. Update our conception of the current source |
| 143 | /// position. |
| 144 | void PrintPPOutputPPCallbacks::FileChanged(SourceLocation Loc, |
| 145 | FileChangeReason Reason, |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 146 | DirectoryLookup::DirType NewFileType) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 147 | // Unless we are exiting a #include, make sure to skip ahead to the line the |
| 148 | // #include directive was at. |
| 149 | SourceManager &SourceMgr = PP.getSourceManager(); |
| 150 | if (Reason == PPCallbacks::EnterFile) { |
| 151 | MoveToLine(SourceMgr.getIncludeLoc(Loc)); |
| 152 | } else if (Reason == PPCallbacks::SystemHeaderPragma) { |
| 153 | MoveToLine(Loc); |
| 154 | |
| 155 | // TODO GCC emits the # directive for this directive on the line AFTER the |
| 156 | // directive and emits a bunch of spaces that aren't needed. Emulate this |
| 157 | // strange behavior. |
| 158 | } |
| 159 | |
| 160 | Loc = SourceMgr.getLogicalLoc(Loc); |
| 161 | CurLine = SourceMgr.getLineNumber(Loc); |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 163 | if (DisableLineMarkers) return; |
| 164 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 165 | CurFilename.clear(); |
| 166 | CurFilename += SourceMgr.getSourceName(Loc); |
| 167 | Lexer::Stringify(CurFilename); |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 168 | FileType = NewFileType; |
| 169 | |
| 170 | if (!Initialized) { |
| 171 | WriteLineInfo(CurLine); |
| 172 | Initialized = true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 173 | } |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 174 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 175 | switch (Reason) { |
| 176 | case PPCallbacks::EnterFile: |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 177 | WriteLineInfo(CurLine, " 1", 2); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 178 | break; |
| 179 | case PPCallbacks::ExitFile: |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 180 | WriteLineInfo(CurLine, " 2", 2); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 181 | break; |
Daniel Dunbar | e0d5946 | 2008-09-05 03:22:57 +0000 | [diff] [blame] | 182 | case PPCallbacks::SystemHeaderPragma: |
| 183 | case PPCallbacks::RenameFile: |
| 184 | WriteLineInfo(CurLine); |
| 185 | break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 186 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | /// HandleIdent - Handle #ident directives when read by the preprocessor. |
| 190 | /// |
| 191 | void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, const std::string &S) { |
| 192 | MoveToLine(Loc); |
| 193 | |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 194 | OS.write("#ident ", strlen("#ident ")); |
| 195 | OS.write(&S[0], S.size()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 196 | EmittedTokensOnThisLine = true; |
| 197 | } |
| 198 | |
| 199 | /// HandleFirstTokOnLine - When emitting a preprocessed file in -E mode, this |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 200 | /// is called for the first token on each new line. If this really is the start |
| 201 | /// of a new logical line, handle it and return true, otherwise return false. |
| 202 | /// This may not be the start of a logical line because the "start of line" |
| 203 | /// marker is set for physical lines, not logical ones. |
| 204 | bool PrintPPOutputPPCallbacks::HandleFirstTokOnLine(Token &Tok) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 205 | // Figure out what line we went to and insert the appropriate number of |
| 206 | // newline characters. |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 207 | if (!MoveToLine(Tok.getLocation())) |
| 208 | return false; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 209 | |
| 210 | // Print out space characters so that the first token on a line is |
| 211 | // indented for easy reading. |
| 212 | const SourceManager &SourceMgr = PP.getSourceManager(); |
| 213 | unsigned ColNo = SourceMgr.getLogicalColumnNumber(Tok.getLocation()); |
| 214 | |
| 215 | // This hack prevents stuff like: |
| 216 | // #define HASH # |
| 217 | // HASH define foo bar |
| 218 | // From having the # character end up at column 1, which makes it so it |
| 219 | // is not handled as a #define next time through the preprocessor if in |
| 220 | // -fpreprocessed mode. |
Chris Lattner | 3b49415 | 2007-10-09 18:03:42 +0000 | [diff] [blame] | 221 | if (ColNo <= 1 && Tok.is(tok::hash)) |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 222 | OS << ' '; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 223 | |
| 224 | // Otherwise, indent the appropriate number of spaces. |
| 225 | for (; ColNo > 1; --ColNo) |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 226 | OS << ' '; |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 227 | |
| 228 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | namespace { |
| 232 | struct UnknownPragmaHandler : public PragmaHandler { |
| 233 | const char *Prefix; |
| 234 | PrintPPOutputPPCallbacks *Callbacks; |
| 235 | |
| 236 | UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks) |
| 237 | : PragmaHandler(0), Prefix(prefix), Callbacks(callbacks) {} |
| 238 | virtual void HandlePragma(Preprocessor &PP, Token &PragmaTok) { |
| 239 | // Figure out what line we went to and insert the appropriate number of |
| 240 | // newline characters. |
| 241 | Callbacks->MoveToLine(PragmaTok.getLocation()); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 242 | Callbacks->OS.write(Prefix, strlen(Prefix)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 243 | |
| 244 | // Read and print all of the pragma tokens. |
Chris Lattner | 3b49415 | 2007-10-09 18:03:42 +0000 | [diff] [blame] | 245 | while (PragmaTok.isNot(tok::eom)) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 246 | if (PragmaTok.hasLeadingSpace()) |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 247 | Callbacks->OS << ' '; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 248 | std::string TokSpell = PP.getSpelling(PragmaTok); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 249 | Callbacks->OS.write(&TokSpell[0], TokSpell.size()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 250 | PP.LexUnexpandedToken(PragmaTok); |
| 251 | } |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 252 | Callbacks->OS << '\n'; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 253 | } |
| 254 | }; |
| 255 | } // end anonymous namespace |
| 256 | |
| 257 | |
| 258 | enum AvoidConcatInfo { |
| 259 | /// By default, a token never needs to avoid concatenation. Most tokens (e.g. |
| 260 | /// ',', ')', etc) don't cause a problem when concatenated. |
| 261 | aci_never_avoid_concat = 0, |
| 262 | |
| 263 | /// aci_custom_firstchar - AvoidConcat contains custom code to handle this |
| 264 | /// token's requirements, and it needs to know the first character of the |
| 265 | /// token. |
| 266 | aci_custom_firstchar = 1, |
| 267 | |
| 268 | /// aci_custom - AvoidConcat contains custom code to handle this token's |
| 269 | /// requirements, but it doesn't need to know the first character of the |
| 270 | /// token. |
| 271 | aci_custom = 2, |
| 272 | |
| 273 | /// aci_avoid_equal - Many tokens cannot be safely followed by an '=' |
| 274 | /// character. For example, "<<" turns into "<<=" when followed by an =. |
| 275 | aci_avoid_equal = 4 |
| 276 | }; |
| 277 | |
| 278 | /// This array contains information for each token on what action to take when |
| 279 | /// avoiding concatenation of tokens in the AvoidConcat method. |
| 280 | static char TokenInfo[tok::NUM_TOKENS]; |
| 281 | |
| 282 | /// InitAvoidConcatTokenInfo - Tokens that must avoid concatenation should be |
| 283 | /// marked by this function. |
| 284 | static void InitAvoidConcatTokenInfo() { |
| 285 | // These tokens have custom code in AvoidConcat. |
| 286 | TokenInfo[tok::identifier ] |= aci_custom; |
| 287 | TokenInfo[tok::numeric_constant] |= aci_custom_firstchar; |
| 288 | TokenInfo[tok::period ] |= aci_custom_firstchar; |
| 289 | TokenInfo[tok::amp ] |= aci_custom_firstchar; |
| 290 | TokenInfo[tok::plus ] |= aci_custom_firstchar; |
| 291 | TokenInfo[tok::minus ] |= aci_custom_firstchar; |
| 292 | TokenInfo[tok::slash ] |= aci_custom_firstchar; |
| 293 | TokenInfo[tok::less ] |= aci_custom_firstchar; |
| 294 | TokenInfo[tok::greater ] |= aci_custom_firstchar; |
| 295 | TokenInfo[tok::pipe ] |= aci_custom_firstchar; |
| 296 | TokenInfo[tok::percent ] |= aci_custom_firstchar; |
| 297 | TokenInfo[tok::colon ] |= aci_custom_firstchar; |
| 298 | TokenInfo[tok::hash ] |= aci_custom_firstchar; |
| 299 | TokenInfo[tok::arrow ] |= aci_custom_firstchar; |
| 300 | |
| 301 | // These tokens change behavior if followed by an '='. |
| 302 | TokenInfo[tok::amp ] |= aci_avoid_equal; // &= |
| 303 | TokenInfo[tok::plus ] |= aci_avoid_equal; // += |
| 304 | TokenInfo[tok::minus ] |= aci_avoid_equal; // -= |
| 305 | TokenInfo[tok::slash ] |= aci_avoid_equal; // /= |
| 306 | TokenInfo[tok::less ] |= aci_avoid_equal; // <= |
| 307 | TokenInfo[tok::greater ] |= aci_avoid_equal; // >= |
| 308 | TokenInfo[tok::pipe ] |= aci_avoid_equal; // |= |
| 309 | TokenInfo[tok::percent ] |= aci_avoid_equal; // %= |
| 310 | TokenInfo[tok::star ] |= aci_avoid_equal; // *= |
| 311 | TokenInfo[tok::exclaim ] |= aci_avoid_equal; // != |
| 312 | TokenInfo[tok::lessless ] |= aci_avoid_equal; // <<= |
| 313 | TokenInfo[tok::greaterequal] |= aci_avoid_equal; // >>= |
| 314 | TokenInfo[tok::caret ] |= aci_avoid_equal; // ^= |
| 315 | TokenInfo[tok::equal ] |= aci_avoid_equal; // == |
| 316 | } |
| 317 | |
Chris Lattner | afa4012 | 2008-01-15 05:22:14 +0000 | [diff] [blame] | 318 | /// StartsWithL - Return true if the spelling of this token starts with 'L'. |
Chris Lattner | 400f024 | 2008-01-15 05:14:19 +0000 | [diff] [blame] | 319 | static bool StartsWithL(const Token &Tok, Preprocessor &PP) { |
Chris Lattner | 400f024 | 2008-01-15 05:14:19 +0000 | [diff] [blame] | 320 | if (!Tok.needsCleaning()) { |
| 321 | SourceManager &SrcMgr = PP.getSourceManager(); |
| 322 | return *SrcMgr.getCharacterData(SrcMgr.getPhysicalLoc(Tok.getLocation())) |
| 323 | == 'L'; |
| 324 | } |
| 325 | |
| 326 | if (Tok.getLength() < 256) { |
Chris Lattner | afa4012 | 2008-01-15 05:22:14 +0000 | [diff] [blame] | 327 | char Buffer[256]; |
Chris Lattner | 400f024 | 2008-01-15 05:14:19 +0000 | [diff] [blame] | 328 | const char *TokPtr = Buffer; |
| 329 | PP.getSpelling(Tok, TokPtr); |
| 330 | return TokPtr[0] == 'L'; |
| 331 | } |
| 332 | |
| 333 | return PP.getSpelling(Tok)[0] == 'L'; |
| 334 | } |
| 335 | |
Chris Lattner | afa4012 | 2008-01-15 05:22:14 +0000 | [diff] [blame] | 336 | /// IsIdentifierL - Return true if the spelling of this token is literally 'L'. |
| 337 | static bool IsIdentifierL(const Token &Tok, Preprocessor &PP) { |
| 338 | if (!Tok.needsCleaning()) { |
| 339 | if (Tok.getLength() != 1) |
| 340 | return false; |
| 341 | SourceManager &SrcMgr = PP.getSourceManager(); |
| 342 | return *SrcMgr.getCharacterData(SrcMgr.getPhysicalLoc(Tok.getLocation())) |
| 343 | == 'L'; |
| 344 | } |
| 345 | |
| 346 | if (Tok.getLength() < 256) { |
| 347 | char Buffer[256]; |
| 348 | const char *TokPtr = Buffer; |
| 349 | if (PP.getSpelling(Tok, TokPtr) != 1) |
| 350 | return false; |
| 351 | return TokPtr[0] == 'L'; |
| 352 | } |
| 353 | |
| 354 | return PP.getSpelling(Tok) == "L"; |
| 355 | } |
| 356 | |
| 357 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 358 | /// AvoidConcat - If printing PrevTok immediately followed by Tok would cause |
| 359 | /// the two individual tokens to be lexed as a single token, return true (which |
| 360 | /// causes a space to be printed between them). This allows the output of -E |
| 361 | /// mode to be lexed to the same token stream as lexing the input directly |
| 362 | /// would. |
| 363 | /// |
| 364 | /// This code must conservatively return true if it doesn't want to be 100% |
| 365 | /// accurate. This will cause the output to include extra space characters, but |
| 366 | /// the resulting output won't have incorrect concatenations going on. Examples |
| 367 | /// include "..", which we print with a space between, because we don't want to |
| 368 | /// track enough to tell "x.." from "...". |
| 369 | bool PrintPPOutputPPCallbacks::AvoidConcat(const Token &PrevTok, |
| 370 | const Token &Tok) { |
| 371 | char Buffer[256]; |
| 372 | |
| 373 | tok::TokenKind PrevKind = PrevTok.getKind(); |
| 374 | if (PrevTok.getIdentifierInfo()) // Language keyword or named operator. |
| 375 | PrevKind = tok::identifier; |
| 376 | |
| 377 | // Look up information on when we should avoid concatenation with prevtok. |
| 378 | unsigned ConcatInfo = TokenInfo[PrevKind]; |
| 379 | |
| 380 | // If prevtok never causes a problem for anything after it, return quickly. |
| 381 | if (ConcatInfo == 0) return false; |
| 382 | |
| 383 | if (ConcatInfo & aci_avoid_equal) { |
| 384 | // If the next token is '=' or '==', avoid concatenation. |
Chris Lattner | 3b49415 | 2007-10-09 18:03:42 +0000 | [diff] [blame] | 385 | if (Tok.is(tok::equal) || Tok.is(tok::equalequal)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 386 | return true; |
| 387 | ConcatInfo &= ~aci_avoid_equal; |
| 388 | } |
| 389 | |
| 390 | if (ConcatInfo == 0) return false; |
| 391 | |
| 392 | |
| 393 | |
| 394 | // Basic algorithm: we look at the first character of the second token, and |
| 395 | // determine whether it, if appended to the first token, would form (or would |
| 396 | // contribute) to a larger token if concatenated. |
| 397 | char FirstChar = 0; |
| 398 | if (ConcatInfo & aci_custom) { |
| 399 | // If the token does not need to know the first character, don't get it. |
| 400 | } else if (IdentifierInfo *II = Tok.getIdentifierInfo()) { |
| 401 | // Avoid spelling identifiers, the most common form of token. |
| 402 | FirstChar = II->getName()[0]; |
| 403 | } else if (!Tok.needsCleaning()) { |
| 404 | SourceManager &SrcMgr = PP.getSourceManager(); |
| 405 | FirstChar = |
| 406 | *SrcMgr.getCharacterData(SrcMgr.getPhysicalLoc(Tok.getLocation())); |
| 407 | } else if (Tok.getLength() < 256) { |
| 408 | const char *TokPtr = Buffer; |
| 409 | PP.getSpelling(Tok, TokPtr); |
| 410 | FirstChar = TokPtr[0]; |
| 411 | } else { |
| 412 | FirstChar = PP.getSpelling(Tok)[0]; |
| 413 | } |
| 414 | |
| 415 | switch (PrevKind) { |
| 416 | default: assert(0 && "InitAvoidConcatTokenInfo built wrong"); |
| 417 | case tok::identifier: // id+id or id+number or id+L"foo". |
Chris Lattner | 3b49415 | 2007-10-09 18:03:42 +0000 | [diff] [blame] | 418 | if (Tok.is(tok::numeric_constant) || Tok.getIdentifierInfo() || |
| 419 | Tok.is(tok::wide_string_literal) /* || |
| 420 | Tok.is(tok::wide_char_literal)*/) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 421 | return true; |
Chris Lattner | 400f024 | 2008-01-15 05:14:19 +0000 | [diff] [blame] | 422 | |
| 423 | // If this isn't identifier + string, we're done. |
| 424 | if (Tok.isNot(tok::char_constant) && Tok.isNot(tok::string_literal)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 425 | return false; |
| 426 | |
| 427 | // FIXME: need a wide_char_constant! |
Chris Lattner | 400f024 | 2008-01-15 05:14:19 +0000 | [diff] [blame] | 428 | |
| 429 | // If the string was a wide string L"foo" or wide char L'f', it would concat |
| 430 | // with the previous identifier into fooL"bar". Avoid this. |
| 431 | if (StartsWithL(Tok, PP)) |
| 432 | return true; |
| 433 | |
Chris Lattner | afa4012 | 2008-01-15 05:22:14 +0000 | [diff] [blame] | 434 | // Otherwise, this is a narrow character or string. If the *identifier* is |
| 435 | // a literal 'L', avoid pasting L "foo" -> L"foo". |
| 436 | return IsIdentifierL(PrevTok, PP); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 437 | case tok::numeric_constant: |
Chris Lattner | 3b49415 | 2007-10-09 18:03:42 +0000 | [diff] [blame] | 438 | return isalnum(FirstChar) || Tok.is(tok::numeric_constant) || |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 439 | FirstChar == '+' || FirstChar == '-' || FirstChar == '.'; |
| 440 | case tok::period: // ..., .*, .1234 |
| 441 | return FirstChar == '.' || FirstChar == '*' || isdigit(FirstChar); |
| 442 | case tok::amp: // && |
| 443 | return FirstChar == '&'; |
| 444 | case tok::plus: // ++ |
| 445 | return FirstChar == '+'; |
| 446 | case tok::minus: // --, ->, ->* |
| 447 | return FirstChar == '-' || FirstChar == '>'; |
| 448 | case tok::slash: //, /*, // |
| 449 | return FirstChar == '*' || FirstChar == '/'; |
| 450 | case tok::less: // <<, <<=, <:, <% |
| 451 | return FirstChar == '<' || FirstChar == ':' || FirstChar == '%'; |
| 452 | case tok::greater: // >>, >>= |
| 453 | return FirstChar == '>'; |
| 454 | case tok::pipe: // || |
| 455 | return FirstChar == '|'; |
| 456 | case tok::percent: // %>, %: |
| 457 | return FirstChar == '>' || FirstChar == ':'; |
| 458 | case tok::colon: // ::, :> |
| 459 | return FirstChar == ':' || FirstChar == '>'; |
| 460 | case tok::hash: // ##, #@, %:%: |
| 461 | return FirstChar == '#' || FirstChar == '@' || FirstChar == '%'; |
| 462 | case tok::arrow: // ->* |
| 463 | return FirstChar == '*'; |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | /// DoPrintPreprocessedInput - This implements -E mode. |
| 468 | /// |
Chris Lattner | 6619f66 | 2008-04-08 04:16:20 +0000 | [diff] [blame] | 469 | void clang::DoPrintPreprocessedInput(Preprocessor &PP, |
| 470 | const std::string &OutFile) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 471 | // Inform the preprocessor whether we want it to retain comments or not, due |
| 472 | // to -C or -CC. |
| 473 | PP.SetCommentRetentionState(EnableCommentOutput, EnableMacroCommentOutput); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 474 | InitAvoidConcatTokenInfo(); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 475 | |
| 476 | |
| 477 | // Open the output buffer. |
Chris Lattner | 1be9690 | 2008-08-17 03:54:39 +0000 | [diff] [blame] | 478 | std::string Err; |
Chris Lattner | 03074ed | 2008-08-17 07:09:08 +0000 | [diff] [blame] | 479 | llvm::raw_fd_ostream OS(OutFile.empty() ? "-" : OutFile.c_str(), Err); |
Chris Lattner | 1be9690 | 2008-08-17 03:54:39 +0000 | [diff] [blame] | 480 | if (!Err.empty()) { |
| 481 | fprintf(stderr, "%s\n", Err.c_str()); |
| 482 | exit(1); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 483 | } |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 484 | |
Chris Lattner | 1be9690 | 2008-08-17 03:54:39 +0000 | [diff] [blame] | 485 | OS.SetBufferSize(64*1024); |
| 486 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 487 | |
| 488 | Token Tok, PrevTok; |
| 489 | char Buffer[256]; |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 490 | PrintPPOutputPPCallbacks *Callbacks = new PrintPPOutputPPCallbacks(PP, OS); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 491 | PP.setPPCallbacks(Callbacks); |
| 492 | |
| 493 | PP.AddPragmaHandler(0, new UnknownPragmaHandler("#pragma", Callbacks)); |
| 494 | PP.AddPragmaHandler("GCC", new UnknownPragmaHandler("#pragma GCC",Callbacks)); |
| 495 | |
| 496 | // After we have configured the preprocessor, enter the main file. |
| 497 | |
| 498 | // Start parsing the specified input file. |
Ted Kremenek | 17861c5 | 2007-12-19 22:51:13 +0000 | [diff] [blame] | 499 | PP.EnterMainSourceFile(); |
Chris Lattner | 3eddc86 | 2007-10-10 20:45:16 +0000 | [diff] [blame] | 500 | |
| 501 | // Consume all of the tokens that come from the predefines buffer. Those |
| 502 | // should not be emitted into the output and are guaranteed to be at the |
| 503 | // start. |
| 504 | const SourceManager &SourceMgr = PP.getSourceManager(); |
| 505 | do PP.Lex(Tok); |
Chris Lattner | 890c593 | 2007-10-10 23:31:03 +0000 | [diff] [blame] | 506 | while (Tok.isNot(tok::eof) && Tok.getLocation().isFileID() && |
Chris Lattner | 3eddc86 | 2007-10-10 20:45:16 +0000 | [diff] [blame] | 507 | !strcmp(SourceMgr.getSourceName(Tok.getLocation()), "<predefines>")); |
| 508 | |
| 509 | while (1) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 510 | |
| 511 | // If this token is at the start of a line, emit newlines if needed. |
Chris Lattner | 6c45129 | 2007-12-09 21:11:08 +0000 | [diff] [blame] | 512 | if (Tok.isAtStartOfLine() && Callbacks->HandleFirstTokOnLine(Tok)) { |
| 513 | // done. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 514 | } else if (Tok.hasLeadingSpace() || |
| 515 | // If we haven't emitted a token on this line yet, PrevTok isn't |
| 516 | // useful to look at and no concatenation could happen anyway. |
| 517 | (Callbacks->hasEmittedTokensOnThisLine() && |
| 518 | // Don't print "-" next to "-", it would form "--". |
| 519 | Callbacks->AvoidConcat(PrevTok, Tok))) { |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 520 | OS << ' '; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | if (IdentifierInfo *II = Tok.getIdentifierInfo()) { |
| 524 | const char *Str = II->getName(); |
| 525 | unsigned Len = Tok.needsCleaning() ? strlen(Str) : Tok.getLength(); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 526 | OS.write(Str, Len); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 527 | } else if (Tok.getLength() < 256) { |
| 528 | const char *TokPtr = Buffer; |
| 529 | unsigned Len = PP.getSpelling(Tok, TokPtr); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 530 | OS.write(TokPtr, Len); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 531 | } else { |
| 532 | std::string S = PP.getSpelling(Tok); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 533 | OS.write(&S[0], S.size()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 534 | } |
| 535 | Callbacks->SetEmittedTokensOnThisLine(); |
Chris Lattner | 3eddc86 | 2007-10-10 20:45:16 +0000 | [diff] [blame] | 536 | |
| 537 | if (Tok.is(tok::eof)) break; |
| 538 | |
| 539 | PrevTok = Tok; |
| 540 | PP.Lex(Tok); |
| 541 | } |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 542 | OS << '\n'; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 543 | |
Chris Lattner | cb7f180 | 2008-08-17 07:07:01 +0000 | [diff] [blame] | 544 | // Flush the ostream. |
| 545 | OS.flush(); |
Chris Lattner | 2149422 | 2008-08-17 03:12:02 +0000 | [diff] [blame] | 546 | |
| 547 | // If an error occurred, remove the output file. |
| 548 | if (PP.getDiagnostics().hasErrorOccurred() && !OutFile.empty()) |
| 549 | llvm::sys::Path(OutFile).eraseFromDisk(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 550 | } |
| 551 | |