Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 1 | //===--- ParsePragma.cpp - Language specific pragma parsing ---------------===// |
| 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 file implements the language specific #pragma handlers. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ParsePragma.h" |
Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 15 | #include "clang/Parse/ParseDiagnostic.h" |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 16 | #include "clang/Parse/Parser.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 17 | #include "clang/Lex/Preprocessor.h" |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 18 | using namespace clang; |
| 19 | |
Argyrios Kyrtzidis | b918d0f | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 20 | /// \brief Handle the annotation token produced for #pragma unused(...) |
| 21 | /// |
| 22 | /// Each annot_pragma_unused is followed by the argument token so e.g. |
| 23 | /// "#pragma unused(x,y)" becomes: |
| 24 | /// annot_pragma_unused 'x' annot_pragma_unused 'y' |
| 25 | void Parser::HandlePragmaUnused() { |
| 26 | assert(Tok.is(tok::annot_pragma_unused)); |
| 27 | SourceLocation UnusedLoc = ConsumeToken(); |
| 28 | Actions.ActOnPragmaUnused(Tok, getCurScope(), UnusedLoc); |
| 29 | ConsumeToken(); // The argument token. |
| 30 | } |
Eli Friedman | aa8b0d1 | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 31 | |
| 32 | // #pragma GCC visibility comes in two variants: |
| 33 | // 'push' '(' [visibility] ')' |
| 34 | // 'pop' |
Douglas Gregor | 80c60f7 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 35 | void PragmaGCCVisibilityHandler::HandlePragma(Preprocessor &PP, |
| 36 | PragmaIntroducerKind Introducer, |
| 37 | Token &VisTok) { |
Eli Friedman | aa8b0d1 | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 38 | SourceLocation VisLoc = VisTok.getLocation(); |
| 39 | |
| 40 | Token Tok; |
| 41 | PP.Lex(Tok); |
| 42 | |
| 43 | const IdentifierInfo *PushPop = Tok.getIdentifierInfo(); |
| 44 | |
| 45 | bool IsPush; |
| 46 | const IdentifierInfo *VisType; |
| 47 | if (PushPop && PushPop->isStr("pop")) { |
| 48 | IsPush = false; |
| 49 | VisType = 0; |
| 50 | } else if (PushPop && PushPop->isStr("push")) { |
| 51 | IsPush = true; |
| 52 | PP.Lex(Tok); |
| 53 | if (Tok.isNot(tok::l_paren)) { |
| 54 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) |
| 55 | << "visibility"; |
| 56 | return; |
| 57 | } |
| 58 | PP.Lex(Tok); |
| 59 | VisType = Tok.getIdentifierInfo(); |
| 60 | if (!VisType) { |
| 61 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) |
| 62 | << "visibility"; |
| 63 | return; |
| 64 | } |
| 65 | PP.Lex(Tok); |
| 66 | if (Tok.isNot(tok::r_paren)) { |
| 67 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_rparen) |
| 68 | << "visibility"; |
| 69 | return; |
| 70 | } |
| 71 | } else { |
| 72 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) |
| 73 | << "visibility"; |
| 74 | return; |
| 75 | } |
| 76 | PP.Lex(Tok); |
| 77 | if (Tok.isNot(tok::eom)) { |
| 78 | PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) |
| 79 | << "visibility"; |
| 80 | return; |
| 81 | } |
| 82 | |
| 83 | Actions.ActOnPragmaVisibility(IsPush, VisType, VisLoc); |
| 84 | } |
| 85 | |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 86 | // #pragma pack(...) comes in the following delicious flavors: |
| 87 | // pack '(' [integer] ')' |
| 88 | // pack '(' 'show' ')' |
| 89 | // pack '(' ('push' | 'pop') [',' identifier] [, integer] ')' |
Douglas Gregor | 80c60f7 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 90 | void PragmaPackHandler::HandlePragma(Preprocessor &PP, |
| 91 | PragmaIntroducerKind Introducer, |
| 92 | Token &PackTok) { |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 93 | SourceLocation PackLoc = PackTok.getLocation(); |
| 94 | |
| 95 | Token Tok; |
| 96 | PP.Lex(Tok); |
| 97 | if (Tok.isNot(tok::l_paren)) { |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 98 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "pack"; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 99 | return; |
| 100 | } |
| 101 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 102 | Sema::PragmaPackKind Kind = Sema::PPK_Default; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 103 | IdentifierInfo *Name = 0; |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 104 | ExprResult Alignment; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 105 | SourceLocation LParenLoc = Tok.getLocation(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | PP.Lex(Tok); |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 107 | if (Tok.is(tok::numeric_constant)) { |
| 108 | Alignment = Actions.ActOnNumericConstant(Tok); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 109 | if (Alignment.isInvalid()) |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 110 | return; |
| 111 | |
| 112 | PP.Lex(Tok); |
| 113 | } else if (Tok.is(tok::identifier)) { |
| 114 | const IdentifierInfo *II = Tok.getIdentifierInfo(); |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 115 | if (II->isStr("show")) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 116 | Kind = Sema::PPK_Show; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 117 | PP.Lex(Tok); |
| 118 | } else { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 119 | if (II->isStr("push")) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 120 | Kind = Sema::PPK_Push; |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 121 | } else if (II->isStr("pop")) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 122 | Kind = Sema::PPK_Pop; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 123 | } else { |
| 124 | PP.Diag(Tok.getLocation(), diag::warn_pragma_pack_invalid_action); |
| 125 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 126 | } |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 127 | PP.Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 128 | |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 129 | if (Tok.is(tok::comma)) { |
| 130 | PP.Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 131 | |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 132 | if (Tok.is(tok::numeric_constant)) { |
| 133 | Alignment = Actions.ActOnNumericConstant(Tok); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 134 | if (Alignment.isInvalid()) |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 135 | return; |
| 136 | |
| 137 | PP.Lex(Tok); |
| 138 | } else if (Tok.is(tok::identifier)) { |
| 139 | Name = Tok.getIdentifierInfo(); |
| 140 | PP.Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 141 | |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 142 | if (Tok.is(tok::comma)) { |
| 143 | PP.Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 144 | |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 145 | if (Tok.isNot(tok::numeric_constant)) { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 146 | PP.Diag(Tok.getLocation(), diag::warn_pragma_pack_malformed); |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 147 | return; |
| 148 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 149 | |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 150 | Alignment = Actions.ActOnNumericConstant(Tok); |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 151 | if (Alignment.isInvalid()) |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 152 | return; |
| 153 | |
| 154 | PP.Lex(Tok); |
| 155 | } |
| 156 | } else { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 157 | PP.Diag(Tok.getLocation(), diag::warn_pragma_pack_malformed); |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 158 | return; |
| 159 | } |
| 160 | } |
| 161 | } |
Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 162 | } |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 163 | |
| 164 | if (Tok.isNot(tok::r_paren)) { |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 165 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_rparen) << "pack"; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 166 | return; |
| 167 | } |
| 168 | |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 169 | SourceLocation RParenLoc = Tok.getLocation(); |
Eli Friedman | 9991479 | 2009-06-05 00:49:58 +0000 | [diff] [blame] | 170 | PP.Lex(Tok); |
| 171 | if (Tok.isNot(tok::eom)) { |
| 172 | PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) << "pack"; |
| 173 | return; |
| 174 | } |
| 175 | |
Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 176 | Actions.ActOnPragmaPack(Kind, Name, Alignment.release(), PackLoc, |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 177 | LParenLoc, RParenLoc); |
| 178 | } |
| 179 | |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 180 | // #pragma 'align' '=' {'native','natural','mac68k','power','reset'} |
| 181 | // #pragma 'options 'align' '=' {'native','natural','mac68k','power','reset'} |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 182 | static void ParseAlignPragma(Sema &Actions, Preprocessor &PP, Token &FirstTok, |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 183 | bool IsOptions) { |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 184 | Token Tok; |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 185 | |
| 186 | if (IsOptions) { |
| 187 | PP.Lex(Tok); |
| 188 | if (Tok.isNot(tok::identifier) || |
| 189 | !Tok.getIdentifierInfo()->isStr("align")) { |
| 190 | PP.Diag(Tok.getLocation(), diag::warn_pragma_options_expected_align); |
| 191 | return; |
| 192 | } |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 193 | } |
Daniel Dunbar | 638e7cf | 2010-05-27 18:42:09 +0000 | [diff] [blame] | 194 | |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 195 | PP.Lex(Tok); |
| 196 | if (Tok.isNot(tok::equal)) { |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 197 | PP.Diag(Tok.getLocation(), diag::warn_pragma_align_expected_equal) |
| 198 | << IsOptions; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 199 | return; |
| 200 | } |
| 201 | |
| 202 | PP.Lex(Tok); |
| 203 | if (Tok.isNot(tok::identifier)) { |
| 204 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 205 | << (IsOptions ? "options" : "align"); |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 206 | return; |
| 207 | } |
| 208 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 209 | Sema::PragmaOptionsAlignKind Kind = Sema::POAK_Natural; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 210 | const IdentifierInfo *II = Tok.getIdentifierInfo(); |
Daniel Dunbar | 638e7cf | 2010-05-27 18:42:09 +0000 | [diff] [blame] | 211 | if (II->isStr("native")) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 212 | Kind = Sema::POAK_Native; |
Daniel Dunbar | 638e7cf | 2010-05-27 18:42:09 +0000 | [diff] [blame] | 213 | else if (II->isStr("natural")) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 214 | Kind = Sema::POAK_Natural; |
Daniel Dunbar | 6f73914 | 2010-05-27 18:42:17 +0000 | [diff] [blame] | 215 | else if (II->isStr("packed")) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 216 | Kind = Sema::POAK_Packed; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 217 | else if (II->isStr("power")) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 218 | Kind = Sema::POAK_Power; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 219 | else if (II->isStr("mac68k")) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 220 | Kind = Sema::POAK_Mac68k; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 221 | else if (II->isStr("reset")) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 222 | Kind = Sema::POAK_Reset; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 223 | else { |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 224 | PP.Diag(Tok.getLocation(), diag::warn_pragma_align_invalid_option) |
| 225 | << IsOptions; |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 226 | return; |
| 227 | } |
| 228 | |
| 229 | SourceLocation KindLoc = Tok.getLocation(); |
| 230 | PP.Lex(Tok); |
| 231 | if (Tok.isNot(tok::eom)) { |
| 232 | PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 233 | << (IsOptions ? "options" : "align"); |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 234 | return; |
| 235 | } |
| 236 | |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 237 | Actions.ActOnPragmaOptionsAlign(Kind, FirstTok.getLocation(), KindLoc); |
| 238 | } |
| 239 | |
Douglas Gregor | 80c60f7 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 240 | void PragmaAlignHandler::HandlePragma(Preprocessor &PP, |
| 241 | PragmaIntroducerKind Introducer, |
| 242 | Token &AlignTok) { |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 243 | ParseAlignPragma(Actions, PP, AlignTok, /*IsOptions=*/false); |
| 244 | } |
| 245 | |
Douglas Gregor | 80c60f7 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 246 | void PragmaOptionsHandler::HandlePragma(Preprocessor &PP, |
| 247 | PragmaIntroducerKind Introducer, |
| 248 | Token &OptionsTok) { |
Daniel Dunbar | cbb98ed | 2010-07-31 19:17:07 +0000 | [diff] [blame] | 249 | ParseAlignPragma(Actions, PP, OptionsTok, /*IsOptions=*/true); |
Daniel Dunbar | 861800c | 2010-05-26 23:29:06 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 252 | // #pragma unused(identifier) |
Douglas Gregor | 80c60f7 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 253 | void PragmaUnusedHandler::HandlePragma(Preprocessor &PP, |
| 254 | PragmaIntroducerKind Introducer, |
| 255 | Token &UnusedTok) { |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 256 | // FIXME: Should we be expanding macros here? My guess is no. |
| 257 | SourceLocation UnusedLoc = UnusedTok.getLocation(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 258 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 259 | // Lex the left '('. |
| 260 | Token Tok; |
| 261 | PP.Lex(Tok); |
| 262 | if (Tok.isNot(tok::l_paren)) { |
| 263 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "unused"; |
| 264 | return; |
| 265 | } |
| 266 | SourceLocation LParenLoc = Tok.getLocation(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 267 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 268 | // Lex the declaration reference(s). |
Ted Kremenek | 7a02a37 | 2009-08-03 23:24:57 +0000 | [diff] [blame] | 269 | llvm::SmallVector<Token, 5> Identifiers; |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 270 | SourceLocation RParenLoc; |
| 271 | bool LexID = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 272 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 273 | while (true) { |
| 274 | PP.Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 275 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 276 | if (LexID) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 277 | if (Tok.is(tok::identifier)) { |
Ted Kremenek | 7a02a37 | 2009-08-03 23:24:57 +0000 | [diff] [blame] | 278 | Identifiers.push_back(Tok); |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 279 | LexID = false; |
| 280 | continue; |
| 281 | } |
| 282 | |
Ted Kremenek | 7a02a37 | 2009-08-03 23:24:57 +0000 | [diff] [blame] | 283 | // Illegal token! |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 284 | PP.Diag(Tok.getLocation(), diag::warn_pragma_unused_expected_var); |
| 285 | return; |
| 286 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 287 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 288 | // We are execting a ')' or a ','. |
| 289 | if (Tok.is(tok::comma)) { |
| 290 | LexID = true; |
| 291 | continue; |
| 292 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 293 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 294 | if (Tok.is(tok::r_paren)) { |
| 295 | RParenLoc = Tok.getLocation(); |
| 296 | break; |
| 297 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 298 | |
Ted Kremenek | 7a02a37 | 2009-08-03 23:24:57 +0000 | [diff] [blame] | 299 | // Illegal token! |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 300 | PP.Diag(Tok.getLocation(), diag::warn_pragma_unused_expected_punc); |
| 301 | return; |
| 302 | } |
Eli Friedman | 9991479 | 2009-06-05 00:49:58 +0000 | [diff] [blame] | 303 | |
| 304 | PP.Lex(Tok); |
| 305 | if (Tok.isNot(tok::eom)) { |
| 306 | PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) << |
| 307 | "unused"; |
| 308 | return; |
| 309 | } |
| 310 | |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 311 | // Verify that we have a location for the right parenthesis. |
| 312 | assert(RParenLoc.isValid() && "Valid '#pragma unused' must have ')'"); |
Ted Kremenek | 7a02a37 | 2009-08-03 23:24:57 +0000 | [diff] [blame] | 313 | assert(!Identifiers.empty() && "Valid '#pragma unused' must have arguments"); |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 314 | |
Argyrios Kyrtzidis | b918d0f | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 315 | // For each identifier token, insert into the token stream a |
| 316 | // annot_pragma_unused token followed by the identifier token. |
| 317 | // This allows us to cache a "#pragma unused" that occurs inside an inline |
| 318 | // C++ member function. |
| 319 | |
| 320 | Token *Toks = new Token[2*Identifiers.size()]; |
| 321 | for (unsigned i=0; i != Identifiers.size(); i++) { |
| 322 | Token &pragmaUnusedTok = Toks[2*i], &idTok = Toks[2*i+1]; |
| 323 | pragmaUnusedTok.startToken(); |
| 324 | pragmaUnusedTok.setKind(tok::annot_pragma_unused); |
| 325 | pragmaUnusedTok.setLocation(UnusedLoc); |
| 326 | idTok = Identifiers[i]; |
| 327 | } |
| 328 | PP.EnterTokenStream(Toks, 2*Identifiers.size(), /*DisableMacroExpansion=*/true, /*OwnsTokens=*/true); |
Ted Kremenek | 4726d03 | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 329 | } |
Eli Friedman | 9991479 | 2009-06-05 00:49:58 +0000 | [diff] [blame] | 330 | |
| 331 | // #pragma weak identifier |
| 332 | // #pragma weak identifier '=' identifier |
Douglas Gregor | 80c60f7 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 333 | void PragmaWeakHandler::HandlePragma(Preprocessor &PP, |
| 334 | PragmaIntroducerKind Introducer, |
| 335 | Token &WeakTok) { |
Eli Friedman | 9991479 | 2009-06-05 00:49:58 +0000 | [diff] [blame] | 336 | // FIXME: Should we be expanding macros here? My guess is no. |
| 337 | SourceLocation WeakLoc = WeakTok.getLocation(); |
| 338 | |
| 339 | Token Tok; |
| 340 | PP.Lex(Tok); |
| 341 | if (Tok.isNot(tok::identifier)) { |
| 342 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) << "weak"; |
| 343 | return; |
| 344 | } |
| 345 | |
| 346 | IdentifierInfo *WeakName = Tok.getIdentifierInfo(), *AliasName = 0; |
| 347 | SourceLocation WeakNameLoc = Tok.getLocation(), AliasNameLoc; |
| 348 | |
| 349 | PP.Lex(Tok); |
| 350 | if (Tok.is(tok::equal)) { |
| 351 | PP.Lex(Tok); |
| 352 | if (Tok.isNot(tok::identifier)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 353 | PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) |
Eli Friedman | 9991479 | 2009-06-05 00:49:58 +0000 | [diff] [blame] | 354 | << "weak"; |
| 355 | return; |
| 356 | } |
| 357 | AliasName = Tok.getIdentifierInfo(); |
| 358 | AliasNameLoc = Tok.getLocation(); |
| 359 | PP.Lex(Tok); |
| 360 | } |
| 361 | |
| 362 | if (Tok.isNot(tok::eom)) { |
| 363 | PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) << "weak"; |
| 364 | return; |
| 365 | } |
| 366 | |
| 367 | if (AliasName) { |
| 368 | Actions.ActOnPragmaWeakAlias(WeakName, AliasName, WeakLoc, WeakNameLoc, |
| 369 | AliasNameLoc); |
| 370 | } else { |
| 371 | Actions.ActOnPragmaWeakID(WeakName, WeakLoc, WeakNameLoc); |
| 372 | } |
| 373 | } |