blob: 9e9a749bb98d76635de2552f68ce0e1b662f27f5 [file] [log] [blame]
Daniel Dunbar921b9682008-10-04 19:21:03 +00001//===--- 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
Warren Huntc3b18962014-04-08 22:30:47 +000014#include "RAIIObjectsForParser.h"
Hans Wennborg899ded92014-10-16 20:52:46 +000015#include "clang/AST/ASTContext.h"
Nico Weber66220292016-03-02 17:28:48 +000016#include "clang/Basic/PragmaKinds.h"
David Majnemerad2986e2014-08-14 06:35:08 +000017#include "clang/Basic/TargetInfo.h"
Eli Bendersky06a40422014-06-06 20:31:48 +000018#include "clang/Lex/Preprocessor.h"
19#include "clang/Parse/ParseDiagnostic.h"
20#include "clang/Parse/Parser.h"
21#include "clang/Sema/LoopHint.h"
22#include "clang/Sema/Scope.h"
23#include "llvm/ADT/StringSwitch.h"
24using namespace clang;
Daniel Dunbar921b9682008-10-04 19:21:03 +000025
Reid Kleckner5b086462014-02-20 22:52:09 +000026namespace {
27
28struct PragmaAlignHandler : public PragmaHandler {
29 explicit PragmaAlignHandler() : PragmaHandler("align") {}
Craig Topper2b07f022014-03-12 05:09:18 +000030 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
31 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000032};
33
34struct PragmaGCCVisibilityHandler : public PragmaHandler {
35 explicit PragmaGCCVisibilityHandler() : PragmaHandler("visibility") {}
Craig Topper2b07f022014-03-12 05:09:18 +000036 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
37 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000038};
39
40struct PragmaOptionsHandler : public PragmaHandler {
41 explicit PragmaOptionsHandler() : PragmaHandler("options") {}
Craig Topper2b07f022014-03-12 05:09:18 +000042 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
43 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000044};
45
46struct PragmaPackHandler : public PragmaHandler {
47 explicit PragmaPackHandler() : PragmaHandler("pack") {}
Craig Topper2b07f022014-03-12 05:09:18 +000048 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
49 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000050};
51
52struct PragmaMSStructHandler : public PragmaHandler {
53 explicit PragmaMSStructHandler() : PragmaHandler("ms_struct") {}
Craig Topper2b07f022014-03-12 05:09:18 +000054 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
55 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000056};
57
58struct PragmaUnusedHandler : public PragmaHandler {
59 PragmaUnusedHandler() : PragmaHandler("unused") {}
Craig Topper2b07f022014-03-12 05:09:18 +000060 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
61 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000062};
63
64struct PragmaWeakHandler : public PragmaHandler {
65 explicit PragmaWeakHandler() : PragmaHandler("weak") {}
Craig Topper2b07f022014-03-12 05:09:18 +000066 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
67 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000068};
69
70struct PragmaRedefineExtnameHandler : public PragmaHandler {
71 explicit PragmaRedefineExtnameHandler() : PragmaHandler("redefine_extname") {}
Craig Topper2b07f022014-03-12 05:09:18 +000072 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
73 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000074};
75
76struct PragmaOpenCLExtensionHandler : public PragmaHandler {
77 PragmaOpenCLExtensionHandler() : PragmaHandler("EXTENSION") {}
Craig Topper2b07f022014-03-12 05:09:18 +000078 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
79 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000080};
81
82
83struct PragmaFPContractHandler : public PragmaHandler {
84 PragmaFPContractHandler() : PragmaHandler("FP_CONTRACT") {}
Craig Topper2b07f022014-03-12 05:09:18 +000085 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
86 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000087};
88
89struct PragmaNoOpenMPHandler : public PragmaHandler {
90 PragmaNoOpenMPHandler() : PragmaHandler("omp") { }
Craig Topper2b07f022014-03-12 05:09:18 +000091 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
92 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000093};
94
95struct PragmaOpenMPHandler : public PragmaHandler {
96 PragmaOpenMPHandler() : PragmaHandler("omp") { }
Craig Topper2b07f022014-03-12 05:09:18 +000097 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
98 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +000099};
100
101/// PragmaCommentHandler - "\#pragma comment ...".
102struct PragmaCommentHandler : public PragmaHandler {
103 PragmaCommentHandler(Sema &Actions)
104 : PragmaHandler("comment"), Actions(Actions) {}
Craig Topper2b07f022014-03-12 05:09:18 +0000105 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
106 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +0000107private:
108 Sema &Actions;
109};
110
111struct PragmaDetectMismatchHandler : public PragmaHandler {
112 PragmaDetectMismatchHandler(Sema &Actions)
113 : PragmaHandler("detect_mismatch"), Actions(Actions) {}
Craig Topper2b07f022014-03-12 05:09:18 +0000114 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
115 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +0000116private:
117 Sema &Actions;
118};
119
120struct PragmaMSPointersToMembers : public PragmaHandler {
121 explicit PragmaMSPointersToMembers() : PragmaHandler("pointers_to_members") {}
Craig Topper2b07f022014-03-12 05:09:18 +0000122 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
123 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +0000124};
125
126struct PragmaMSVtorDisp : public PragmaHandler {
127 explicit PragmaMSVtorDisp() : PragmaHandler("vtordisp") {}
Craig Topper2b07f022014-03-12 05:09:18 +0000128 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
129 Token &FirstToken) override;
Reid Kleckner5b086462014-02-20 22:52:09 +0000130};
131
Warren Huntc3b18962014-04-08 22:30:47 +0000132struct PragmaMSPragma : public PragmaHandler {
133 explicit PragmaMSPragma(const char *name) : PragmaHandler(name) {}
Reid Klecknerd3923aa2014-04-03 19:04:24 +0000134 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
135 Token &FirstToken) override;
136};
137
Dario Domizioli13a0a382014-05-23 12:13:25 +0000138/// PragmaOptimizeHandler - "\#pragma clang optimize on/off".
139struct PragmaOptimizeHandler : public PragmaHandler {
140 PragmaOptimizeHandler(Sema &S)
141 : PragmaHandler("optimize"), Actions(S) {}
142 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
143 Token &FirstToken) override;
144private:
Eli Bendersky06a40422014-06-06 20:31:48 +0000145 Sema &Actions;
146};
147
148struct PragmaLoopHintHandler : public PragmaHandler {
149 PragmaLoopHintHandler() : PragmaHandler("loop") {}
150 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
151 Token &FirstToken) override;
152};
153
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000154struct PragmaUnrollHintHandler : public PragmaHandler {
155 PragmaUnrollHintHandler(const char *name) : PragmaHandler(name) {}
156 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
157 Token &FirstToken) override;
158};
159
Hans Wennborg7357bbc2015-10-12 20:47:58 +0000160struct PragmaMSRuntimeChecksHandler : public EmptyPragmaHandler {
161 PragmaMSRuntimeChecksHandler() : EmptyPragmaHandler("runtime_checks") {}
162};
163
Eli Bendersky06a40422014-06-06 20:31:48 +0000164} // end namespace
165
166void Parser::initializePragmaHandlers() {
Reid Kleckner5b086462014-02-20 22:52:09 +0000167 AlignHandler.reset(new PragmaAlignHandler());
168 PP.AddPragmaHandler(AlignHandler.get());
169
170 GCCVisibilityHandler.reset(new PragmaGCCVisibilityHandler());
171 PP.AddPragmaHandler("GCC", GCCVisibilityHandler.get());
172
173 OptionsHandler.reset(new PragmaOptionsHandler());
174 PP.AddPragmaHandler(OptionsHandler.get());
175
176 PackHandler.reset(new PragmaPackHandler());
177 PP.AddPragmaHandler(PackHandler.get());
178
179 MSStructHandler.reset(new PragmaMSStructHandler());
180 PP.AddPragmaHandler(MSStructHandler.get());
181
182 UnusedHandler.reset(new PragmaUnusedHandler());
183 PP.AddPragmaHandler(UnusedHandler.get());
184
185 WeakHandler.reset(new PragmaWeakHandler());
186 PP.AddPragmaHandler(WeakHandler.get());
187
188 RedefineExtnameHandler.reset(new PragmaRedefineExtnameHandler());
189 PP.AddPragmaHandler(RedefineExtnameHandler.get());
190
191 FPContractHandler.reset(new PragmaFPContractHandler());
192 PP.AddPragmaHandler("STDC", FPContractHandler.get());
193
194 if (getLangOpts().OpenCL) {
195 OpenCLExtensionHandler.reset(new PragmaOpenCLExtensionHandler());
196 PP.AddPragmaHandler("OPENCL", OpenCLExtensionHandler.get());
197
198 PP.AddPragmaHandler("OPENCL", FPContractHandler.get());
199 }
200 if (getLangOpts().OpenMP)
201 OpenMPHandler.reset(new PragmaOpenMPHandler());
202 else
203 OpenMPHandler.reset(new PragmaNoOpenMPHandler());
204 PP.AddPragmaHandler(OpenMPHandler.get());
205
Yunzhong Gao99efc032015-03-23 20:41:42 +0000206 if (getLangOpts().MicrosoftExt || getTargetInfo().getTriple().isPS4()) {
Reid Kleckner5b086462014-02-20 22:52:09 +0000207 MSCommentHandler.reset(new PragmaCommentHandler(Actions));
208 PP.AddPragmaHandler(MSCommentHandler.get());
Yunzhong Gao99efc032015-03-23 20:41:42 +0000209 }
210
211 if (getLangOpts().MicrosoftExt) {
Reid Kleckner5b086462014-02-20 22:52:09 +0000212 MSDetectMismatchHandler.reset(new PragmaDetectMismatchHandler(Actions));
213 PP.AddPragmaHandler(MSDetectMismatchHandler.get());
214 MSPointersToMembers.reset(new PragmaMSPointersToMembers());
215 PP.AddPragmaHandler(MSPointersToMembers.get());
216 MSVtorDisp.reset(new PragmaMSVtorDisp());
217 PP.AddPragmaHandler(MSVtorDisp.get());
Warren Huntc3b18962014-04-08 22:30:47 +0000218 MSInitSeg.reset(new PragmaMSPragma("init_seg"));
Reid Klecknerd3923aa2014-04-03 19:04:24 +0000219 PP.AddPragmaHandler(MSInitSeg.get());
Warren Huntc3b18962014-04-08 22:30:47 +0000220 MSDataSeg.reset(new PragmaMSPragma("data_seg"));
221 PP.AddPragmaHandler(MSDataSeg.get());
222 MSBSSSeg.reset(new PragmaMSPragma("bss_seg"));
223 PP.AddPragmaHandler(MSBSSSeg.get());
224 MSConstSeg.reset(new PragmaMSPragma("const_seg"));
225 PP.AddPragmaHandler(MSConstSeg.get());
226 MSCodeSeg.reset(new PragmaMSPragma("code_seg"));
227 PP.AddPragmaHandler(MSCodeSeg.get());
228 MSSection.reset(new PragmaMSPragma("section"));
229 PP.AddPragmaHandler(MSSection.get());
Hans Wennborg7357bbc2015-10-12 20:47:58 +0000230 MSRuntimeChecks.reset(new PragmaMSRuntimeChecksHandler());
231 PP.AddPragmaHandler(MSRuntimeChecks.get());
Reid Kleckner5b086462014-02-20 22:52:09 +0000232 }
Eli Bendersky06a40422014-06-06 20:31:48 +0000233
234 OptimizeHandler.reset(new PragmaOptimizeHandler(Actions));
235 PP.AddPragmaHandler("clang", OptimizeHandler.get());
236
237 LoopHintHandler.reset(new PragmaLoopHintHandler());
238 PP.AddPragmaHandler("clang", LoopHintHandler.get());
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000239
240 UnrollHintHandler.reset(new PragmaUnrollHintHandler("unroll"));
241 PP.AddPragmaHandler(UnrollHintHandler.get());
Mark Heffernanc888e412014-07-24 18:09:38 +0000242
243 NoUnrollHintHandler.reset(new PragmaUnrollHintHandler("nounroll"));
244 PP.AddPragmaHandler(NoUnrollHintHandler.get());
Eli Bendersky06a40422014-06-06 20:31:48 +0000245}
246
247void Parser::resetPragmaHandlers() {
Reid Kleckner5b086462014-02-20 22:52:09 +0000248 // Remove the pragma handlers we installed.
249 PP.RemovePragmaHandler(AlignHandler.get());
250 AlignHandler.reset();
251 PP.RemovePragmaHandler("GCC", GCCVisibilityHandler.get());
252 GCCVisibilityHandler.reset();
253 PP.RemovePragmaHandler(OptionsHandler.get());
254 OptionsHandler.reset();
255 PP.RemovePragmaHandler(PackHandler.get());
256 PackHandler.reset();
257 PP.RemovePragmaHandler(MSStructHandler.get());
258 MSStructHandler.reset();
259 PP.RemovePragmaHandler(UnusedHandler.get());
260 UnusedHandler.reset();
261 PP.RemovePragmaHandler(WeakHandler.get());
262 WeakHandler.reset();
263 PP.RemovePragmaHandler(RedefineExtnameHandler.get());
264 RedefineExtnameHandler.reset();
265
266 if (getLangOpts().OpenCL) {
267 PP.RemovePragmaHandler("OPENCL", OpenCLExtensionHandler.get());
268 OpenCLExtensionHandler.reset();
269 PP.RemovePragmaHandler("OPENCL", FPContractHandler.get());
270 }
271 PP.RemovePragmaHandler(OpenMPHandler.get());
272 OpenMPHandler.reset();
273
Yunzhong Gao99efc032015-03-23 20:41:42 +0000274 if (getLangOpts().MicrosoftExt || getTargetInfo().getTriple().isPS4()) {
Reid Kleckner5b086462014-02-20 22:52:09 +0000275 PP.RemovePragmaHandler(MSCommentHandler.get());
276 MSCommentHandler.reset();
Yunzhong Gao99efc032015-03-23 20:41:42 +0000277 }
278
279 if (getLangOpts().MicrosoftExt) {
Reid Kleckner5b086462014-02-20 22:52:09 +0000280 PP.RemovePragmaHandler(MSDetectMismatchHandler.get());
281 MSDetectMismatchHandler.reset();
282 PP.RemovePragmaHandler(MSPointersToMembers.get());
283 MSPointersToMembers.reset();
284 PP.RemovePragmaHandler(MSVtorDisp.get());
285 MSVtorDisp.reset();
Reid Klecknerd3923aa2014-04-03 19:04:24 +0000286 PP.RemovePragmaHandler(MSInitSeg.get());
287 MSInitSeg.reset();
Warren Huntc3b18962014-04-08 22:30:47 +0000288 PP.RemovePragmaHandler(MSDataSeg.get());
289 MSDataSeg.reset();
290 PP.RemovePragmaHandler(MSBSSSeg.get());
291 MSBSSSeg.reset();
292 PP.RemovePragmaHandler(MSConstSeg.get());
293 MSConstSeg.reset();
294 PP.RemovePragmaHandler(MSCodeSeg.get());
295 MSCodeSeg.reset();
296 PP.RemovePragmaHandler(MSSection.get());
297 MSSection.reset();
Hans Wennborg7357bbc2015-10-12 20:47:58 +0000298 PP.RemovePragmaHandler(MSRuntimeChecks.get());
299 MSRuntimeChecks.reset();
Reid Kleckner5b086462014-02-20 22:52:09 +0000300 }
301
302 PP.RemovePragmaHandler("STDC", FPContractHandler.get());
303 FPContractHandler.reset();
Eli Bendersky06a40422014-06-06 20:31:48 +0000304
305 PP.RemovePragmaHandler("clang", OptimizeHandler.get());
306 OptimizeHandler.reset();
307
308 PP.RemovePragmaHandler("clang", LoopHintHandler.get());
309 LoopHintHandler.reset();
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000310
311 PP.RemovePragmaHandler(UnrollHintHandler.get());
312 UnrollHintHandler.reset();
Mark Heffernanc888e412014-07-24 18:09:38 +0000313
314 PP.RemovePragmaHandler(NoUnrollHintHandler.get());
315 NoUnrollHintHandler.reset();
Eli Bendersky06a40422014-06-06 20:31:48 +0000316}
317
318/// \brief Handle the annotation token produced for #pragma unused(...)
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000319///
320/// Each annot_pragma_unused is followed by the argument token so e.g.
321/// "#pragma unused(x,y)" becomes:
322/// annot_pragma_unused 'x' annot_pragma_unused 'y'
323void Parser::HandlePragmaUnused() {
324 assert(Tok.is(tok::annot_pragma_unused));
325 SourceLocation UnusedLoc = ConsumeToken();
326 Actions.ActOnPragmaUnused(Tok, getCurScope(), UnusedLoc);
327 ConsumeToken(); // The argument token.
328}
Eli Friedman570024a2010-08-05 06:57:20 +0000329
Rafael Espindola273fd772012-01-26 02:02:57 +0000330void Parser::HandlePragmaVisibility() {
331 assert(Tok.is(tok::annot_pragma_vis));
332 const IdentifierInfo *VisType =
333 static_cast<IdentifierInfo *>(Tok.getAnnotationValue());
334 SourceLocation VisLoc = ConsumeToken();
335 Actions.ActOnPragmaVisibility(VisType, VisLoc);
336}
337
Benjamin Kramere003ca22015-10-28 13:54:16 +0000338namespace {
Eli Friedmanec52f922012-02-23 23:47:16 +0000339struct PragmaPackInfo {
Denis Zobnin10c4f452016-04-29 18:17:40 +0000340 Sema::PragmaMsStackAction Action;
341 StringRef SlotLabel;
Eli Friedman68be1642012-10-04 02:36:51 +0000342 Token Alignment;
Eli Friedmanec52f922012-02-23 23:47:16 +0000343};
Benjamin Kramere003ca22015-10-28 13:54:16 +0000344} // end anonymous namespace
Eli Friedmanec52f922012-02-23 23:47:16 +0000345
346void Parser::HandlePragmaPack() {
347 assert(Tok.is(tok::annot_pragma_pack));
348 PragmaPackInfo *Info =
349 static_cast<PragmaPackInfo *>(Tok.getAnnotationValue());
350 SourceLocation PragmaLoc = ConsumeToken();
Eli Friedman68be1642012-10-04 02:36:51 +0000351 ExprResult Alignment;
352 if (Info->Alignment.is(tok::numeric_constant)) {
353 Alignment = Actions.ActOnNumericConstant(Info->Alignment);
354 if (Alignment.isInvalid())
355 return;
356 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000357 Actions.ActOnPragmaPack(PragmaLoc, Info->Action, Info->SlotLabel,
358 Alignment.get());
Eli Friedmanec52f922012-02-23 23:47:16 +0000359}
360
Eli Friedman68be1642012-10-04 02:36:51 +0000361void Parser::HandlePragmaMSStruct() {
362 assert(Tok.is(tok::annot_pragma_msstruct));
Nico Weber779355f2016-03-02 23:22:00 +0000363 PragmaMSStructKind Kind = static_cast<PragmaMSStructKind>(
364 reinterpret_cast<uintptr_t>(Tok.getAnnotationValue()));
Eli Friedman68be1642012-10-04 02:36:51 +0000365 Actions.ActOnPragmaMSStruct(Kind);
366 ConsumeToken(); // The annotation token.
367}
368
369void Parser::HandlePragmaAlign() {
370 assert(Tok.is(tok::annot_pragma_align));
371 Sema::PragmaOptionsAlignKind Kind =
372 static_cast<Sema::PragmaOptionsAlignKind>(
373 reinterpret_cast<uintptr_t>(Tok.getAnnotationValue()));
374 SourceLocation PragmaLoc = ConsumeToken();
375 Actions.ActOnPragmaOptionsAlign(Kind, PragmaLoc);
376}
377
Richard Smithba3a4f92016-01-12 21:59:26 +0000378void Parser::HandlePragmaDump() {
379 assert(Tok.is(tok::annot_pragma_dump));
380 IdentifierInfo *II =
381 reinterpret_cast<IdentifierInfo *>(Tok.getAnnotationValue());
382 Actions.ActOnPragmaDump(getCurScope(), Tok.getLocation(), II);
383 ConsumeToken();
384}
385
Eli Friedman68be1642012-10-04 02:36:51 +0000386void Parser::HandlePragmaWeak() {
387 assert(Tok.is(tok::annot_pragma_weak));
388 SourceLocation PragmaLoc = ConsumeToken();
389 Actions.ActOnPragmaWeakID(Tok.getIdentifierInfo(), PragmaLoc,
390 Tok.getLocation());
391 ConsumeToken(); // The weak name.
392}
393
394void Parser::HandlePragmaWeakAlias() {
395 assert(Tok.is(tok::annot_pragma_weakalias));
396 SourceLocation PragmaLoc = ConsumeToken();
397 IdentifierInfo *WeakName = Tok.getIdentifierInfo();
398 SourceLocation WeakNameLoc = Tok.getLocation();
399 ConsumeToken();
400 IdentifierInfo *AliasName = Tok.getIdentifierInfo();
401 SourceLocation AliasNameLoc = Tok.getLocation();
402 ConsumeToken();
403 Actions.ActOnPragmaWeakAlias(WeakName, AliasName, PragmaLoc,
404 WeakNameLoc, AliasNameLoc);
405
406}
407
408void Parser::HandlePragmaRedefineExtname() {
409 assert(Tok.is(tok::annot_pragma_redefine_extname));
410 SourceLocation RedefLoc = ConsumeToken();
411 IdentifierInfo *RedefName = Tok.getIdentifierInfo();
412 SourceLocation RedefNameLoc = Tok.getLocation();
413 ConsumeToken();
414 IdentifierInfo *AliasName = Tok.getIdentifierInfo();
415 SourceLocation AliasNameLoc = Tok.getLocation();
416 ConsumeToken();
417 Actions.ActOnPragmaRedefineExtname(RedefName, AliasName, RedefLoc,
418 RedefNameLoc, AliasNameLoc);
419}
420
421void Parser::HandlePragmaFPContract() {
422 assert(Tok.is(tok::annot_pragma_fp_contract));
423 tok::OnOffSwitch OOS =
424 static_cast<tok::OnOffSwitch>(
425 reinterpret_cast<uintptr_t>(Tok.getAnnotationValue()));
426 Actions.ActOnPragmaFPContract(OOS);
427 ConsumeToken(); // The annotation token.
428}
429
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000430StmtResult Parser::HandlePragmaCaptured()
431{
432 assert(Tok.is(tok::annot_pragma_captured));
433 ConsumeToken();
434
435 if (Tok.isNot(tok::l_brace)) {
Alp Tokerec543272013-12-24 09:48:30 +0000436 PP.Diag(Tok, diag::err_expected) << tok::l_brace;
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000437 return StmtError();
438 }
439
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000440 SourceLocation Loc = Tok.getLocation();
441
442 ParseScope CapturedRegionScope(this, Scope::FnScope | Scope::DeclScope);
Ben Langmuir37943a72013-05-03 19:00:33 +0000443 Actions.ActOnCapturedRegionStart(Loc, getCurScope(), CR_Default,
444 /*NumParams=*/1);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000445
446 StmtResult R = ParseCompoundStatement();
447 CapturedRegionScope.Exit();
448
449 if (R.isInvalid()) {
450 Actions.ActOnCapturedRegionError();
451 return StmtError();
452 }
453
454 return Actions.ActOnCapturedRegionEnd(R.get());
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000455}
456
Eli Friedman68be1642012-10-04 02:36:51 +0000457namespace {
458 typedef llvm::PointerIntPair<IdentifierInfo *, 1, bool> OpenCLExtData;
459}
460
461void Parser::HandlePragmaOpenCLExtension() {
462 assert(Tok.is(tok::annot_pragma_opencl_extension));
463 OpenCLExtData data =
464 OpenCLExtData::getFromOpaqueValue(Tok.getAnnotationValue());
465 unsigned state = data.getInt();
466 IdentifierInfo *ename = data.getPointer();
467 SourceLocation NameLoc = Tok.getLocation();
468 ConsumeToken(); // The annotation token.
469
470 OpenCLOptions &f = Actions.getOpenCLOptions();
Yaxun Liu39cf40f2016-05-16 17:06:34 +0000471 auto CLVer = getLangOpts().OpenCLVersion;
472 auto &Supp = getTargetInfo().getSupportedOpenCLOpts();
Eli Friedman68be1642012-10-04 02:36:51 +0000473 // OpenCL 1.1 9.1: "The all variant sets the behavior for all extensions,
474 // overriding all previously issued extension directives, but only if the
475 // behavior is set to disable."
476 if (state == 0 && ename->isStr("all")) {
Yaxun Liu39cf40f2016-05-16 17:06:34 +0000477#define OPENCLEXT(nm) \
478 if (Supp.is_##nm##_supported_extension(CLVer)) \
479 f.nm = 0;
Eli Friedman68be1642012-10-04 02:36:51 +0000480#include "clang/Basic/OpenCLExtensions.def"
481 }
Yaxun Liu39cf40f2016-05-16 17:06:34 +0000482#define OPENCLEXT(nm) else if (ename->isStr(#nm)) \
483 if (Supp.is_##nm##_supported_extension(CLVer)) \
484 f.nm = state; \
485 else if (Supp.is_##nm##_supported_core(CLVer)) \
486 PP.Diag(NameLoc, diag::warn_pragma_extension_is_core) << ename; \
487 else \
488 PP.Diag(NameLoc, diag::warn_pragma_unsupported_extension) << ename;
Eli Friedman68be1642012-10-04 02:36:51 +0000489#include "clang/Basic/OpenCLExtensions.def"
490 else {
491 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
492 return;
493 }
494}
495
David Majnemer4bb09802014-02-10 19:50:15 +0000496void Parser::HandlePragmaMSPointersToMembers() {
497 assert(Tok.is(tok::annot_pragma_ms_pointers_to_members));
David Majnemer86c318f2014-02-11 21:05:00 +0000498 LangOptions::PragmaMSPointersToMembersKind RepresentationMethod =
499 static_cast<LangOptions::PragmaMSPointersToMembersKind>(
David Majnemer4bb09802014-02-10 19:50:15 +0000500 reinterpret_cast<uintptr_t>(Tok.getAnnotationValue()));
501 SourceLocation PragmaLoc = ConsumeToken(); // The annotation token.
502 Actions.ActOnPragmaMSPointersToMembers(RepresentationMethod, PragmaLoc);
503}
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000504
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000505void Parser::HandlePragmaMSVtorDisp() {
506 assert(Tok.is(tok::annot_pragma_ms_vtordisp));
507 uintptr_t Value = reinterpret_cast<uintptr_t>(Tok.getAnnotationValue());
Denis Zobnin2290dac2016-04-29 11:27:00 +0000508 Sema::PragmaMsStackAction Action =
509 static_cast<Sema::PragmaMsStackAction>((Value >> 16) & 0xFFFF);
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000510 MSVtorDispAttr::Mode Mode = MSVtorDispAttr::Mode(Value & 0xFFFF);
511 SourceLocation PragmaLoc = ConsumeToken(); // The annotation token.
Denis Zobnin2290dac2016-04-29 11:27:00 +0000512 Actions.ActOnPragmaMSVtorDisp(Action, PragmaLoc, Mode);
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000513}
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000514
Warren Huntc3b18962014-04-08 22:30:47 +0000515void Parser::HandlePragmaMSPragma() {
516 assert(Tok.is(tok::annot_pragma_ms_pragma));
517 // Grab the tokens out of the annotation and enter them into the stream.
David Blaikie2eabcc92016-02-09 18:52:09 +0000518 auto TheTokens =
519 (std::pair<std::unique_ptr<Token[]>, size_t> *)Tok.getAnnotationValue();
520 PP.EnterTokenStream(std::move(TheTokens->first), TheTokens->second, true);
Warren Huntc3b18962014-04-08 22:30:47 +0000521 SourceLocation PragmaLocation = ConsumeToken(); // The annotation token.
522 assert(Tok.isAnyIdentifier());
Reid Kleckner722b1df2014-07-18 00:13:16 +0000523 StringRef PragmaName = Tok.getIdentifierInfo()->getName();
Warren Huntc3b18962014-04-08 22:30:47 +0000524 PP.Lex(Tok); // pragma kind
Reid Kleckner722b1df2014-07-18 00:13:16 +0000525
Warren Huntc3b18962014-04-08 22:30:47 +0000526 // Figure out which #pragma we're dealing with. The switch has no default
527 // because lex shouldn't emit the annotation token for unrecognized pragmas.
Reid Kleckner722b1df2014-07-18 00:13:16 +0000528 typedef bool (Parser::*PragmaHandler)(StringRef, SourceLocation);
Warren Huntc3b18962014-04-08 22:30:47 +0000529 PragmaHandler Handler = llvm::StringSwitch<PragmaHandler>(PragmaName)
530 .Case("data_seg", &Parser::HandlePragmaMSSegment)
531 .Case("bss_seg", &Parser::HandlePragmaMSSegment)
532 .Case("const_seg", &Parser::HandlePragmaMSSegment)
533 .Case("code_seg", &Parser::HandlePragmaMSSegment)
534 .Case("section", &Parser::HandlePragmaMSSection)
535 .Case("init_seg", &Parser::HandlePragmaMSInitSeg);
Reid Kleckner722b1df2014-07-18 00:13:16 +0000536
537 if (!(this->*Handler)(PragmaName, PragmaLocation)) {
538 // Pragma handling failed, and has been diagnosed. Slurp up the tokens
539 // until eof (really end of line) to prevent follow-on errors.
Warren Huntc3b18962014-04-08 22:30:47 +0000540 while (Tok.isNot(tok::eof))
541 PP.Lex(Tok);
542 PP.Lex(Tok);
543 }
544}
545
Reid Kleckner722b1df2014-07-18 00:13:16 +0000546bool Parser::HandlePragmaMSSection(StringRef PragmaName,
547 SourceLocation PragmaLocation) {
548 if (Tok.isNot(tok::l_paren)) {
549 PP.Diag(PragmaLocation, diag::warn_pragma_expected_lparen) << PragmaName;
550 return false;
551 }
Warren Huntc3b18962014-04-08 22:30:47 +0000552 PP.Lex(Tok); // (
553 // Parsing code for pragma section
Reid Kleckner722b1df2014-07-18 00:13:16 +0000554 if (Tok.isNot(tok::string_literal)) {
555 PP.Diag(PragmaLocation, diag::warn_pragma_expected_section_name)
556 << PragmaName;
557 return false;
558 }
559 ExprResult StringResult = ParseStringLiteralExpression();
560 if (StringResult.isInvalid())
561 return false; // Already diagnosed.
562 StringLiteral *SegmentName = cast<StringLiteral>(StringResult.get());
563 if (SegmentName->getCharByteWidth() != 1) {
564 PP.Diag(PragmaLocation, diag::warn_pragma_expected_non_wide_string)
565 << PragmaName;
566 return false;
567 }
David Majnemer48c28fa2014-10-22 21:08:43 +0000568 int SectionFlags = ASTContext::PSF_Read;
569 bool SectionFlagsAreDefault = true;
Warren Huntc3b18962014-04-08 22:30:47 +0000570 while (Tok.is(tok::comma)) {
571 PP.Lex(Tok); // ,
David Majnemer48c28fa2014-10-22 21:08:43 +0000572 // Ignore "long" and "short".
573 // They are undocumented, but widely used, section attributes which appear
574 // to do nothing.
575 if (Tok.is(tok::kw_long) || Tok.is(tok::kw_short)) {
576 PP.Lex(Tok); // long/short
577 continue;
578 }
579
Reid Kleckner722b1df2014-07-18 00:13:16 +0000580 if (!Tok.isAnyIdentifier()) {
581 PP.Diag(PragmaLocation, diag::warn_pragma_expected_action_or_r_paren)
582 << PragmaName;
583 return false;
584 }
Hans Wennborg899ded92014-10-16 20:52:46 +0000585 ASTContext::PragmaSectionFlag Flag =
586 llvm::StringSwitch<ASTContext::PragmaSectionFlag>(
Warren Huntc3b18962014-04-08 22:30:47 +0000587 Tok.getIdentifierInfo()->getName())
Hans Wennborg899ded92014-10-16 20:52:46 +0000588 .Case("read", ASTContext::PSF_Read)
589 .Case("write", ASTContext::PSF_Write)
590 .Case("execute", ASTContext::PSF_Execute)
591 .Case("shared", ASTContext::PSF_Invalid)
592 .Case("nopage", ASTContext::PSF_Invalid)
593 .Case("nocache", ASTContext::PSF_Invalid)
594 .Case("discard", ASTContext::PSF_Invalid)
595 .Case("remove", ASTContext::PSF_Invalid)
596 .Default(ASTContext::PSF_None);
597 if (Flag == ASTContext::PSF_None || Flag == ASTContext::PSF_Invalid) {
598 PP.Diag(PragmaLocation, Flag == ASTContext::PSF_None
Reid Kleckner722b1df2014-07-18 00:13:16 +0000599 ? diag::warn_pragma_invalid_specific_action
600 : diag::warn_pragma_unsupported_action)
Warren Huntc3b18962014-04-08 22:30:47 +0000601 << PragmaName << Tok.getIdentifierInfo()->getName();
Reid Kleckner722b1df2014-07-18 00:13:16 +0000602 return false;
Warren Huntc3b18962014-04-08 22:30:47 +0000603 }
604 SectionFlags |= Flag;
David Majnemer48c28fa2014-10-22 21:08:43 +0000605 SectionFlagsAreDefault = false;
Warren Huntc3b18962014-04-08 22:30:47 +0000606 PP.Lex(Tok); // Identifier
607 }
David Majnemer48c28fa2014-10-22 21:08:43 +0000608 // If no section attributes are specified, the section will be marked as
609 // read/write.
610 if (SectionFlagsAreDefault)
611 SectionFlags |= ASTContext::PSF_Write;
Reid Kleckner722b1df2014-07-18 00:13:16 +0000612 if (Tok.isNot(tok::r_paren)) {
613 PP.Diag(PragmaLocation, diag::warn_pragma_expected_rparen) << PragmaName;
614 return false;
615 }
Warren Huntc3b18962014-04-08 22:30:47 +0000616 PP.Lex(Tok); // )
Reid Kleckner722b1df2014-07-18 00:13:16 +0000617 if (Tok.isNot(tok::eof)) {
618 PP.Diag(PragmaLocation, diag::warn_pragma_extra_tokens_at_eol)
619 << PragmaName;
620 return false;
621 }
Warren Huntc3b18962014-04-08 22:30:47 +0000622 PP.Lex(Tok); // eof
623 Actions.ActOnPragmaMSSection(PragmaLocation, SectionFlags, SegmentName);
Reid Kleckner722b1df2014-07-18 00:13:16 +0000624 return true;
Warren Huntc3b18962014-04-08 22:30:47 +0000625}
626
Reid Kleckner722b1df2014-07-18 00:13:16 +0000627bool Parser::HandlePragmaMSSegment(StringRef PragmaName,
628 SourceLocation PragmaLocation) {
629 if (Tok.isNot(tok::l_paren)) {
630 PP.Diag(PragmaLocation, diag::warn_pragma_expected_lparen) << PragmaName;
631 return false;
632 }
Warren Huntc3b18962014-04-08 22:30:47 +0000633 PP.Lex(Tok); // (
634 Sema::PragmaMsStackAction Action = Sema::PSK_Reset;
Reid Kleckner722b1df2014-07-18 00:13:16 +0000635 StringRef SlotLabel;
Warren Huntc3b18962014-04-08 22:30:47 +0000636 if (Tok.isAnyIdentifier()) {
Reid Kleckner722b1df2014-07-18 00:13:16 +0000637 StringRef PushPop = Tok.getIdentifierInfo()->getName();
Warren Huntc3b18962014-04-08 22:30:47 +0000638 if (PushPop == "push")
639 Action = Sema::PSK_Push;
640 else if (PushPop == "pop")
641 Action = Sema::PSK_Pop;
Reid Kleckner722b1df2014-07-18 00:13:16 +0000642 else {
643 PP.Diag(PragmaLocation,
644 diag::warn_pragma_expected_section_push_pop_or_name)
645 << PragmaName;
646 return false;
647 }
Warren Huntc3b18962014-04-08 22:30:47 +0000648 if (Action != Sema::PSK_Reset) {
649 PP.Lex(Tok); // push | pop
650 if (Tok.is(tok::comma)) {
651 PP.Lex(Tok); // ,
652 // If we've got a comma, we either need a label or a string.
653 if (Tok.isAnyIdentifier()) {
654 SlotLabel = Tok.getIdentifierInfo()->getName();
655 PP.Lex(Tok); // identifier
656 if (Tok.is(tok::comma))
657 PP.Lex(Tok);
Reid Kleckner722b1df2014-07-18 00:13:16 +0000658 else if (Tok.isNot(tok::r_paren)) {
659 PP.Diag(PragmaLocation, diag::warn_pragma_expected_punc)
660 << PragmaName;
661 return false;
662 }
Warren Huntc3b18962014-04-08 22:30:47 +0000663 }
Reid Kleckner722b1df2014-07-18 00:13:16 +0000664 } else if (Tok.isNot(tok::r_paren)) {
665 PP.Diag(PragmaLocation, diag::warn_pragma_expected_punc) << PragmaName;
666 return false;
667 }
Warren Huntc3b18962014-04-08 22:30:47 +0000668 }
669 }
670 // Grab the string literal for our section name.
671 StringLiteral *SegmentName = nullptr;
672 if (Tok.isNot(tok::r_paren)) {
Reid Kleckner722b1df2014-07-18 00:13:16 +0000673 if (Tok.isNot(tok::string_literal)) {
674 unsigned DiagID = Action != Sema::PSK_Reset ? !SlotLabel.empty() ?
Warren Huntc3b18962014-04-08 22:30:47 +0000675 diag::warn_pragma_expected_section_name :
676 diag::warn_pragma_expected_section_label_or_name :
677 diag::warn_pragma_expected_section_push_pop_or_name;
Reid Kleckner722b1df2014-07-18 00:13:16 +0000678 PP.Diag(PragmaLocation, DiagID) << PragmaName;
679 return false;
680 }
681 ExprResult StringResult = ParseStringLiteralExpression();
682 if (StringResult.isInvalid())
683 return false; // Already diagnosed.
684 SegmentName = cast<StringLiteral>(StringResult.get());
685 if (SegmentName->getCharByteWidth() != 1) {
686 PP.Diag(PragmaLocation, diag::warn_pragma_expected_non_wide_string)
687 << PragmaName;
688 return false;
689 }
Warren Huntc3b18962014-04-08 22:30:47 +0000690 // Setting section "" has no effect
691 if (SegmentName->getLength())
692 Action = (Sema::PragmaMsStackAction)(Action | Sema::PSK_Set);
693 }
Reid Kleckner722b1df2014-07-18 00:13:16 +0000694 if (Tok.isNot(tok::r_paren)) {
695 PP.Diag(PragmaLocation, diag::warn_pragma_expected_rparen) << PragmaName;
696 return false;
697 }
Warren Huntc3b18962014-04-08 22:30:47 +0000698 PP.Lex(Tok); // )
Reid Kleckner722b1df2014-07-18 00:13:16 +0000699 if (Tok.isNot(tok::eof)) {
700 PP.Diag(PragmaLocation, diag::warn_pragma_extra_tokens_at_eol)
701 << PragmaName;
702 return false;
703 }
Warren Huntc3b18962014-04-08 22:30:47 +0000704 PP.Lex(Tok); // eof
705 Actions.ActOnPragmaMSSeg(PragmaLocation, Action, SlotLabel,
706 SegmentName, PragmaName);
Reid Kleckner722b1df2014-07-18 00:13:16 +0000707 return true;
Warren Huntc3b18962014-04-08 22:30:47 +0000708}
709
Reid Kleckner1a711b12014-07-22 00:53:05 +0000710// #pragma init_seg({ compiler | lib | user | "section-name" [, func-name]} )
Reid Kleckner722b1df2014-07-18 00:13:16 +0000711bool Parser::HandlePragmaMSInitSeg(StringRef PragmaName,
712 SourceLocation PragmaLocation) {
David Majnemerad2986e2014-08-14 06:35:08 +0000713 if (getTargetInfo().getTriple().getEnvironment() != llvm::Triple::MSVC) {
714 PP.Diag(PragmaLocation, diag::warn_pragma_init_seg_unsupported_target);
715 return false;
716 }
717
Reid Kleckner1a711b12014-07-22 00:53:05 +0000718 if (ExpectAndConsume(tok::l_paren, diag::warn_pragma_expected_lparen,
719 PragmaName))
720 return false;
721
722 // Parse either the known section names or the string section name.
723 StringLiteral *SegmentName = nullptr;
724 if (Tok.isAnyIdentifier()) {
725 auto *II = Tok.getIdentifierInfo();
726 StringRef Section = llvm::StringSwitch<StringRef>(II->getName())
727 .Case("compiler", "\".CRT$XCC\"")
728 .Case("lib", "\".CRT$XCL\"")
729 .Case("user", "\".CRT$XCU\"")
730 .Default("");
731
732 if (!Section.empty()) {
733 // Pretend the user wrote the appropriate string literal here.
734 Token Toks[1];
735 Toks[0].startToken();
736 Toks[0].setKind(tok::string_literal);
737 Toks[0].setLocation(Tok.getLocation());
738 Toks[0].setLiteralData(Section.data());
739 Toks[0].setLength(Section.size());
740 SegmentName =
741 cast<StringLiteral>(Actions.ActOnStringLiteral(Toks, nullptr).get());
742 PP.Lex(Tok);
743 }
744 } else if (Tok.is(tok::string_literal)) {
745 ExprResult StringResult = ParseStringLiteralExpression();
746 if (StringResult.isInvalid())
747 return false;
748 SegmentName = cast<StringLiteral>(StringResult.get());
749 if (SegmentName->getCharByteWidth() != 1) {
750 PP.Diag(PragmaLocation, diag::warn_pragma_expected_non_wide_string)
751 << PragmaName;
752 return false;
753 }
754 // FIXME: Add support for the '[, func-name]' part of the pragma.
755 }
756
757 if (!SegmentName) {
758 PP.Diag(PragmaLocation, diag::warn_pragma_expected_init_seg) << PragmaName;
759 return false;
760 }
761
762 if (ExpectAndConsume(tok::r_paren, diag::warn_pragma_expected_rparen,
763 PragmaName) ||
764 ExpectAndConsume(tok::eof, diag::warn_pragma_extra_tokens_at_eol,
765 PragmaName))
766 return false;
767
768 Actions.ActOnPragmaMSInitSeg(PragmaLocation, SegmentName);
769 return true;
Eli Bendersky06a40422014-06-06 20:31:48 +0000770}
771
Benjamin Kramere003ca22015-10-28 13:54:16 +0000772namespace {
Eli Bendersky06a40422014-06-06 20:31:48 +0000773struct PragmaLoopHintInfo {
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000774 Token PragmaName;
Eli Bendersky06a40422014-06-06 20:31:48 +0000775 Token Option;
Benjamin Kramerfa7f8552015-08-05 09:39:57 +0000776 ArrayRef<Token> Toks;
Eli Bendersky06a40422014-06-06 20:31:48 +0000777};
Benjamin Kramere003ca22015-10-28 13:54:16 +0000778} // end anonymous namespace
Eli Bendersky06a40422014-06-06 20:31:48 +0000779
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000780static std::string PragmaLoopHintString(Token PragmaName, Token Option) {
781 std::string PragmaString;
782 if (PragmaName.getIdentifierInfo()->getName() == "loop") {
783 PragmaString = "clang loop ";
784 PragmaString += Option.getIdentifierInfo()->getName();
785 } else {
786 assert(PragmaName.getIdentifierInfo()->getName() == "unroll" &&
787 "Unexpected pragma name");
788 PragmaString = "unroll";
789 }
790 return PragmaString;
791}
792
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000793bool Parser::HandlePragmaLoopHint(LoopHint &Hint) {
Eli Bendersky06a40422014-06-06 20:31:48 +0000794 assert(Tok.is(tok::annot_pragma_loop_hint));
795 PragmaLoopHintInfo *Info =
796 static_cast<PragmaLoopHintInfo *>(Tok.getAnnotationValue());
797
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000798 IdentifierInfo *PragmaNameInfo = Info->PragmaName.getIdentifierInfo();
799 Hint.PragmaNameLoc = IdentifierLoc::create(
800 Actions.Context, Info->PragmaName.getLocation(), PragmaNameInfo);
Eli Bendersky06a40422014-06-06 20:31:48 +0000801
Aaron Ballmanef940aa2014-07-31 21:24:32 +0000802 // It is possible that the loop hint has no option identifier, such as
803 // #pragma unroll(4).
804 IdentifierInfo *OptionInfo = Info->Option.is(tok::identifier)
805 ? Info->Option.getIdentifierInfo()
806 : nullptr;
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000807 Hint.OptionLoc = IdentifierLoc::create(
808 Actions.Context, Info->Option.getLocation(), OptionInfo);
809
David Blaikie2eabcc92016-02-09 18:52:09 +0000810 llvm::ArrayRef<Token> Toks = Info->Toks;
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000811
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000812 // Return a valid hint if pragma unroll or nounroll were specified
813 // without an argument.
814 bool PragmaUnroll = PragmaNameInfo->getName() == "unroll";
815 bool PragmaNoUnroll = PragmaNameInfo->getName() == "nounroll";
David Blaikie2eabcc92016-02-09 18:52:09 +0000816 if (Toks.empty() && (PragmaUnroll || PragmaNoUnroll)) {
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000817 ConsumeToken(); // The annotation token.
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000818 Hint.Range = Info->PragmaName.getLocation();
819 return true;
820 }
821
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000822 // The constant expression is always followed by an eof token, which increases
823 // the TokSize by 1.
David Blaikie2eabcc92016-02-09 18:52:09 +0000824 assert(!Toks.empty() &&
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000825 "PragmaLoopHintInfo::Toks must contain at least one token.");
826
827 // If no option is specified the argument is assumed to be a constant expr.
Tyler Nowicki24853c12015-06-08 23:13:43 +0000828 bool OptionUnroll = false;
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000829 bool StateOption = false;
Tyler Nowicki24853c12015-06-08 23:13:43 +0000830 if (OptionInfo) { // Pragma Unroll does not specify an option.
831 OptionUnroll = OptionInfo->isStr("unroll");
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000832 StateOption = llvm::StringSwitch<bool>(OptionInfo->getName())
833 .Case("vectorize", true)
834 .Case("interleave", true)
Adam Nemetb4b6a942016-04-19 22:29:24 +0000835 .Default(false) || OptionUnroll;
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000836 }
837
838 // Verify loop hint has an argument.
839 if (Toks[0].is(tok::eof)) {
840 ConsumeToken(); // The annotation token.
841 Diag(Toks[0].getLocation(), diag::err_pragma_loop_missing_argument)
Tyler Nowicki24853c12015-06-08 23:13:43 +0000842 << /*StateArgument=*/StateOption << /*FullKeyword=*/OptionUnroll;
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000843 return false;
844 }
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000845
846 // Validate the argument.
847 if (StateOption) {
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000848 ConsumeToken(); // The annotation token.
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000849 SourceLocation StateLoc = Toks[0].getLocation();
850 IdentifierInfo *StateInfo = Toks[0].getIdentifierInfo();
Adam Nemet50de4e82016-04-19 22:17:45 +0000851
852 bool Valid = StateInfo &&
853 llvm::StringSwitch<bool>(StateInfo->getName())
854 .Cases("enable", "disable", true)
855 .Case("full", OptionUnroll)
856 .Case("assume_safety", !OptionUnroll)
857 .Default(false);
858 if (!Valid) {
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000859 Diag(Toks[0].getLocation(), diag::err_pragma_invalid_keyword)
860 << /*FullKeyword=*/OptionUnroll;
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000861 return false;
862 }
David Blaikie2eabcc92016-02-09 18:52:09 +0000863 if (Toks.size() > 2)
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000864 Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
865 << PragmaLoopHintString(Info->PragmaName, Info->Option);
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000866 Hint.StateLoc = IdentifierLoc::create(Actions.Context, StateLoc, StateInfo);
867 } else {
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000868 // Enter constant expression including eof terminator into token stream.
David Blaikie2eabcc92016-02-09 18:52:09 +0000869 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/false);
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000870 ConsumeToken(); // The annotation token.
871
872 ExprResult R = ParseConstantExpression();
873
874 // Tokens following an error in an ill-formed constant expression will
875 // remain in the token stream and must be removed.
876 if (Tok.isNot(tok::eof)) {
877 Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
878 << PragmaLoopHintString(Info->PragmaName, Info->Option);
879 while (Tok.isNot(tok::eof))
880 ConsumeAnyToken();
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000881 }
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000882
883 ConsumeToken(); // Consume the constant expression eof terminator.
884
885 if (R.isInvalid() ||
886 Actions.CheckLoopHintExpr(R.get(), Toks[0].getLocation()))
887 return false;
888
889 // Argument is a constant expression with an integer type.
890 Hint.ValueExpr = R.get();
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000891 }
Eli Bendersky06a40422014-06-06 20:31:48 +0000892
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000893 Hint.Range = SourceRange(Info->PragmaName.getLocation(),
David Blaikie2eabcc92016-02-09 18:52:09 +0000894 Info->Toks.back().getLocation());
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000895 return true;
Eli Bendersky06a40422014-06-06 20:31:48 +0000896}
897
898// #pragma GCC visibility comes in two variants:
899// 'push' '(' [visibility] ')'
900// 'pop'
Douglas Gregorc7d65762010-09-09 22:45:38 +0000901void PragmaGCCVisibilityHandler::HandlePragma(Preprocessor &PP,
902 PragmaIntroducerKind Introducer,
903 Token &VisTok) {
Eli Friedman570024a2010-08-05 06:57:20 +0000904 SourceLocation VisLoc = VisTok.getLocation();
905
906 Token Tok;
Joerg Sonnenberger869f0b72011-07-20 01:03:50 +0000907 PP.LexUnexpandedToken(Tok);
Eli Friedman570024a2010-08-05 06:57:20 +0000908
909 const IdentifierInfo *PushPop = Tok.getIdentifierInfo();
910
Eli Friedman570024a2010-08-05 06:57:20 +0000911 const IdentifierInfo *VisType;
912 if (PushPop && PushPop->isStr("pop")) {
Craig Topper161e4db2014-05-21 06:02:52 +0000913 VisType = nullptr;
Eli Friedman570024a2010-08-05 06:57:20 +0000914 } else if (PushPop && PushPop->isStr("push")) {
Joerg Sonnenberger869f0b72011-07-20 01:03:50 +0000915 PP.LexUnexpandedToken(Tok);
Eli Friedman570024a2010-08-05 06:57:20 +0000916 if (Tok.isNot(tok::l_paren)) {
917 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen)
918 << "visibility";
919 return;
920 }
Joerg Sonnenberger869f0b72011-07-20 01:03:50 +0000921 PP.LexUnexpandedToken(Tok);
Eli Friedman570024a2010-08-05 06:57:20 +0000922 VisType = Tok.getIdentifierInfo();
923 if (!VisType) {
924 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
925 << "visibility";
926 return;
927 }
Joerg Sonnenberger869f0b72011-07-20 01:03:50 +0000928 PP.LexUnexpandedToken(Tok);
Eli Friedman570024a2010-08-05 06:57:20 +0000929 if (Tok.isNot(tok::r_paren)) {
930 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_rparen)
931 << "visibility";
932 return;
933 }
934 } else {
935 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
936 << "visibility";
937 return;
938 }
David Majnemera8f2f1d2015-03-19 00:10:23 +0000939 SourceLocation EndLoc = Tok.getLocation();
Joerg Sonnenberger869f0b72011-07-20 01:03:50 +0000940 PP.LexUnexpandedToken(Tok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000941 if (Tok.isNot(tok::eod)) {
Eli Friedman570024a2010-08-05 06:57:20 +0000942 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
943 << "visibility";
944 return;
945 }
946
David Blaikie2eabcc92016-02-09 18:52:09 +0000947 auto Toks = llvm::make_unique<Token[]>(1);
Rafael Espindola273fd772012-01-26 02:02:57 +0000948 Toks[0].startToken();
949 Toks[0].setKind(tok::annot_pragma_vis);
950 Toks[0].setLocation(VisLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +0000951 Toks[0].setAnnotationEndLoc(EndLoc);
Rafael Espindola273fd772012-01-26 02:02:57 +0000952 Toks[0].setAnnotationValue(
953 const_cast<void*>(static_cast<const void*>(VisType)));
David Blaikie2eabcc92016-02-09 18:52:09 +0000954 PP.EnterTokenStream(std::move(Toks), 1, /*DisableMacroExpansion=*/true);
Eli Friedman570024a2010-08-05 06:57:20 +0000955}
956
Daniel Dunbar921b9682008-10-04 19:21:03 +0000957// #pragma pack(...) comes in the following delicious flavors:
958// pack '(' [integer] ')'
959// pack '(' 'show' ')'
960// pack '(' ('push' | 'pop') [',' identifier] [, integer] ')'
Douglas Gregorc7d65762010-09-09 22:45:38 +0000961void PragmaPackHandler::HandlePragma(Preprocessor &PP,
962 PragmaIntroducerKind Introducer,
963 Token &PackTok) {
Daniel Dunbar921b9682008-10-04 19:21:03 +0000964 SourceLocation PackLoc = PackTok.getLocation();
965
966 Token Tok;
967 PP.Lex(Tok);
968 if (Tok.isNot(tok::l_paren)) {
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000969 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "pack";
Daniel Dunbar921b9682008-10-04 19:21:03 +0000970 return;
971 }
972
Denis Zobnin10c4f452016-04-29 18:17:40 +0000973 Sema::PragmaMsStackAction Action = Sema::PSK_Reset;
974 StringRef SlotLabel;
Eli Friedman68be1642012-10-04 02:36:51 +0000975 Token Alignment;
976 Alignment.startToken();
Mike Stump11289f42009-09-09 15:08:12 +0000977 PP.Lex(Tok);
Daniel Dunbar921b9682008-10-04 19:21:03 +0000978 if (Tok.is(tok::numeric_constant)) {
Eli Friedman68be1642012-10-04 02:36:51 +0000979 Alignment = Tok;
Daniel Dunbar921b9682008-10-04 19:21:03 +0000980
981 PP.Lex(Tok);
Eli Friedman055c9702011-11-02 01:53:16 +0000982
983 // In MSVC/gcc, #pragma pack(4) sets the alignment without affecting
984 // the push/pop stack.
985 // In Apple gcc, #pragma pack(4) is equivalent to #pragma pack(push, 4)
Denis Zobnin10c4f452016-04-29 18:17:40 +0000986 Action =
987 PP.getLangOpts().ApplePragmaPack ? Sema::PSK_Push_Set : Sema::PSK_Set;
Daniel Dunbar921b9682008-10-04 19:21:03 +0000988 } else if (Tok.is(tok::identifier)) {
989 const IdentifierInfo *II = Tok.getIdentifierInfo();
Chris Lattnere3d20d92008-11-23 21:45:46 +0000990 if (II->isStr("show")) {
Denis Zobnin10c4f452016-04-29 18:17:40 +0000991 Action = Sema::PSK_Show;
Daniel Dunbar921b9682008-10-04 19:21:03 +0000992 PP.Lex(Tok);
993 } else {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000994 if (II->isStr("push")) {
Denis Zobnin10c4f452016-04-29 18:17:40 +0000995 Action = Sema::PSK_Push;
Chris Lattnere3d20d92008-11-23 21:45:46 +0000996 } else if (II->isStr("pop")) {
Denis Zobnin10c4f452016-04-29 18:17:40 +0000997 Action = Sema::PSK_Pop;
Daniel Dunbar921b9682008-10-04 19:21:03 +0000998 } else {
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000999 PP.Diag(Tok.getLocation(), diag::warn_pragma_invalid_action) << "pack";
Daniel Dunbar921b9682008-10-04 19:21:03 +00001000 return;
Mike Stump11289f42009-09-09 15:08:12 +00001001 }
Daniel Dunbar921b9682008-10-04 19:21:03 +00001002 PP.Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001003
Daniel Dunbar921b9682008-10-04 19:21:03 +00001004 if (Tok.is(tok::comma)) {
1005 PP.Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001006
Daniel Dunbar921b9682008-10-04 19:21:03 +00001007 if (Tok.is(tok::numeric_constant)) {
Denis Zobnin10c4f452016-04-29 18:17:40 +00001008 Action = (Sema::PragmaMsStackAction)(Action | Sema::PSK_Set);
Eli Friedman68be1642012-10-04 02:36:51 +00001009 Alignment = Tok;
Daniel Dunbar921b9682008-10-04 19:21:03 +00001010
1011 PP.Lex(Tok);
1012 } else if (Tok.is(tok::identifier)) {
Denis Zobnin10c4f452016-04-29 18:17:40 +00001013 SlotLabel = Tok.getIdentifierInfo()->getName();
Daniel Dunbar921b9682008-10-04 19:21:03 +00001014 PP.Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001015
Daniel Dunbar921b9682008-10-04 19:21:03 +00001016 if (Tok.is(tok::comma)) {
1017 PP.Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001018
Daniel Dunbar921b9682008-10-04 19:21:03 +00001019 if (Tok.isNot(tok::numeric_constant)) {
Chris Lattnere3d20d92008-11-23 21:45:46 +00001020 PP.Diag(Tok.getLocation(), diag::warn_pragma_pack_malformed);
Daniel Dunbar921b9682008-10-04 19:21:03 +00001021 return;
1022 }
Mike Stump11289f42009-09-09 15:08:12 +00001023
Denis Zobnin10c4f452016-04-29 18:17:40 +00001024 Action = (Sema::PragmaMsStackAction)(Action | Sema::PSK_Set);
Eli Friedman68be1642012-10-04 02:36:51 +00001025 Alignment = Tok;
Daniel Dunbar921b9682008-10-04 19:21:03 +00001026
1027 PP.Lex(Tok);
1028 }
1029 } else {
Chris Lattnere3d20d92008-11-23 21:45:46 +00001030 PP.Diag(Tok.getLocation(), diag::warn_pragma_pack_malformed);
Daniel Dunbar921b9682008-10-04 19:21:03 +00001031 return;
1032 }
1033 }
1034 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001035 } else if (PP.getLangOpts().ApplePragmaPack) {
Eli Friedman055c9702011-11-02 01:53:16 +00001036 // In MSVC/gcc, #pragma pack() resets the alignment without affecting
1037 // the push/pop stack.
1038 // In Apple gcc #pragma pack() is equivalent to #pragma pack(pop).
Denis Zobnin10c4f452016-04-29 18:17:40 +00001039 Action = Sema::PSK_Pop;
Sebastian Redl17f2c7d2008-12-09 13:15:23 +00001040 }
Daniel Dunbar921b9682008-10-04 19:21:03 +00001041
1042 if (Tok.isNot(tok::r_paren)) {
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001043 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_rparen) << "pack";
Daniel Dunbar921b9682008-10-04 19:21:03 +00001044 return;
1045 }
1046
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001047 SourceLocation RParenLoc = Tok.getLocation();
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001048 PP.Lex(Tok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001049 if (Tok.isNot(tok::eod)) {
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001050 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) << "pack";
1051 return;
1052 }
1053
David Blaikie2eabcc92016-02-09 18:52:09 +00001054 PragmaPackInfo *Info =
1055 PP.getPreprocessorAllocator().Allocate<PragmaPackInfo>(1);
Denis Zobnin10c4f452016-04-29 18:17:40 +00001056 Info->Action = Action;
1057 Info->SlotLabel = SlotLabel;
Eli Friedman68be1642012-10-04 02:36:51 +00001058 Info->Alignment = Alignment;
Eli Friedmanec52f922012-02-23 23:47:16 +00001059
David Blaikie2eabcc92016-02-09 18:52:09 +00001060 MutableArrayRef<Token> Toks(PP.getPreprocessorAllocator().Allocate<Token>(1),
1061 1);
Eli Friedmanec52f922012-02-23 23:47:16 +00001062 Toks[0].startToken();
1063 Toks[0].setKind(tok::annot_pragma_pack);
1064 Toks[0].setLocation(PackLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001065 Toks[0].setAnnotationEndLoc(RParenLoc);
Eli Friedmanec52f922012-02-23 23:47:16 +00001066 Toks[0].setAnnotationValue(static_cast<void*>(Info));
David Blaikie2eabcc92016-02-09 18:52:09 +00001067 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Daniel Dunbar921b9682008-10-04 19:21:03 +00001068}
1069
Fariborz Jahanian743dda42011-04-25 18:49:15 +00001070// #pragma ms_struct on
1071// #pragma ms_struct off
1072void PragmaMSStructHandler::HandlePragma(Preprocessor &PP,
1073 PragmaIntroducerKind Introducer,
1074 Token &MSStructTok) {
Nico Weber779355f2016-03-02 23:22:00 +00001075 PragmaMSStructKind Kind = PMSST_OFF;
1076
Fariborz Jahanian743dda42011-04-25 18:49:15 +00001077 Token Tok;
1078 PP.Lex(Tok);
1079 if (Tok.isNot(tok::identifier)) {
1080 PP.Diag(Tok.getLocation(), diag::warn_pragma_ms_struct);
1081 return;
1082 }
David Majnemera8f2f1d2015-03-19 00:10:23 +00001083 SourceLocation EndLoc = Tok.getLocation();
Fariborz Jahanian743dda42011-04-25 18:49:15 +00001084 const IdentifierInfo *II = Tok.getIdentifierInfo();
1085 if (II->isStr("on")) {
Nico Weber779355f2016-03-02 23:22:00 +00001086 Kind = PMSST_ON;
Fariborz Jahanian743dda42011-04-25 18:49:15 +00001087 PP.Lex(Tok);
1088 }
1089 else if (II->isStr("off") || II->isStr("reset"))
1090 PP.Lex(Tok);
1091 else {
1092 PP.Diag(Tok.getLocation(), diag::warn_pragma_ms_struct);
1093 return;
1094 }
1095
1096 if (Tok.isNot(tok::eod)) {
Daniel Dunbar340cf242012-02-29 01:38:22 +00001097 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
1098 << "ms_struct";
Fariborz Jahanian743dda42011-04-25 18:49:15 +00001099 return;
1100 }
Eli Friedman68be1642012-10-04 02:36:51 +00001101
David Blaikie2eabcc92016-02-09 18:52:09 +00001102 MutableArrayRef<Token> Toks(PP.getPreprocessorAllocator().Allocate<Token>(1),
1103 1);
Eli Friedman68be1642012-10-04 02:36:51 +00001104 Toks[0].startToken();
1105 Toks[0].setKind(tok::annot_pragma_msstruct);
1106 Toks[0].setLocation(MSStructTok.getLocation());
David Majnemera8f2f1d2015-03-19 00:10:23 +00001107 Toks[0].setAnnotationEndLoc(EndLoc);
Eli Friedman68be1642012-10-04 02:36:51 +00001108 Toks[0].setAnnotationValue(reinterpret_cast<void*>(
1109 static_cast<uintptr_t>(Kind)));
David Blaikie2eabcc92016-02-09 18:52:09 +00001110 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Fariborz Jahanian743dda42011-04-25 18:49:15 +00001111}
1112
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001113// #pragma 'align' '=' {'native','natural','mac68k','power','reset'}
1114// #pragma 'options 'align' '=' {'native','natural','mac68k','power','reset'}
Eli Friedman68be1642012-10-04 02:36:51 +00001115static void ParseAlignPragma(Preprocessor &PP, Token &FirstTok,
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001116 bool IsOptions) {
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001117 Token Tok;
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001118
1119 if (IsOptions) {
1120 PP.Lex(Tok);
1121 if (Tok.isNot(tok::identifier) ||
1122 !Tok.getIdentifierInfo()->isStr("align")) {
1123 PP.Diag(Tok.getLocation(), diag::warn_pragma_options_expected_align);
1124 return;
1125 }
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001126 }
Daniel Dunbar663e8092010-05-27 18:42:09 +00001127
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001128 PP.Lex(Tok);
1129 if (Tok.isNot(tok::equal)) {
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001130 PP.Diag(Tok.getLocation(), diag::warn_pragma_align_expected_equal)
1131 << IsOptions;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001132 return;
1133 }
1134
1135 PP.Lex(Tok);
1136 if (Tok.isNot(tok::identifier)) {
1137 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001138 << (IsOptions ? "options" : "align");
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001139 return;
1140 }
1141
John McCallfaf5fb42010-08-26 23:41:50 +00001142 Sema::PragmaOptionsAlignKind Kind = Sema::POAK_Natural;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001143 const IdentifierInfo *II = Tok.getIdentifierInfo();
Daniel Dunbar663e8092010-05-27 18:42:09 +00001144 if (II->isStr("native"))
John McCallfaf5fb42010-08-26 23:41:50 +00001145 Kind = Sema::POAK_Native;
Daniel Dunbar663e8092010-05-27 18:42:09 +00001146 else if (II->isStr("natural"))
John McCallfaf5fb42010-08-26 23:41:50 +00001147 Kind = Sema::POAK_Natural;
Daniel Dunbar9c84d4a2010-05-27 18:42:17 +00001148 else if (II->isStr("packed"))
John McCallfaf5fb42010-08-26 23:41:50 +00001149 Kind = Sema::POAK_Packed;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001150 else if (II->isStr("power"))
John McCallfaf5fb42010-08-26 23:41:50 +00001151 Kind = Sema::POAK_Power;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001152 else if (II->isStr("mac68k"))
John McCallfaf5fb42010-08-26 23:41:50 +00001153 Kind = Sema::POAK_Mac68k;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001154 else if (II->isStr("reset"))
John McCallfaf5fb42010-08-26 23:41:50 +00001155 Kind = Sema::POAK_Reset;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001156 else {
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001157 PP.Diag(Tok.getLocation(), diag::warn_pragma_align_invalid_option)
1158 << IsOptions;
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001159 return;
1160 }
1161
David Majnemera8f2f1d2015-03-19 00:10:23 +00001162 SourceLocation EndLoc = Tok.getLocation();
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001163 PP.Lex(Tok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001164 if (Tok.isNot(tok::eod)) {
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001165 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001166 << (IsOptions ? "options" : "align");
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001167 return;
1168 }
1169
David Blaikie2eabcc92016-02-09 18:52:09 +00001170 MutableArrayRef<Token> Toks(PP.getPreprocessorAllocator().Allocate<Token>(1),
1171 1);
Eli Friedman68be1642012-10-04 02:36:51 +00001172 Toks[0].startToken();
1173 Toks[0].setKind(tok::annot_pragma_align);
1174 Toks[0].setLocation(FirstTok.getLocation());
David Majnemera8f2f1d2015-03-19 00:10:23 +00001175 Toks[0].setAnnotationEndLoc(EndLoc);
Eli Friedman68be1642012-10-04 02:36:51 +00001176 Toks[0].setAnnotationValue(reinterpret_cast<void*>(
1177 static_cast<uintptr_t>(Kind)));
David Blaikie2eabcc92016-02-09 18:52:09 +00001178 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001179}
1180
Douglas Gregorc7d65762010-09-09 22:45:38 +00001181void PragmaAlignHandler::HandlePragma(Preprocessor &PP,
1182 PragmaIntroducerKind Introducer,
1183 Token &AlignTok) {
Eli Friedman68be1642012-10-04 02:36:51 +00001184 ParseAlignPragma(PP, AlignTok, /*IsOptions=*/false);
Daniel Dunbarcb82acb2010-07-31 19:17:07 +00001185}
1186
Douglas Gregorc7d65762010-09-09 22:45:38 +00001187void PragmaOptionsHandler::HandlePragma(Preprocessor &PP,
1188 PragmaIntroducerKind Introducer,
1189 Token &OptionsTok) {
Eli Friedman68be1642012-10-04 02:36:51 +00001190 ParseAlignPragma(PP, OptionsTok, /*IsOptions=*/true);
Daniel Dunbar75c9be72010-05-26 23:29:06 +00001191}
1192
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001193// #pragma unused(identifier)
Douglas Gregorc7d65762010-09-09 22:45:38 +00001194void PragmaUnusedHandler::HandlePragma(Preprocessor &PP,
1195 PragmaIntroducerKind Introducer,
1196 Token &UnusedTok) {
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001197 // FIXME: Should we be expanding macros here? My guess is no.
1198 SourceLocation UnusedLoc = UnusedTok.getLocation();
Mike Stump11289f42009-09-09 15:08:12 +00001199
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001200 // Lex the left '('.
1201 Token Tok;
1202 PP.Lex(Tok);
1203 if (Tok.isNot(tok::l_paren)) {
1204 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "unused";
1205 return;
1206 }
Mike Stump11289f42009-09-09 15:08:12 +00001207
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001208 // Lex the declaration reference(s).
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001209 SmallVector<Token, 5> Identifiers;
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001210 SourceLocation RParenLoc;
1211 bool LexID = true;
Mike Stump11289f42009-09-09 15:08:12 +00001212
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001213 while (true) {
1214 PP.Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001215
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001216 if (LexID) {
Mike Stump11289f42009-09-09 15:08:12 +00001217 if (Tok.is(tok::identifier)) {
Ted Kremenekfb50bf52009-08-03 23:24:57 +00001218 Identifiers.push_back(Tok);
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001219 LexID = false;
1220 continue;
1221 }
1222
Ted Kremenekfb50bf52009-08-03 23:24:57 +00001223 // Illegal token!
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001224 PP.Diag(Tok.getLocation(), diag::warn_pragma_unused_expected_var);
1225 return;
1226 }
Mike Stump11289f42009-09-09 15:08:12 +00001227
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001228 // We are execting a ')' or a ','.
1229 if (Tok.is(tok::comma)) {
1230 LexID = true;
1231 continue;
1232 }
Mike Stump11289f42009-09-09 15:08:12 +00001233
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001234 if (Tok.is(tok::r_paren)) {
1235 RParenLoc = Tok.getLocation();
1236 break;
1237 }
Mike Stump11289f42009-09-09 15:08:12 +00001238
Ted Kremenekfb50bf52009-08-03 23:24:57 +00001239 // Illegal token!
David Majnemer88969812014-02-10 19:06:37 +00001240 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_punc) << "unused";
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001241 return;
1242 }
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001243
1244 PP.Lex(Tok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001245 if (Tok.isNot(tok::eod)) {
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001246 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) <<
1247 "unused";
1248 return;
1249 }
1250
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001251 // Verify that we have a location for the right parenthesis.
1252 assert(RParenLoc.isValid() && "Valid '#pragma unused' must have ')'");
Ted Kremenekfb50bf52009-08-03 23:24:57 +00001253 assert(!Identifiers.empty() && "Valid '#pragma unused' must have arguments");
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001254
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +00001255 // For each identifier token, insert into the token stream a
1256 // annot_pragma_unused token followed by the identifier token.
1257 // This allows us to cache a "#pragma unused" that occurs inside an inline
1258 // C++ member function.
1259
David Blaikie2eabcc92016-02-09 18:52:09 +00001260 MutableArrayRef<Token> Toks(
1261 PP.getPreprocessorAllocator().Allocate<Token>(2 * Identifiers.size()),
1262 2 * Identifiers.size());
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +00001263 for (unsigned i=0; i != Identifiers.size(); i++) {
1264 Token &pragmaUnusedTok = Toks[2*i], &idTok = Toks[2*i+1];
1265 pragmaUnusedTok.startToken();
1266 pragmaUnusedTok.setKind(tok::annot_pragma_unused);
1267 pragmaUnusedTok.setLocation(UnusedLoc);
1268 idTok = Identifiers[i];
1269 }
David Blaikie2eabcc92016-02-09 18:52:09 +00001270 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Ted Kremenekfd14fad2009-03-23 22:28:25 +00001271}
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001272
1273// #pragma weak identifier
1274// #pragma weak identifier '=' identifier
Douglas Gregorc7d65762010-09-09 22:45:38 +00001275void PragmaWeakHandler::HandlePragma(Preprocessor &PP,
1276 PragmaIntroducerKind Introducer,
1277 Token &WeakTok) {
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001278 SourceLocation WeakLoc = WeakTok.getLocation();
1279
1280 Token Tok;
1281 PP.Lex(Tok);
1282 if (Tok.isNot(tok::identifier)) {
1283 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) << "weak";
1284 return;
1285 }
1286
Eli Friedman68be1642012-10-04 02:36:51 +00001287 Token WeakName = Tok;
1288 bool HasAlias = false;
1289 Token AliasName;
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001290
1291 PP.Lex(Tok);
1292 if (Tok.is(tok::equal)) {
Eli Friedman68be1642012-10-04 02:36:51 +00001293 HasAlias = true;
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001294 PP.Lex(Tok);
1295 if (Tok.isNot(tok::identifier)) {
Mike Stump11289f42009-09-09 15:08:12 +00001296 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001297 << "weak";
1298 return;
1299 }
Eli Friedman68be1642012-10-04 02:36:51 +00001300 AliasName = Tok;
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001301 PP.Lex(Tok);
1302 }
1303
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001304 if (Tok.isNot(tok::eod)) {
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001305 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) << "weak";
1306 return;
1307 }
1308
Eli Friedman68be1642012-10-04 02:36:51 +00001309 if (HasAlias) {
David Blaikie2eabcc92016-02-09 18:52:09 +00001310 MutableArrayRef<Token> Toks(
1311 PP.getPreprocessorAllocator().Allocate<Token>(3), 3);
Eli Friedman68be1642012-10-04 02:36:51 +00001312 Token &pragmaUnusedTok = Toks[0];
1313 pragmaUnusedTok.startToken();
1314 pragmaUnusedTok.setKind(tok::annot_pragma_weakalias);
1315 pragmaUnusedTok.setLocation(WeakLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001316 pragmaUnusedTok.setAnnotationEndLoc(AliasName.getLocation());
Eli Friedman68be1642012-10-04 02:36:51 +00001317 Toks[1] = WeakName;
1318 Toks[2] = AliasName;
David Blaikie2eabcc92016-02-09 18:52:09 +00001319 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001320 } else {
David Blaikie2eabcc92016-02-09 18:52:09 +00001321 MutableArrayRef<Token> Toks(
1322 PP.getPreprocessorAllocator().Allocate<Token>(2), 2);
Eli Friedman68be1642012-10-04 02:36:51 +00001323 Token &pragmaUnusedTok = Toks[0];
1324 pragmaUnusedTok.startToken();
1325 pragmaUnusedTok.setKind(tok::annot_pragma_weak);
1326 pragmaUnusedTok.setLocation(WeakLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001327 pragmaUnusedTok.setAnnotationEndLoc(WeakLoc);
Eli Friedman68be1642012-10-04 02:36:51 +00001328 Toks[1] = WeakName;
David Blaikie2eabcc92016-02-09 18:52:09 +00001329 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Eli Friedmanf5867dd2009-06-05 00:49:58 +00001330 }
1331}
Peter Collingbourne564c0fa2011-02-14 01:42:35 +00001332
David Chisnall0867d9c2012-02-18 16:12:34 +00001333// #pragma redefine_extname identifier identifier
1334void PragmaRedefineExtnameHandler::HandlePragma(Preprocessor &PP,
1335 PragmaIntroducerKind Introducer,
1336 Token &RedefToken) {
1337 SourceLocation RedefLoc = RedefToken.getLocation();
1338
1339 Token Tok;
1340 PP.Lex(Tok);
1341 if (Tok.isNot(tok::identifier)) {
1342 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) <<
1343 "redefine_extname";
1344 return;
1345 }
1346
Eli Friedman68be1642012-10-04 02:36:51 +00001347 Token RedefName = Tok;
David Chisnall0867d9c2012-02-18 16:12:34 +00001348 PP.Lex(Tok);
Eli Friedman68be1642012-10-04 02:36:51 +00001349
David Chisnall0867d9c2012-02-18 16:12:34 +00001350 if (Tok.isNot(tok::identifier)) {
1351 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
1352 << "redefine_extname";
1353 return;
1354 }
Eli Friedman68be1642012-10-04 02:36:51 +00001355
1356 Token AliasName = Tok;
David Chisnall0867d9c2012-02-18 16:12:34 +00001357 PP.Lex(Tok);
1358
1359 if (Tok.isNot(tok::eod)) {
1360 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) <<
1361 "redefine_extname";
1362 return;
1363 }
1364
David Blaikie2eabcc92016-02-09 18:52:09 +00001365 MutableArrayRef<Token> Toks(PP.getPreprocessorAllocator().Allocate<Token>(3),
1366 3);
Eli Friedman68be1642012-10-04 02:36:51 +00001367 Token &pragmaRedefTok = Toks[0];
1368 pragmaRedefTok.startToken();
1369 pragmaRedefTok.setKind(tok::annot_pragma_redefine_extname);
1370 pragmaRedefTok.setLocation(RedefLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001371 pragmaRedefTok.setAnnotationEndLoc(AliasName.getLocation());
Eli Friedman68be1642012-10-04 02:36:51 +00001372 Toks[1] = RedefName;
1373 Toks[2] = AliasName;
David Blaikie2eabcc92016-02-09 18:52:09 +00001374 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
David Chisnall0867d9c2012-02-18 16:12:34 +00001375}
1376
1377
Peter Collingbourne564c0fa2011-02-14 01:42:35 +00001378void
1379PragmaFPContractHandler::HandlePragma(Preprocessor &PP,
1380 PragmaIntroducerKind Introducer,
1381 Token &Tok) {
1382 tok::OnOffSwitch OOS;
1383 if (PP.LexOnOffSwitch(OOS))
1384 return;
1385
David Blaikie2eabcc92016-02-09 18:52:09 +00001386 MutableArrayRef<Token> Toks(PP.getPreprocessorAllocator().Allocate<Token>(1),
1387 1);
Eli Friedman68be1642012-10-04 02:36:51 +00001388 Toks[0].startToken();
1389 Toks[0].setKind(tok::annot_pragma_fp_contract);
1390 Toks[0].setLocation(Tok.getLocation());
David Majnemera8f2f1d2015-03-19 00:10:23 +00001391 Toks[0].setAnnotationEndLoc(Tok.getLocation());
Eli Friedman68be1642012-10-04 02:36:51 +00001392 Toks[0].setAnnotationValue(reinterpret_cast<void*>(
1393 static_cast<uintptr_t>(OOS)));
David Blaikie2eabcc92016-02-09 18:52:09 +00001394 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Peter Collingbourne564c0fa2011-02-14 01:42:35 +00001395}
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00001396
1397void
1398PragmaOpenCLExtensionHandler::HandlePragma(Preprocessor &PP,
1399 PragmaIntroducerKind Introducer,
1400 Token &Tok) {
Tanya Lattneree840b82011-04-14 23:35:31 +00001401 PP.LexUnexpandedToken(Tok);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00001402 if (Tok.isNot(tok::identifier)) {
1403 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) <<
1404 "OPENCL";
1405 return;
1406 }
1407 IdentifierInfo *ename = Tok.getIdentifierInfo();
1408 SourceLocation NameLoc = Tok.getLocation();
1409
1410 PP.Lex(Tok);
1411 if (Tok.isNot(tok::colon)) {
1412 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_colon) << ename;
1413 return;
1414 }
1415
1416 PP.Lex(Tok);
1417 if (Tok.isNot(tok::identifier)) {
1418 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_enable_disable);
1419 return;
1420 }
1421 IdentifierInfo *op = Tok.getIdentifierInfo();
1422
1423 unsigned state;
1424 if (op->isStr("enable")) {
1425 state = 1;
1426 } else if (op->isStr("disable")) {
1427 state = 0;
1428 } else {
1429 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_enable_disable);
1430 return;
1431 }
Pekka Jaaskelainen1db1da22013-10-12 09:29:48 +00001432 SourceLocation StateLoc = Tok.getLocation();
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00001433
Eli Friedman68be1642012-10-04 02:36:51 +00001434 PP.Lex(Tok);
1435 if (Tok.isNot(tok::eod)) {
1436 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) <<
1437 "OPENCL EXTENSION";
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00001438 return;
1439 }
Eli Friedman68be1642012-10-04 02:36:51 +00001440
1441 OpenCLExtData data(ename, state);
David Blaikie2eabcc92016-02-09 18:52:09 +00001442 MutableArrayRef<Token> Toks(PP.getPreprocessorAllocator().Allocate<Token>(1),
1443 1);
Eli Friedman68be1642012-10-04 02:36:51 +00001444 Toks[0].startToken();
1445 Toks[0].setKind(tok::annot_pragma_opencl_extension);
1446 Toks[0].setLocation(NameLoc);
1447 Toks[0].setAnnotationValue(data.getOpaqueValue());
David Majnemera8f2f1d2015-03-19 00:10:23 +00001448 Toks[0].setAnnotationEndLoc(StateLoc);
David Blaikie2eabcc92016-02-09 18:52:09 +00001449 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Pekka Jaaskelainen1db1da22013-10-12 09:29:48 +00001450
1451 if (PP.getPPCallbacks())
1452 PP.getPPCallbacks()->PragmaOpenCLExtension(NameLoc, ename,
1453 StateLoc, state);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00001454}
1455
Alexey Bataeva769e072013-03-22 06:34:35 +00001456/// \brief Handle '#pragma omp ...' when OpenMP is disabled.
1457///
1458void
1459PragmaNoOpenMPHandler::HandlePragma(Preprocessor &PP,
1460 PragmaIntroducerKind Introducer,
1461 Token &FirstTok) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001462 if (!PP.getDiagnostics().isIgnored(diag::warn_pragma_omp_ignored,
1463 FirstTok.getLocation())) {
Alexey Bataeva769e072013-03-22 06:34:35 +00001464 PP.Diag(FirstTok, diag::warn_pragma_omp_ignored);
Alp Tokerd576e002014-06-12 11:13:52 +00001465 PP.getDiagnostics().setSeverity(diag::warn_pragma_omp_ignored,
1466 diag::Severity::Ignored, SourceLocation());
Alexey Bataeva769e072013-03-22 06:34:35 +00001467 }
1468 PP.DiscardUntilEndOfDirective();
1469}
1470
1471/// \brief Handle '#pragma omp ...' when OpenMP is enabled.
1472///
1473void
1474PragmaOpenMPHandler::HandlePragma(Preprocessor &PP,
1475 PragmaIntroducerKind Introducer,
1476 Token &FirstTok) {
1477 SmallVector<Token, 16> Pragma;
1478 Token Tok;
1479 Tok.startToken();
1480 Tok.setKind(tok::annot_pragma_openmp);
1481 Tok.setLocation(FirstTok.getLocation());
1482
1483 while (Tok.isNot(tok::eod)) {
1484 Pragma.push_back(Tok);
1485 PP.Lex(Tok);
1486 }
1487 SourceLocation EodLoc = Tok.getLocation();
1488 Tok.startToken();
1489 Tok.setKind(tok::annot_pragma_openmp_end);
1490 Tok.setLocation(EodLoc);
1491 Pragma.push_back(Tok);
1492
David Blaikie2eabcc92016-02-09 18:52:09 +00001493 auto Toks = llvm::make_unique<Token[]>(Pragma.size());
1494 std::copy(Pragma.begin(), Pragma.end(), Toks.get());
1495 PP.EnterTokenStream(std::move(Toks), Pragma.size(),
1496 /*DisableMacroExpansion=*/false);
Alexey Bataeva769e072013-03-22 06:34:35 +00001497}
Reid Kleckner002562a2013-05-06 21:02:12 +00001498
David Majnemer4bb09802014-02-10 19:50:15 +00001499/// \brief Handle '#pragma pointers_to_members'
1500// The grammar for this pragma is as follows:
1501//
1502// <inheritance model> ::= ('single' | 'multiple' | 'virtual') '_inheritance'
1503//
1504// #pragma pointers_to_members '(' 'best_case' ')'
1505// #pragma pointers_to_members '(' 'full_generality' [',' inheritance-model] ')'
1506// #pragma pointers_to_members '(' inheritance-model ')'
1507void PragmaMSPointersToMembers::HandlePragma(Preprocessor &PP,
1508 PragmaIntroducerKind Introducer,
1509 Token &Tok) {
1510 SourceLocation PointersToMembersLoc = Tok.getLocation();
1511 PP.Lex(Tok);
1512 if (Tok.isNot(tok::l_paren)) {
1513 PP.Diag(PointersToMembersLoc, diag::warn_pragma_expected_lparen)
1514 << "pointers_to_members";
1515 return;
1516 }
1517 PP.Lex(Tok);
1518 const IdentifierInfo *Arg = Tok.getIdentifierInfo();
1519 if (!Arg) {
1520 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
1521 << "pointers_to_members";
1522 return;
1523 }
1524 PP.Lex(Tok);
1525
David Majnemer86c318f2014-02-11 21:05:00 +00001526 LangOptions::PragmaMSPointersToMembersKind RepresentationMethod;
David Majnemer4bb09802014-02-10 19:50:15 +00001527 if (Arg->isStr("best_case")) {
David Majnemer86c318f2014-02-11 21:05:00 +00001528 RepresentationMethod = LangOptions::PPTMK_BestCase;
David Majnemer4bb09802014-02-10 19:50:15 +00001529 } else {
1530 if (Arg->isStr("full_generality")) {
1531 if (Tok.is(tok::comma)) {
1532 PP.Lex(Tok);
1533
1534 Arg = Tok.getIdentifierInfo();
1535 if (!Arg) {
1536 PP.Diag(Tok.getLocation(),
1537 diag::err_pragma_pointers_to_members_unknown_kind)
1538 << Tok.getKind() << /*OnlyInheritanceModels*/ 0;
1539 return;
1540 }
1541 PP.Lex(Tok);
1542 } else if (Tok.is(tok::r_paren)) {
1543 // #pragma pointers_to_members(full_generality) implicitly specifies
1544 // virtual_inheritance.
Craig Topper161e4db2014-05-21 06:02:52 +00001545 Arg = nullptr;
David Majnemer86c318f2014-02-11 21:05:00 +00001546 RepresentationMethod = LangOptions::PPTMK_FullGeneralityVirtualInheritance;
David Majnemer4bb09802014-02-10 19:50:15 +00001547 } else {
1548 PP.Diag(Tok.getLocation(), diag::err_expected_punc)
1549 << "full_generality";
1550 return;
1551 }
1552 }
1553
1554 if (Arg) {
1555 if (Arg->isStr("single_inheritance")) {
David Majnemer86c318f2014-02-11 21:05:00 +00001556 RepresentationMethod =
1557 LangOptions::PPTMK_FullGeneralitySingleInheritance;
David Majnemer4bb09802014-02-10 19:50:15 +00001558 } else if (Arg->isStr("multiple_inheritance")) {
David Majnemer86c318f2014-02-11 21:05:00 +00001559 RepresentationMethod =
1560 LangOptions::PPTMK_FullGeneralityMultipleInheritance;
David Majnemer4bb09802014-02-10 19:50:15 +00001561 } else if (Arg->isStr("virtual_inheritance")) {
David Majnemer86c318f2014-02-11 21:05:00 +00001562 RepresentationMethod =
1563 LangOptions::PPTMK_FullGeneralityVirtualInheritance;
David Majnemer4bb09802014-02-10 19:50:15 +00001564 } else {
1565 PP.Diag(Tok.getLocation(),
1566 diag::err_pragma_pointers_to_members_unknown_kind)
1567 << Arg << /*HasPointerDeclaration*/ 1;
1568 return;
1569 }
1570 }
1571 }
1572
1573 if (Tok.isNot(tok::r_paren)) {
1574 PP.Diag(Tok.getLocation(), diag::err_expected_rparen_after)
1575 << (Arg ? Arg->getName() : "full_generality");
1576 return;
1577 }
1578
David Majnemera8f2f1d2015-03-19 00:10:23 +00001579 SourceLocation EndLoc = Tok.getLocation();
David Majnemer4bb09802014-02-10 19:50:15 +00001580 PP.Lex(Tok);
1581 if (Tok.isNot(tok::eod)) {
1582 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
1583 << "pointers_to_members";
1584 return;
1585 }
1586
1587 Token AnnotTok;
1588 AnnotTok.startToken();
1589 AnnotTok.setKind(tok::annot_pragma_ms_pointers_to_members);
1590 AnnotTok.setLocation(PointersToMembersLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001591 AnnotTok.setAnnotationEndLoc(EndLoc);
David Majnemer4bb09802014-02-10 19:50:15 +00001592 AnnotTok.setAnnotationValue(
1593 reinterpret_cast<void *>(static_cast<uintptr_t>(RepresentationMethod)));
1594 PP.EnterToken(AnnotTok);
1595}
1596
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001597/// \brief Handle '#pragma vtordisp'
1598// The grammar for this pragma is as follows:
1599//
1600// <vtordisp-mode> ::= ('off' | 'on' | '0' | '1' | '2' )
1601//
1602// #pragma vtordisp '(' ['push' ','] vtordisp-mode ')'
1603// #pragma vtordisp '(' 'pop' ')'
1604// #pragma vtordisp '(' ')'
1605void PragmaMSVtorDisp::HandlePragma(Preprocessor &PP,
1606 PragmaIntroducerKind Introducer,
1607 Token &Tok) {
1608 SourceLocation VtorDispLoc = Tok.getLocation();
1609 PP.Lex(Tok);
1610 if (Tok.isNot(tok::l_paren)) {
1611 PP.Diag(VtorDispLoc, diag::warn_pragma_expected_lparen) << "vtordisp";
1612 return;
1613 }
1614 PP.Lex(Tok);
1615
Denis Zobnin2290dac2016-04-29 11:27:00 +00001616 Sema::PragmaMsStackAction Action = Sema::PSK_Set;
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001617 const IdentifierInfo *II = Tok.getIdentifierInfo();
1618 if (II) {
1619 if (II->isStr("push")) {
1620 // #pragma vtordisp(push, mode)
1621 PP.Lex(Tok);
1622 if (Tok.isNot(tok::comma)) {
1623 PP.Diag(VtorDispLoc, diag::warn_pragma_expected_punc) << "vtordisp";
1624 return;
1625 }
1626 PP.Lex(Tok);
Denis Zobnin2290dac2016-04-29 11:27:00 +00001627 Action = Sema::PSK_Push_Set;
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001628 // not push, could be on/off
1629 } else if (II->isStr("pop")) {
1630 // #pragma vtordisp(pop)
1631 PP.Lex(Tok);
Denis Zobnin2290dac2016-04-29 11:27:00 +00001632 Action = Sema::PSK_Pop;
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001633 }
1634 // not push or pop, could be on/off
1635 } else {
1636 if (Tok.is(tok::r_paren)) {
1637 // #pragma vtordisp()
Denis Zobnin2290dac2016-04-29 11:27:00 +00001638 Action = Sema::PSK_Reset;
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001639 }
1640 }
1641
1642
Reid Klecknera4b3b2d2014-02-13 00:44:34 +00001643 uint64_t Value = 0;
Denis Zobnin2290dac2016-04-29 11:27:00 +00001644 if (Action & Sema::PSK_Push || Action & Sema::PSK_Set) {
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001645 const IdentifierInfo *II = Tok.getIdentifierInfo();
1646 if (II && II->isStr("off")) {
1647 PP.Lex(Tok);
1648 Value = 0;
1649 } else if (II && II->isStr("on")) {
1650 PP.Lex(Tok);
1651 Value = 1;
1652 } else if (Tok.is(tok::numeric_constant) &&
1653 PP.parseSimpleIntegerLiteral(Tok, Value)) {
1654 if (Value > 2) {
1655 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_integer)
1656 << 0 << 2 << "vtordisp";
1657 return;
1658 }
1659 } else {
1660 PP.Diag(Tok.getLocation(), diag::warn_pragma_invalid_action)
1661 << "vtordisp";
1662 return;
1663 }
1664 }
1665
1666 // Finish the pragma: ')' $
1667 if (Tok.isNot(tok::r_paren)) {
1668 PP.Diag(VtorDispLoc, diag::warn_pragma_expected_rparen) << "vtordisp";
1669 return;
1670 }
David Majnemera8f2f1d2015-03-19 00:10:23 +00001671 SourceLocation EndLoc = Tok.getLocation();
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001672 PP.Lex(Tok);
1673 if (Tok.isNot(tok::eod)) {
1674 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
1675 << "vtordisp";
1676 return;
1677 }
1678
1679 // Enter the annotation.
1680 Token AnnotTok;
1681 AnnotTok.startToken();
1682 AnnotTok.setKind(tok::annot_pragma_ms_vtordisp);
1683 AnnotTok.setLocation(VtorDispLoc);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001684 AnnotTok.setAnnotationEndLoc(EndLoc);
Reid Klecknera4b3b2d2014-02-13 00:44:34 +00001685 AnnotTok.setAnnotationValue(reinterpret_cast<void *>(
Denis Zobnin2290dac2016-04-29 11:27:00 +00001686 static_cast<uintptr_t>((Action << 16) | (Value & 0xFFFF))));
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001687 PP.EnterToken(AnnotTok);
1688}
1689
Warren Huntc3b18962014-04-08 22:30:47 +00001690/// \brief Handle all MS pragmas. Simply forwards the tokens after inserting
1691/// an annotation token.
1692void PragmaMSPragma::HandlePragma(Preprocessor &PP,
1693 PragmaIntroducerKind Introducer,
1694 Token &Tok) {
1695 Token EoF, AnnotTok;
1696 EoF.startToken();
1697 EoF.setKind(tok::eof);
1698 AnnotTok.startToken();
1699 AnnotTok.setKind(tok::annot_pragma_ms_pragma);
1700 AnnotTok.setLocation(Tok.getLocation());
David Majnemera8f2f1d2015-03-19 00:10:23 +00001701 AnnotTok.setAnnotationEndLoc(Tok.getLocation());
Warren Huntc3b18962014-04-08 22:30:47 +00001702 SmallVector<Token, 8> TokenVector;
1703 // Suck up all of the tokens before the eod.
David Majnemera8f2f1d2015-03-19 00:10:23 +00001704 for (; Tok.isNot(tok::eod); PP.Lex(Tok)) {
Warren Huntc3b18962014-04-08 22:30:47 +00001705 TokenVector.push_back(Tok);
David Majnemera8f2f1d2015-03-19 00:10:23 +00001706 AnnotTok.setAnnotationEndLoc(Tok.getLocation());
1707 }
Warren Huntc3b18962014-04-08 22:30:47 +00001708 // Add a sentinal EoF token to the end of the list.
1709 TokenVector.push_back(EoF);
1710 // We must allocate this array with new because EnterTokenStream is going to
1711 // delete it later.
David Blaikie2eabcc92016-02-09 18:52:09 +00001712 auto TokenArray = llvm::make_unique<Token[]>(TokenVector.size());
1713 std::copy(TokenVector.begin(), TokenVector.end(), TokenArray.get());
Warren Huntc3b18962014-04-08 22:30:47 +00001714 auto Value = new (PP.getPreprocessorAllocator())
David Blaikie2eabcc92016-02-09 18:52:09 +00001715 std::pair<std::unique_ptr<Token[]>, size_t>(std::move(TokenArray),
1716 TokenVector.size());
Warren Huntc3b18962014-04-08 22:30:47 +00001717 AnnotTok.setAnnotationValue(Value);
1718 PP.EnterToken(AnnotTok);
Reid Klecknerd3923aa2014-04-03 19:04:24 +00001719}
1720
Aaron Ballman5d041be2013-06-04 02:07:14 +00001721/// \brief Handle the Microsoft \#pragma detect_mismatch extension.
1722///
1723/// The syntax is:
1724/// \code
1725/// #pragma detect_mismatch("name", "value")
1726/// \endcode
1727/// Where 'name' and 'value' are quoted strings. The values are embedded in
1728/// the object file and passed along to the linker. If the linker detects a
1729/// mismatch in the object file's values for the given name, a LNK2038 error
1730/// is emitted. See MSDN for more details.
1731void PragmaDetectMismatchHandler::HandlePragma(Preprocessor &PP,
1732 PragmaIntroducerKind Introducer,
1733 Token &Tok) {
Nico Webercbbaeb12016-03-02 19:28:54 +00001734 SourceLocation DetectMismatchLoc = Tok.getLocation();
Aaron Ballman5d041be2013-06-04 02:07:14 +00001735 PP.Lex(Tok);
1736 if (Tok.isNot(tok::l_paren)) {
Nico Webercbbaeb12016-03-02 19:28:54 +00001737 PP.Diag(DetectMismatchLoc, diag::err_expected) << tok::l_paren;
Aaron Ballman5d041be2013-06-04 02:07:14 +00001738 return;
1739 }
1740
1741 // Read the name to embed, which must be a string literal.
1742 std::string NameString;
1743 if (!PP.LexStringLiteral(Tok, NameString,
1744 "pragma detect_mismatch",
1745 /*MacroExpansion=*/true))
1746 return;
1747
1748 // Read the comma followed by a second string literal.
1749 std::string ValueString;
1750 if (Tok.isNot(tok::comma)) {
1751 PP.Diag(Tok.getLocation(), diag::err_pragma_detect_mismatch_malformed);
1752 return;
1753 }
1754
1755 if (!PP.LexStringLiteral(Tok, ValueString, "pragma detect_mismatch",
1756 /*MacroExpansion=*/true))
1757 return;
1758
1759 if (Tok.isNot(tok::r_paren)) {
Alp Tokerec543272013-12-24 09:48:30 +00001760 PP.Diag(Tok.getLocation(), diag::err_expected) << tok::r_paren;
Aaron Ballman5d041be2013-06-04 02:07:14 +00001761 return;
1762 }
1763 PP.Lex(Tok); // Eat the r_paren.
1764
1765 if (Tok.isNot(tok::eod)) {
1766 PP.Diag(Tok.getLocation(), diag::err_pragma_detect_mismatch_malformed);
1767 return;
1768 }
1769
Reid Kleckner71966c92014-02-20 23:37:45 +00001770 // If the pragma is lexically sound, notify any interested PPCallbacks.
1771 if (PP.getPPCallbacks())
Nico Webercbbaeb12016-03-02 19:28:54 +00001772 PP.getPPCallbacks()->PragmaDetectMismatch(DetectMismatchLoc, NameString,
Reid Kleckner71966c92014-02-20 23:37:45 +00001773 ValueString);
1774
Nico Webercbbaeb12016-03-02 19:28:54 +00001775 Actions.ActOnPragmaDetectMismatch(DetectMismatchLoc, NameString, ValueString);
Aaron Ballman5d041be2013-06-04 02:07:14 +00001776}
1777
Reid Kleckner002562a2013-05-06 21:02:12 +00001778/// \brief Handle the microsoft \#pragma comment extension.
1779///
1780/// The syntax is:
1781/// \code
1782/// #pragma comment(linker, "foo")
1783/// \endcode
1784/// 'linker' is one of five identifiers: compiler, exestr, lib, linker, user.
1785/// "foo" is a string, which is fully macro expanded, and permits string
1786/// concatenation, embedded escape characters etc. See MSDN for more details.
1787void PragmaCommentHandler::HandlePragma(Preprocessor &PP,
1788 PragmaIntroducerKind Introducer,
1789 Token &Tok) {
1790 SourceLocation CommentLoc = Tok.getLocation();
1791 PP.Lex(Tok);
1792 if (Tok.isNot(tok::l_paren)) {
1793 PP.Diag(CommentLoc, diag::err_pragma_comment_malformed);
1794 return;
1795 }
1796
1797 // Read the identifier.
1798 PP.Lex(Tok);
1799 if (Tok.isNot(tok::identifier)) {
1800 PP.Diag(CommentLoc, diag::err_pragma_comment_malformed);
1801 return;
1802 }
1803
1804 // Verify that this is one of the 5 whitelisted options.
Reid Klecknere43f0fe2013-05-08 13:44:39 +00001805 IdentifierInfo *II = Tok.getIdentifierInfo();
Nico Weber66220292016-03-02 17:28:48 +00001806 PragmaMSCommentKind Kind =
1807 llvm::StringSwitch<PragmaMSCommentKind>(II->getName())
1808 .Case("linker", PCK_Linker)
1809 .Case("lib", PCK_Lib)
1810 .Case("compiler", PCK_Compiler)
1811 .Case("exestr", PCK_ExeStr)
1812 .Case("user", PCK_User)
1813 .Default(PCK_Unknown);
1814 if (Kind == PCK_Unknown) {
Reid Kleckner002562a2013-05-06 21:02:12 +00001815 PP.Diag(Tok.getLocation(), diag::err_pragma_comment_unknown_kind);
1816 return;
1817 }
1818
Yunzhong Gao99efc032015-03-23 20:41:42 +00001819 // On PS4, issue a warning about any pragma comments other than
1820 // #pragma comment lib.
Nico Weber66220292016-03-02 17:28:48 +00001821 if (PP.getTargetInfo().getTriple().isPS4() && Kind != PCK_Lib) {
Yunzhong Gao99efc032015-03-23 20:41:42 +00001822 PP.Diag(Tok.getLocation(), diag::warn_pragma_comment_ignored)
1823 << II->getName();
1824 return;
1825 }
1826
Reid Kleckner002562a2013-05-06 21:02:12 +00001827 // Read the optional string if present.
1828 PP.Lex(Tok);
1829 std::string ArgumentString;
1830 if (Tok.is(tok::comma) && !PP.LexStringLiteral(Tok, ArgumentString,
1831 "pragma comment",
1832 /*MacroExpansion=*/true))
1833 return;
1834
Reid Klecknere43f0fe2013-05-08 13:44:39 +00001835 // FIXME: warn that 'exestr' is deprecated.
Reid Kleckner002562a2013-05-06 21:02:12 +00001836 // FIXME: If the kind is "compiler" warn if the string is present (it is
1837 // ignored).
Reid Klecknere43f0fe2013-05-08 13:44:39 +00001838 // The MSDN docs say that "lib" and "linker" require a string and have a short
1839 // whitelist of linker options they support, but in practice MSVC doesn't
1840 // issue a diagnostic. Therefore neither does clang.
Reid Kleckner002562a2013-05-06 21:02:12 +00001841
1842 if (Tok.isNot(tok::r_paren)) {
1843 PP.Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
1844 return;
1845 }
1846 PP.Lex(Tok); // eat the r_paren.
1847
1848 if (Tok.isNot(tok::eod)) {
1849 PP.Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
1850 return;
1851 }
1852
Reid Kleckner71966c92014-02-20 23:37:45 +00001853 // If the pragma is lexically sound, notify any interested PPCallbacks.
1854 if (PP.getPPCallbacks())
1855 PP.getPPCallbacks()->PragmaComment(CommentLoc, II, ArgumentString);
1856
Nico Weber66220292016-03-02 17:28:48 +00001857 Actions.ActOnPragmaMSComment(CommentLoc, Kind, ArgumentString);
Reid Kleckner002562a2013-05-06 21:02:12 +00001858}
Dario Domizioli13a0a382014-05-23 12:13:25 +00001859
1860// #pragma clang optimize off
1861// #pragma clang optimize on
1862void PragmaOptimizeHandler::HandlePragma(Preprocessor &PP,
1863 PragmaIntroducerKind Introducer,
1864 Token &FirstToken) {
1865 Token Tok;
1866 PP.Lex(Tok);
1867 if (Tok.is(tok::eod)) {
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001868 PP.Diag(Tok.getLocation(), diag::err_pragma_missing_argument)
Mark Heffernan450c2382014-07-23 17:31:31 +00001869 << "clang optimize" << /*Expected=*/true << "'on' or 'off'";
Dario Domizioli13a0a382014-05-23 12:13:25 +00001870 return;
1871 }
1872 if (Tok.isNot(tok::identifier)) {
1873 PP.Diag(Tok.getLocation(), diag::err_pragma_optimize_invalid_argument)
1874 << PP.getSpelling(Tok);
1875 return;
1876 }
1877 const IdentifierInfo *II = Tok.getIdentifierInfo();
1878 // The only accepted values are 'on' or 'off'.
1879 bool IsOn = false;
1880 if (II->isStr("on")) {
1881 IsOn = true;
1882 } else if (!II->isStr("off")) {
1883 PP.Diag(Tok.getLocation(), diag::err_pragma_optimize_invalid_argument)
1884 << PP.getSpelling(Tok);
1885 return;
1886 }
1887 PP.Lex(Tok);
1888
1889 if (Tok.isNot(tok::eod)) {
1890 PP.Diag(Tok.getLocation(), diag::err_pragma_optimize_extra_argument)
1891 << PP.getSpelling(Tok);
1892 return;
1893 }
Eli Bendersky06a40422014-06-06 20:31:48 +00001894
1895 Actions.ActOnPragmaOptimize(IsOn, FirstToken.getLocation());
1896}
1897
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001898/// \brief Parses loop or unroll pragma hint value and fills in Info.
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +00001899static bool ParseLoopHintValue(Preprocessor &PP, Token &Tok, Token PragmaName,
1900 Token Option, bool ValueInParens,
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001901 PragmaLoopHintInfo &Info) {
Tyler Nowickic724a83e2014-10-12 20:46:07 +00001902 SmallVector<Token, 1> ValueList;
1903 int OpenParens = ValueInParens ? 1 : 0;
1904 // Read constant expression.
1905 while (Tok.isNot(tok::eod)) {
1906 if (Tok.is(tok::l_paren))
1907 OpenParens++;
1908 else if (Tok.is(tok::r_paren)) {
1909 OpenParens--;
1910 if (OpenParens == 0 && ValueInParens)
1911 break;
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001912 }
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001913
Tyler Nowickic724a83e2014-10-12 20:46:07 +00001914 ValueList.push_back(Tok);
1915 PP.Lex(Tok);
1916 }
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001917
1918 if (ValueInParens) {
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +00001919 // Read ')'
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001920 if (Tok.isNot(tok::r_paren)) {
1921 PP.Diag(Tok.getLocation(), diag::err_expected) << tok::r_paren;
1922 return true;
1923 }
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +00001924 PP.Lex(Tok);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001925 }
1926
Tyler Nowickic724a83e2014-10-12 20:46:07 +00001927 Token EOFTok;
1928 EOFTok.startToken();
1929 EOFTok.setKind(tok::eof);
1930 EOFTok.setLocation(Tok.getLocation());
1931 ValueList.push_back(EOFTok); // Terminates expression for parsing.
1932
Benjamin Kramerfa7f8552015-08-05 09:39:57 +00001933 Info.Toks = llvm::makeArrayRef(ValueList).copy(PP.getPreprocessorAllocator());
Tyler Nowickic724a83e2014-10-12 20:46:07 +00001934
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001935 Info.PragmaName = PragmaName;
1936 Info.Option = Option;
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001937 return false;
1938}
1939
Eli Bendersky06a40422014-06-06 20:31:48 +00001940/// \brief Handle the \#pragma clang loop directive.
1941/// #pragma clang 'loop' loop-hints
1942///
1943/// loop-hints:
1944/// loop-hint loop-hints[opt]
1945///
1946/// loop-hint:
1947/// 'vectorize' '(' loop-hint-keyword ')'
1948/// 'interleave' '(' loop-hint-keyword ')'
Mark Heffernan450c2382014-07-23 17:31:31 +00001949/// 'unroll' '(' unroll-hint-keyword ')'
Eli Bendersky06a40422014-06-06 20:31:48 +00001950/// 'vectorize_width' '(' loop-hint-value ')'
1951/// 'interleave_count' '(' loop-hint-value ')'
Eli Bendersky86483b32014-06-11 17:56:26 +00001952/// 'unroll_count' '(' loop-hint-value ')'
Eli Bendersky06a40422014-06-06 20:31:48 +00001953///
1954/// loop-hint-keyword:
1955/// 'enable'
1956/// 'disable'
Tyler Nowicki9d268e12015-06-11 23:23:17 +00001957/// 'assume_safety'
Eli Bendersky06a40422014-06-06 20:31:48 +00001958///
Mark Heffernan450c2382014-07-23 17:31:31 +00001959/// unroll-hint-keyword:
Mark Heffernan397a98d2015-08-10 17:29:39 +00001960/// 'enable'
Mark Heffernan450c2382014-07-23 17:31:31 +00001961/// 'disable'
Mark Heffernan397a98d2015-08-10 17:29:39 +00001962/// 'full'
Mark Heffernan450c2382014-07-23 17:31:31 +00001963///
Eli Bendersky06a40422014-06-06 20:31:48 +00001964/// loop-hint-value:
1965/// constant-expression
1966///
1967/// Specifying vectorize(enable) or vectorize_width(_value_) instructs llvm to
1968/// try vectorizing the instructions of the loop it precedes. Specifying
1969/// interleave(enable) or interleave_count(_value_) instructs llvm to try
1970/// interleaving multiple iterations of the loop it precedes. The width of the
1971/// vector instructions is specified by vectorize_width() and the number of
1972/// interleaved loop iterations is specified by interleave_count(). Specifying a
1973/// value of 1 effectively disables vectorization/interleaving, even if it is
1974/// possible and profitable, and 0 is invalid. The loop vectorizer currently
1975/// only works on inner loops.
1976///
Eli Bendersky86483b32014-06-11 17:56:26 +00001977/// The unroll and unroll_count directives control the concatenation
Mark Heffernan397a98d2015-08-10 17:29:39 +00001978/// unroller. Specifying unroll(enable) instructs llvm to unroll the loop
1979/// completely if the trip count is known at compile time and unroll partially
1980/// if the trip count is not known. Specifying unroll(full) is similar to
1981/// unroll(enable) but will unroll the loop only if the trip count is known at
1982/// compile time. Specifying unroll(disable) disables unrolling for the
1983/// loop. Specifying unroll_count(_value_) instructs llvm to try to unroll the
1984/// loop the number of times indicated by the value.
Eli Bendersky06a40422014-06-06 20:31:48 +00001985void PragmaLoopHintHandler::HandlePragma(Preprocessor &PP,
1986 PragmaIntroducerKind Introducer,
1987 Token &Tok) {
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00001988 // Incoming token is "loop" from "#pragma clang loop".
1989 Token PragmaName = Tok;
Eli Bendersky06a40422014-06-06 20:31:48 +00001990 SmallVector<Token, 1> TokenList;
1991
1992 // Lex the optimization option and verify it is an identifier.
1993 PP.Lex(Tok);
1994 if (Tok.isNot(tok::identifier)) {
1995 PP.Diag(Tok.getLocation(), diag::err_pragma_loop_invalid_option)
1996 << /*MissingOption=*/true << "";
1997 return;
1998 }
1999
2000 while (Tok.is(tok::identifier)) {
2001 Token Option = Tok;
2002 IdentifierInfo *OptionInfo = Tok.getIdentifierInfo();
2003
Eli Bendersky86483b32014-06-11 17:56:26 +00002004 bool OptionValid = llvm::StringSwitch<bool>(OptionInfo->getName())
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002005 .Case("vectorize", true)
2006 .Case("interleave", true)
2007 .Case("unroll", true)
2008 .Case("vectorize_width", true)
2009 .Case("interleave_count", true)
2010 .Case("unroll_count", true)
2011 .Default(false);
Eli Bendersky86483b32014-06-11 17:56:26 +00002012 if (!OptionValid) {
Eli Bendersky06a40422014-06-06 20:31:48 +00002013 PP.Diag(Tok.getLocation(), diag::err_pragma_loop_invalid_option)
2014 << /*MissingOption=*/false << OptionInfo;
2015 return;
2016 }
NAKAMURA Takumidb9552f2014-07-31 01:52:33 +00002017 PP.Lex(Tok);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002018
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +00002019 // Read '('
2020 if (Tok.isNot(tok::l_paren)) {
2021 PP.Diag(Tok.getLocation(), diag::err_expected) << tok::l_paren;
NAKAMURA Takumidb9552f2014-07-31 01:52:33 +00002022 return;
2023 }
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +00002024 PP.Lex(Tok);
2025
2026 auto *Info = new (PP.getPreprocessorAllocator()) PragmaLoopHintInfo;
2027 if (ParseLoopHintValue(PP, Tok, PragmaName, Option, /*ValueInParens=*/true,
2028 *Info))
2029 return;
NAKAMURA Takumidb9552f2014-07-31 01:52:33 +00002030
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002031 // Generate the loop hint token.
Eli Bendersky06a40422014-06-06 20:31:48 +00002032 Token LoopHintTok;
2033 LoopHintTok.startToken();
2034 LoopHintTok.setKind(tok::annot_pragma_loop_hint);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002035 LoopHintTok.setLocation(PragmaName.getLocation());
David Majnemera8f2f1d2015-03-19 00:10:23 +00002036 LoopHintTok.setAnnotationEndLoc(PragmaName.getLocation());
Eli Bendersky06a40422014-06-06 20:31:48 +00002037 LoopHintTok.setAnnotationValue(static_cast<void *>(Info));
2038 TokenList.push_back(LoopHintTok);
2039 }
2040
2041 if (Tok.isNot(tok::eod)) {
2042 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
2043 << "clang loop";
2044 return;
2045 }
2046
David Blaikie2eabcc92016-02-09 18:52:09 +00002047 auto TokenArray = llvm::make_unique<Token[]>(TokenList.size());
2048 std::copy(TokenList.begin(), TokenList.end(), TokenArray.get());
Eli Bendersky06a40422014-06-06 20:31:48 +00002049
David Blaikie2eabcc92016-02-09 18:52:09 +00002050 PP.EnterTokenStream(std::move(TokenArray), TokenList.size(),
2051 /*DisableMacroExpansion=*/false);
Eli Bendersky06a40422014-06-06 20:31:48 +00002052}
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002053
2054/// \brief Handle the loop unroll optimization pragmas.
2055/// #pragma unroll
2056/// #pragma unroll unroll-hint-value
2057/// #pragma unroll '(' unroll-hint-value ')'
Mark Heffernanc888e412014-07-24 18:09:38 +00002058/// #pragma nounroll
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002059///
2060/// unroll-hint-value:
2061/// constant-expression
2062///
Mark Heffernanc888e412014-07-24 18:09:38 +00002063/// Loop unrolling hints can be specified with '#pragma unroll' or
2064/// '#pragma nounroll'. '#pragma unroll' can take a numeric argument optionally
2065/// contained in parentheses. With no argument the directive instructs llvm to
2066/// try to unroll the loop completely. A positive integer argument can be
2067/// specified to indicate the number of times the loop should be unrolled. To
2068/// maximize compatibility with other compilers the unroll count argument can be
2069/// specified with or without parentheses. Specifying, '#pragma nounroll'
2070/// disables unrolling of the loop.
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002071void PragmaUnrollHintHandler::HandlePragma(Preprocessor &PP,
2072 PragmaIntroducerKind Introducer,
2073 Token &Tok) {
Mark Heffernanc888e412014-07-24 18:09:38 +00002074 // Incoming token is "unroll" for "#pragma unroll", or "nounroll" for
2075 // "#pragma nounroll".
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002076 Token PragmaName = Tok;
2077 PP.Lex(Tok);
2078 auto *Info = new (PP.getPreprocessorAllocator()) PragmaLoopHintInfo;
2079 if (Tok.is(tok::eod)) {
Mark Heffernanc888e412014-07-24 18:09:38 +00002080 // nounroll or unroll pragma without an argument.
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002081 Info->PragmaName = PragmaName;
Aaron Ballmand6807da2014-08-01 12:41:37 +00002082 Info->Option.startToken();
Mark Heffernanc888e412014-07-24 18:09:38 +00002083 } else if (PragmaName.getIdentifierInfo()->getName() == "nounroll") {
2084 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
2085 << "nounroll";
2086 return;
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002087 } else {
2088 // Unroll pragma with an argument: "#pragma unroll N" or
2089 // "#pragma unroll(N)".
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +00002090 // Read '(' if it exists.
2091 bool ValueInParens = Tok.is(tok::l_paren);
2092 if (ValueInParens)
2093 PP.Lex(Tok);
2094
Aaron Ballmand0b090d2014-08-01 12:20:20 +00002095 Token Option;
2096 Option.startToken();
2097 if (ParseLoopHintValue(PP, Tok, PragmaName, Option, ValueInParens, *Info))
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002098 return;
2099
2100 // In CUDA, the argument to '#pragma unroll' should not be contained in
2101 // parentheses.
2102 if (PP.getLangOpts().CUDA && ValueInParens)
Tyler Nowickic724a83e2014-10-12 20:46:07 +00002103 PP.Diag(Info->Toks[0].getLocation(),
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002104 diag::warn_pragma_unroll_cuda_value_in_parens);
2105
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002106 if (Tok.isNot(tok::eod)) {
2107 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
2108 << "unroll";
2109 return;
2110 }
2111 }
2112
2113 // Generate the hint token.
David Blaikie2eabcc92016-02-09 18:52:09 +00002114 auto TokenArray = llvm::make_unique<Token[]>(1);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002115 TokenArray[0].startToken();
2116 TokenArray[0].setKind(tok::annot_pragma_loop_hint);
2117 TokenArray[0].setLocation(PragmaName.getLocation());
David Majnemera8f2f1d2015-03-19 00:10:23 +00002118 TokenArray[0].setAnnotationEndLoc(PragmaName.getLocation());
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002119 TokenArray[0].setAnnotationValue(static_cast<void *>(Info));
David Blaikie2eabcc92016-02-09 18:52:09 +00002120 PP.EnterTokenStream(std::move(TokenArray), 1,
2121 /*DisableMacroExpansion=*/false);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +00002122}