blob: 7c182a1c64899b087541081e9233daff26e4043f [file] [log] [blame]
Bill Wendlingad017fa2012-12-20 19:22:21 +00001//===--- SemaAttr.cpp - Semantic Analysis for Attributes ------------------===//
Chris Lattner5a0c3512009-02-17 00:57:29 +00002//
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//
Chris Lattner574aa402009-02-17 01:09:29 +000010// This file implements semantic analysis for non-trivial attributes and
11// pragmas.
Chris Lattner5a0c3512009-02-17 00:57:29 +000012//
13//===----------------------------------------------------------------------===//
14
John McCall2d887082010-08-25 22:03:47 +000015#include "clang/Sema/SemaInternal.h"
Reid Kleckner3190ca92013-05-08 13:44:39 +000016#include "clang/AST/ASTConsumer.h"
Sean Huntcf807c42010-08-18 23:23:40 +000017#include "clang/AST/Attr.h"
Chris Lattner5a0c3512009-02-17 00:57:29 +000018#include "clang/AST/Expr.h"
Daniel Dunbar613fd672010-05-27 00:35:16 +000019#include "clang/Basic/TargetInfo.h"
20#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000021#include "clang/Sema/Lookup.h"
Chris Lattner5a0c3512009-02-17 00:57:29 +000022using namespace clang;
23
Chris Lattner574aa402009-02-17 01:09:29 +000024//===----------------------------------------------------------------------===//
Daniel Dunbarea75a822010-05-27 00:04:40 +000025// Pragma 'pack' and 'options align'
Chris Lattner574aa402009-02-17 01:09:29 +000026//===----------------------------------------------------------------------===//
27
28namespace {
Daniel Dunbarae2232b2010-05-27 02:25:27 +000029 struct PackStackEntry {
Daniel Dunbarc6082fe2010-05-27 05:45:51 +000030 // We just use a sentinel to represent when the stack is set to mac68k
31 // alignment.
32 static const unsigned kMac68kAlignmentSentinel = ~0U;
33
Daniel Dunbarae2232b2010-05-27 02:25:27 +000034 unsigned Alignment;
35 IdentifierInfo *Name;
36 };
37
Chris Lattner574aa402009-02-17 01:09:29 +000038 /// PragmaPackStack - Simple class to wrap the stack used by #pragma
39 /// pack.
40 class PragmaPackStack {
Daniel Dunbarae2232b2010-05-27 02:25:27 +000041 typedef std::vector<PackStackEntry> stack_ty;
Chris Lattner574aa402009-02-17 01:09:29 +000042
43 /// Alignment - The current user specified alignment.
44 unsigned Alignment;
45
46 /// Stack - Entries in the #pragma pack stack, consisting of saved
47 /// alignments and optional names.
48 stack_ty Stack;
Mike Stump1eb44332009-09-09 15:08:12 +000049
50 public:
Chris Lattner574aa402009-02-17 01:09:29 +000051 PragmaPackStack() : Alignment(0) {}
52
53 void setAlignment(unsigned A) { Alignment = A; }
54 unsigned getAlignment() { return Alignment; }
55
56 /// push - Push the current alignment onto the stack, optionally
57 /// using the given \arg Name for the record, if non-zero.
58 void push(IdentifierInfo *Name) {
Daniel Dunbarae2232b2010-05-27 02:25:27 +000059 PackStackEntry PSE = { Alignment, Name };
60 Stack.push_back(PSE);
Chris Lattner574aa402009-02-17 01:09:29 +000061 }
62
63 /// pop - Pop a record from the stack and restore the current
64 /// alignment to the previous value. If \arg Name is non-zero then
65 /// the first such named record is popped, otherwise the top record
66 /// is popped. Returns true if the pop succeeded.
Daniel Dunbarddc6ff62010-07-16 04:54:16 +000067 bool pop(IdentifierInfo *Name, bool IsReset);
Chris Lattner574aa402009-02-17 01:09:29 +000068 };
69} // end anonymous namespace.
70
Daniel Dunbarddc6ff62010-07-16 04:54:16 +000071bool PragmaPackStack::pop(IdentifierInfo *Name, bool IsReset) {
Chris Lattner574aa402009-02-17 01:09:29 +000072 // If name is empty just pop top.
73 if (!Name) {
Daniel Dunbarddc6ff62010-07-16 04:54:16 +000074 // An empty stack is a special case...
75 if (Stack.empty()) {
76 // If this isn't a reset, it is always an error.
77 if (!IsReset)
78 return false;
79
80 // Otherwise, it is an error only if some alignment has been set.
81 if (!Alignment)
82 return false;
83
84 // Otherwise, reset to the default alignment.
85 Alignment = 0;
86 } else {
87 Alignment = Stack.back().Alignment;
88 Stack.pop_back();
89 }
90
Chris Lattner574aa402009-02-17 01:09:29 +000091 return true;
Mike Stump1eb44332009-09-09 15:08:12 +000092 }
93
Chris Lattner574aa402009-02-17 01:09:29 +000094 // Otherwise, find the named record.
95 for (unsigned i = Stack.size(); i != 0; ) {
96 --i;
Daniel Dunbarae2232b2010-05-27 02:25:27 +000097 if (Stack[i].Name == Name) {
Chris Lattner574aa402009-02-17 01:09:29 +000098 // Found it, pop up to and including this record.
Daniel Dunbarae2232b2010-05-27 02:25:27 +000099 Alignment = Stack[i].Alignment;
Chris Lattner574aa402009-02-17 01:09:29 +0000100 Stack.erase(Stack.begin() + i, Stack.end());
101 return true;
102 }
103 }
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattner574aa402009-02-17 01:09:29 +0000105 return false;
106}
107
108
109/// FreePackedContext - Deallocate and null out PackContext.
110void Sema::FreePackedContext() {
111 delete static_cast<PragmaPackStack*>(PackContext);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700112 PackContext = nullptr;
Chris Lattner574aa402009-02-17 01:09:29 +0000113}
114
Daniel Dunbar9f21f892010-05-27 01:53:40 +0000115void Sema::AddAlignmentAttributesForRecord(RecordDecl *RD) {
116 // If there is no pack context, we don't need any attributes.
117 if (!PackContext)
118 return;
119
120 PragmaPackStack *Stack = static_cast<PragmaPackStack*>(PackContext);
121
122 // Otherwise, check to see if we need a max field alignment attribute.
Daniel Dunbarc6082fe2010-05-27 05:45:51 +0000123 if (unsigned Alignment = Stack->getAlignment()) {
124 if (Alignment == PackStackEntry::kMac68kAlignmentSentinel)
Stephen Hines651f13c2014-04-23 16:59:28 -0700125 RD->addAttr(AlignMac68kAttr::CreateImplicit(Context));
Daniel Dunbarc6082fe2010-05-27 05:45:51 +0000126 else
Stephen Hines651f13c2014-04-23 16:59:28 -0700127 RD->addAttr(MaxFieldAlignmentAttr::CreateImplicit(Context,
Sean Huntcf807c42010-08-18 23:23:40 +0000128 Alignment * 8));
Daniel Dunbarc6082fe2010-05-27 05:45:51 +0000129 }
Chris Lattner574aa402009-02-17 01:09:29 +0000130}
131
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000132void Sema::AddMsStructLayoutForRecord(RecordDecl *RD) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700133 if (MSStructPragmaOn)
134 RD->addAttr(MsStructAttr::CreateImplicit(Context));
135
136 // FIXME: We should merge AddAlignmentAttributesForRecord with
137 // AddMsStructLayoutForRecord into AddPragmaAttributesForRecord, which takes
138 // all active pragmas and applies them as attributes to class definitions.
139 if (VtorDispModeStack.back() != getLangOpts().VtorDispMode)
140 RD->addAttr(
141 MSVtorDispAttr::CreateImplicit(Context, VtorDispModeStack.back()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000142}
143
Daniel Dunbarea75a822010-05-27 00:04:40 +0000144void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,
Eli Friedman9595c7e2012-10-04 02:36:51 +0000145 SourceLocation PragmaLoc) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700146 if (!PackContext)
Daniel Dunbarea75a822010-05-27 00:04:40 +0000147 PackContext = new PragmaPackStack();
148
149 PragmaPackStack *Context = static_cast<PragmaPackStack*>(PackContext);
150
Daniel Dunbarea75a822010-05-27 00:04:40 +0000151 switch (Kind) {
Daniel Dunbar638e7cf2010-05-27 18:42:09 +0000152 // For all targets we support native and natural are the same.
153 //
154 // FIXME: This is not true on Darwin/PPC.
155 case POAK_Native:
Daniel Dunbar450f7932010-05-28 19:43:33 +0000156 case POAK_Power:
Daniel Dunbard6b305d2010-05-28 20:08:00 +0000157 case POAK_Natural:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700158 Context->push(nullptr);
Daniel Dunbar450f7932010-05-28 19:43:33 +0000159 Context->setAlignment(0);
160 break;
161
Daniel Dunbar6f739142010-05-27 18:42:17 +0000162 // Note that '#pragma options align=packed' is not equivalent to attribute
163 // packed, it has a different precedence relative to attribute aligned.
164 case POAK_Packed:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700165 Context->push(nullptr);
Daniel Dunbar6f739142010-05-27 18:42:17 +0000166 Context->setAlignment(1);
167 break;
168
Daniel Dunbar613fd672010-05-27 00:35:16 +0000169 case POAK_Mac68k:
170 // Check if the target supports this.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700171 if (!this->Context.getTargetInfo().hasAlignMac68kSupport()) {
Daniel Dunbar613fd672010-05-27 00:35:16 +0000172 Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported);
173 return;
Daniel Dunbar613fd672010-05-27 00:35:16 +0000174 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700175 Context->push(nullptr);
Daniel Dunbarc6082fe2010-05-27 05:45:51 +0000176 Context->setAlignment(PackStackEntry::kMac68kAlignmentSentinel);
Daniel Dunbar613fd672010-05-27 00:35:16 +0000177 break;
178
Eli Friedman9595c7e2012-10-04 02:36:51 +0000179 case POAK_Reset:
180 // Reset just pops the top of the stack, or resets the current alignment to
181 // default.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700182 if (!Context->pop(nullptr, /*IsReset=*/true)) {
Eli Friedman9595c7e2012-10-04 02:36:51 +0000183 Diag(PragmaLoc, diag::warn_pragma_options_align_reset_failed)
184 << "stack empty";
185 }
Daniel Dunbarea75a822010-05-27 00:04:40 +0000186 break;
187 }
188}
189
Mike Stump1eb44332009-09-09 15:08:12 +0000190void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
Richard Trieuf81e5a92011-09-09 02:00:50 +0000191 Expr *alignment, SourceLocation PragmaLoc,
Chris Lattner5a0c3512009-02-17 00:57:29 +0000192 SourceLocation LParenLoc, SourceLocation RParenLoc) {
193 Expr *Alignment = static_cast<Expr *>(alignment);
194
195 // If specified then alignment must be a "small" power of two.
196 unsigned AlignmentVal = 0;
197 if (Alignment) {
198 llvm::APSInt Val;
Mike Stump1eb44332009-09-09 15:08:12 +0000199
Daniel Dunbar79cd1162009-03-06 20:45:54 +0000200 // pack(0) is like pack(), which just works out since that is what
201 // we use 0 for in PackAttr.
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000202 if (Alignment->isTypeDependent() ||
203 Alignment->isValueDependent() ||
204 !Alignment->isIntegerConstantExpr(Val, Context) ||
Daniel Dunbar79cd1162009-03-06 20:45:54 +0000205 !(Val == 0 || Val.isPowerOf2()) ||
Chris Lattner5a0c3512009-02-17 00:57:29 +0000206 Val.getZExtValue() > 16) {
207 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
Chris Lattner5a0c3512009-02-17 00:57:29 +0000208 return; // Ignore
209 }
210
211 AlignmentVal = (unsigned) Val.getZExtValue();
212 }
Mike Stump1eb44332009-09-09 15:08:12 +0000213
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700214 if (!PackContext)
Chris Lattner574aa402009-02-17 01:09:29 +0000215 PackContext = new PragmaPackStack();
Mike Stump1eb44332009-09-09 15:08:12 +0000216
Chris Lattner574aa402009-02-17 01:09:29 +0000217 PragmaPackStack *Context = static_cast<PragmaPackStack*>(PackContext);
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Chris Lattner5a0c3512009-02-17 00:57:29 +0000219 switch (Kind) {
John McCallf312b1e2010-08-26 23:41:50 +0000220 case Sema::PPK_Default: // pack([n])
Chris Lattner574aa402009-02-17 01:09:29 +0000221 Context->setAlignment(AlignmentVal);
Chris Lattner5a0c3512009-02-17 00:57:29 +0000222 break;
223
John McCallf312b1e2010-08-26 23:41:50 +0000224 case Sema::PPK_Show: // pack(show)
Chris Lattner5a0c3512009-02-17 00:57:29 +0000225 // Show the current alignment, making sure to show the right value
226 // for the default.
Chris Lattner574aa402009-02-17 01:09:29 +0000227 AlignmentVal = Context->getAlignment();
Chris Lattner5a0c3512009-02-17 00:57:29 +0000228 // FIXME: This should come from the target.
229 if (AlignmentVal == 0)
230 AlignmentVal = 8;
Daniel Dunbarc6082fe2010-05-27 05:45:51 +0000231 if (AlignmentVal == PackStackEntry::kMac68kAlignmentSentinel)
232 Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k";
233 else
234 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Chris Lattner5a0c3512009-02-17 00:57:29 +0000235 break;
236
John McCallf312b1e2010-08-26 23:41:50 +0000237 case Sema::PPK_Push: // pack(push [, id] [, [n])
Chris Lattner574aa402009-02-17 01:09:29 +0000238 Context->push(Name);
Chris Lattner5a0c3512009-02-17 00:57:29 +0000239 // Set the new alignment if specified.
240 if (Alignment)
Mike Stump1eb44332009-09-09 15:08:12 +0000241 Context->setAlignment(AlignmentVal);
Chris Lattner5a0c3512009-02-17 00:57:29 +0000242 break;
243
John McCallf312b1e2010-08-26 23:41:50 +0000244 case Sema::PPK_Pop: // pack(pop [, id] [, n])
Chris Lattner5a0c3512009-02-17 00:57:29 +0000245 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
246 // "#pragma pack(pop, identifier, n) is undefined"
247 if (Alignment && Name)
Mike Stump1eb44332009-09-09 15:08:12 +0000248 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
249
Chris Lattner5a0c3512009-02-17 00:57:29 +0000250 // Do the pop.
Daniel Dunbarddc6ff62010-07-16 04:54:16 +0000251 if (!Context->pop(Name, /*IsReset=*/false)) {
Chris Lattner5a0c3512009-02-17 00:57:29 +0000252 // If a name was specified then failure indicates the name
253 // wasn't found. Otherwise failure indicates the stack was
254 // empty.
Stephen Hines651f13c2014-04-23 16:59:28 -0700255 Diag(PragmaLoc, diag::warn_pragma_pop_failed)
256 << "pack" << (Name ? "no record matching name" : "stack empty");
Chris Lattner5a0c3512009-02-17 00:57:29 +0000257
258 // FIXME: Warn about popping named records as MSVC does.
259 } else {
260 // Pop succeeded, set the new alignment if specified.
261 if (Alignment)
Chris Lattner574aa402009-02-17 01:09:29 +0000262 Context->setAlignment(AlignmentVal);
Chris Lattner5a0c3512009-02-17 00:57:29 +0000263 }
264 break;
Chris Lattner5a0c3512009-02-17 00:57:29 +0000265 }
266}
267
Fariborz Jahanian62c92582011-04-25 18:49:15 +0000268void Sema::ActOnPragmaMSStruct(PragmaMSStructKind Kind) {
269 MSStructPragmaOn = (Kind == PMSST_ON);
270}
271
Robert Wilhelm30d23752013-08-10 13:29:01 +0000272void Sema::ActOnPragmaMSComment(PragmaMSCommentKind Kind, StringRef Arg) {
Reid Kleckner3190ca92013-05-08 13:44:39 +0000273 // FIXME: Serialize this.
274 switch (Kind) {
275 case PCK_Unknown:
276 llvm_unreachable("unexpected pragma comment kind");
277 case PCK_Linker:
278 Consumer.HandleLinkerOptionPragma(Arg);
279 return;
Aaron Ballman89735b92013-05-24 15:06:56 +0000280 case PCK_Lib:
Reid Kleckner3190ca92013-05-08 13:44:39 +0000281 Consumer.HandleDependentLibrary(Arg);
282 return;
Reid Kleckner3190ca92013-05-08 13:44:39 +0000283 case PCK_Compiler:
284 case PCK_ExeStr:
285 case PCK_User:
286 return; // We ignore all of these.
287 }
288 llvm_unreachable("invalid pragma comment kind");
289}
290
Robert Wilhelm30d23752013-08-10 13:29:01 +0000291void Sema::ActOnPragmaDetectMismatch(StringRef Name, StringRef Value) {
Aaron Ballmana7ff62f2013-06-04 02:07:14 +0000292 // FIXME: Serialize this.
293 Consumer.HandleDetectMismatch(Name, Value);
294}
295
Stephen Hines651f13c2014-04-23 16:59:28 -0700296void Sema::ActOnPragmaMSPointersToMembers(
297 LangOptions::PragmaMSPointersToMembersKind RepresentationMethod,
298 SourceLocation PragmaLoc) {
299 MSPointerToMemberRepresentationMethod = RepresentationMethod;
300 ImplicitMSInheritanceAttrLoc = PragmaLoc;
301}
302
303void Sema::ActOnPragmaMSVtorDisp(PragmaVtorDispKind Kind,
304 SourceLocation PragmaLoc,
305 MSVtorDispAttr::Mode Mode) {
306 switch (Kind) {
307 case PVDK_Set:
308 VtorDispModeStack.back() = Mode;
309 break;
310 case PVDK_Push:
311 VtorDispModeStack.push_back(Mode);
312 break;
313 case PVDK_Reset:
314 VtorDispModeStack.clear();
315 VtorDispModeStack.push_back(MSVtorDispAttr::Mode(LangOpts.VtorDispMode));
316 break;
317 case PVDK_Pop:
318 VtorDispModeStack.pop_back();
319 if (VtorDispModeStack.empty()) {
320 Diag(PragmaLoc, diag::warn_pragma_pop_failed) << "vtordisp"
321 << "stack empty";
322 VtorDispModeStack.push_back(MSVtorDispAttr::Mode(LangOpts.VtorDispMode));
323 }
324 break;
325 }
326}
327
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700328template<typename ValueType>
329void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation,
330 PragmaMsStackAction Action,
331 llvm::StringRef StackSlotLabel,
332 ValueType Value) {
333 if (Action == PSK_Reset) {
334 CurrentValue = nullptr;
335 return;
336 }
337 if (Action & PSK_Push)
338 Stack.push_back(Slot(StackSlotLabel, CurrentValue, CurrentPragmaLocation));
339 else if (Action & PSK_Pop) {
340 if (!StackSlotLabel.empty()) {
341 // If we've got a label, try to find it and jump there.
342 auto I = std::find_if(Stack.rbegin(), Stack.rend(),
343 [&](const Slot &x) { return x.StackSlotLabel == StackSlotLabel; });
344 // If we found the label so pop from there.
345 if (I != Stack.rend()) {
346 CurrentValue = I->Value;
347 CurrentPragmaLocation = I->PragmaLocation;
348 Stack.erase(std::prev(I.base()), Stack.end());
349 }
350 } else if (!Stack.empty()) {
351 // We don't have a label, just pop the last entry.
352 CurrentValue = Stack.back().Value;
353 CurrentPragmaLocation = Stack.back().PragmaLocation;
354 Stack.pop_back();
355 }
356 }
357 if (Action & PSK_Set) {
358 CurrentValue = Value;
359 CurrentPragmaLocation = PragmaLocation;
360 }
361}
362
363bool Sema::UnifySection(const StringRef &SectionName,
364 int SectionFlags,
365 DeclaratorDecl *Decl) {
366 auto Section = SectionInfos.find(SectionName);
367 if (Section == SectionInfos.end()) {
368 SectionInfos[SectionName] =
369 SectionInfo(Decl, SourceLocation(), SectionFlags);
370 return false;
371 }
372 // A pre-declared section takes precedence w/o diagnostic.
373 if (Section->second.SectionFlags == SectionFlags ||
374 !(Section->second.SectionFlags & PSF_Implicit))
375 return false;
376 auto OtherDecl = Section->second.Decl;
377 Diag(Decl->getLocation(), diag::err_section_conflict)
378 << Decl << OtherDecl;
379 Diag(OtherDecl->getLocation(), diag::note_declared_at)
380 << OtherDecl->getName();
381 if (auto A = Decl->getAttr<SectionAttr>())
382 if (A->isImplicit())
383 Diag(A->getLocation(), diag::note_pragma_entered_here);
384 if (auto A = OtherDecl->getAttr<SectionAttr>())
385 if (A->isImplicit())
386 Diag(A->getLocation(), diag::note_pragma_entered_here);
387 return false;
388}
389
390bool Sema::UnifySection(const StringRef &SectionName,
391 int SectionFlags,
392 SourceLocation PragmaSectionLocation) {
393 auto Section = SectionInfos.find(SectionName);
394 if (Section != SectionInfos.end()) {
395 if (Section->second.SectionFlags == SectionFlags)
396 return false;
397 if (!(Section->second.SectionFlags & PSF_Implicit)) {
398 Diag(PragmaSectionLocation, diag::err_section_conflict)
399 << "this" << "a prior #pragma section";
400 Diag(Section->second.PragmaSectionLocation,
401 diag::note_pragma_entered_here);
402 return true;
403 }
404 }
405 SectionInfos[SectionName] =
406 SectionInfo(nullptr, PragmaSectionLocation, SectionFlags);
407 return false;
408}
409
410/// \brief Called on well formed \#pragma bss_seg().
411void Sema::ActOnPragmaMSSeg(SourceLocation PragmaLocation,
412 PragmaMsStackAction Action,
413 llvm::StringRef StackSlotLabel,
414 StringLiteral *SegmentName,
415 llvm::StringRef PragmaName) {
416 PragmaStack<StringLiteral *> *Stack =
417 llvm::StringSwitch<PragmaStack<StringLiteral *> *>(PragmaName)
418 .Case("data_seg", &DataSegStack)
419 .Case("bss_seg", &BSSSegStack)
420 .Case("const_seg", &ConstSegStack)
421 .Case("code_seg", &CodeSegStack);
422 if (Action & PSK_Pop && Stack->Stack.empty())
423 Diag(PragmaLocation, diag::warn_pragma_pop_failed) << PragmaName
424 << "stack empty";
425 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName);
426}
427
428/// \brief Called on well formed \#pragma bss_seg().
429void Sema::ActOnPragmaMSSection(SourceLocation PragmaLocation,
430 int SectionFlags, StringLiteral *SegmentName) {
431 UnifySection(SegmentName->getString(), SectionFlags, PragmaLocation);
432}
433
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000434void Sema::ActOnPragmaUnused(const Token &IdTok, Scope *curScope,
435 SourceLocation PragmaLoc) {
Ted Kremenek4726d032009-03-23 22:28:25 +0000436
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000437 IdentifierInfo *Name = IdTok.getIdentifierInfo();
438 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700439 LookupParsedName(Lookup, curScope, nullptr, true);
Ted Kremenek4726d032009-03-23 22:28:25 +0000440
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000441 if (Lookup.empty()) {
442 Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var)
443 << Name << SourceRange(IdTok.getLocation());
444 return;
Ted Kremenek4726d032009-03-23 22:28:25 +0000445 }
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000446
447 VarDecl *VD = Lookup.getAsSingle<VarDecl>();
Argyrios Kyrtzidis2a5c45b2011-01-27 18:16:48 +0000448 if (!VD) {
449 Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg)
Argyrios Kyrtzidisb918d0f2011-01-17 18:58:44 +0000450 << Name << SourceRange(IdTok.getLocation());
451 return;
452 }
453
454 // Warn if this was used before being marked unused.
455 if (VD->isUsed())
456 Diag(PragmaLoc, diag::warn_used_but_marked_unused) << Name;
457
Stephen Hines651f13c2014-04-23 16:59:28 -0700458 VD->addAttr(UnusedAttr::CreateImplicit(Context, IdTok.getLocation()));
Ted Kremenek4726d032009-03-23 22:28:25 +0000459}
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000460
John McCall8dfac0b2011-09-30 05:12:12 +0000461void Sema::AddCFAuditedAttribute(Decl *D) {
462 SourceLocation Loc = PP.getPragmaARCCFCodeAuditedLoc();
463 if (!Loc.isValid()) return;
464
465 // Don't add a redundant or conflicting attribute.
466 if (D->hasAttr<CFAuditedTransferAttr>() ||
467 D->hasAttr<CFUnknownTransferAttr>())
468 return;
469
Stephen Hines651f13c2014-04-23 16:59:28 -0700470 D->addAttr(CFAuditedTransferAttr::CreateImplicit(Context, Loc));
John McCall8dfac0b2011-09-30 05:12:12 +0000471}
472
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700473void Sema::ActOnPragmaOptimize(bool On, SourceLocation PragmaLoc) {
474 if(On)
475 OptimizeOffPragmaLocation = SourceLocation();
476 else
477 OptimizeOffPragmaLocation = PragmaLoc;
478}
479
480void Sema::AddRangeBasedOptnone(FunctionDecl *FD) {
481 // In the future, check other pragmas if they're implemented (e.g. pragma
482 // optimize 0 will probably map to this functionality too).
483 if(OptimizeOffPragmaLocation.isValid())
484 AddOptnoneAttributeIfNoConflicts(FD, OptimizeOffPragmaLocation);
485}
486
487void Sema::AddOptnoneAttributeIfNoConflicts(FunctionDecl *FD,
488 SourceLocation Loc) {
489 // Don't add a conflicting attribute. No diagnostic is needed.
490 if (FD->hasAttr<MinSizeAttr>() || FD->hasAttr<AlwaysInlineAttr>())
491 return;
492
493 // Add attributes only if required. Optnone requires noinline as well, but if
494 // either is already present then don't bother adding them.
495 if (!FD->hasAttr<OptimizeNoneAttr>())
496 FD->addAttr(OptimizeNoneAttr::CreateImplicit(Context, Loc));
497 if (!FD->hasAttr<NoInlineAttr>())
498 FD->addAttr(NoInlineAttr::CreateImplicit(Context, Loc));
499}
500
John McCall90f14502010-12-10 02:59:44 +0000501typedef std::vector<std::pair<unsigned, SourceLocation> > VisStack;
Stephen Hines651f13c2014-04-23 16:59:28 -0700502enum : unsigned { NoVisibility = ~0U };
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000503
504void Sema::AddPushedVisibilityAttribute(Decl *D) {
505 if (!VisContext)
506 return;
507
Rafael Espindola140aadf2012-12-25 07:31:49 +0000508 NamedDecl *ND = dyn_cast<NamedDecl>(D);
John McCalld4c3d662013-02-20 01:54:26 +0000509 if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue))
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000510 return;
511
512 VisStack *Stack = static_cast<VisStack*>(VisContext);
John McCall90f14502010-12-10 02:59:44 +0000513 unsigned rawType = Stack->back().first;
514 if (rawType == NoVisibility) return;
515
516 VisibilityAttr::VisibilityType type
517 = (VisibilityAttr::VisibilityType) rawType;
Sean Huntcf807c42010-08-18 23:23:40 +0000518 SourceLocation loc = Stack->back().second;
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000519
Stephen Hines651f13c2014-04-23 16:59:28 -0700520 D->addAttr(VisibilityAttr::CreateImplicit(Context, type, loc));
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000521}
522
523/// FreeVisContext - Deallocate and null out VisContext.
524void Sema::FreeVisContext() {
525 delete static_cast<VisStack*>(VisContext);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700526 VisContext = nullptr;
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000527}
528
John McCall90f14502010-12-10 02:59:44 +0000529static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) {
John McCallea318642010-08-26 09:15:37 +0000530 // Put visibility on stack.
531 if (!S.VisContext)
532 S.VisContext = new VisStack;
533
534 VisStack *Stack = static_cast<VisStack*>(S.VisContext);
535 Stack->push_back(std::make_pair(type, loc));
536}
537
Rafael Espindola3fc809d2012-01-21 05:43:40 +0000538void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType,
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000539 SourceLocation PragmaLoc) {
Rafael Espindola3fc809d2012-01-21 05:43:40 +0000540 if (VisType) {
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000541 // Compute visibility to use.
Aaron Ballmand0686072013-09-11 19:47:58 +0000542 VisibilityAttr::VisibilityType T;
543 if (!VisibilityAttr::ConvertStrToVisibilityType(VisType->getName(), T)) {
544 Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) << VisType;
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000545 return;
546 }
Aaron Ballmand0686072013-09-11 19:47:58 +0000547 PushPragmaVisibility(*this, T, PragmaLoc);
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000548 } else {
Rafael Espindola20039ae2012-02-01 23:24:59 +0000549 PopPragmaVisibility(false, PragmaLoc);
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000550 }
551}
552
Peter Collingbourne321b8172011-02-14 01:42:35 +0000553void Sema::ActOnPragmaFPContract(tok::OnOffSwitch OOS) {
554 switch (OOS) {
555 case tok::OOS_ON:
556 FPFeatures.fp_contract = 1;
557 break;
558 case tok::OOS_OFF:
559 FPFeatures.fp_contract = 0;
560 break;
561 case tok::OOS_DEFAULT:
David Blaikie4e4d0842012-03-11 07:00:24 +0000562 FPFeatures.fp_contract = getLangOpts().DefaultFPContract;
Peter Collingbourne321b8172011-02-14 01:42:35 +0000563 break;
564 }
565}
566
Rafael Espindola20039ae2012-02-01 23:24:59 +0000567void Sema::PushNamespaceVisibilityAttr(const VisibilityAttr *Attr,
568 SourceLocation Loc) {
John McCall90f14502010-12-10 02:59:44 +0000569 // Visibility calculations will consider the namespace's visibility.
570 // Here we just want to note that we're in a visibility context
571 // which overrides any enclosing #pragma context, but doesn't itself
572 // contribute visibility.
Rafael Espindola20039ae2012-02-01 23:24:59 +0000573 PushPragmaVisibility(*this, NoVisibility, Loc);
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000574}
575
Rafael Espindola20039ae2012-02-01 23:24:59 +0000576void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) {
577 if (!VisContext) {
578 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
579 return;
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000580 }
Rafael Espindola20039ae2012-02-01 23:24:59 +0000581
582 // Pop visibility from stack
583 VisStack *Stack = static_cast<VisStack*>(VisContext);
584
585 const std::pair<unsigned, SourceLocation> *Back = &Stack->back();
586 bool StartsWithPragma = Back->first != NoVisibility;
587 if (StartsWithPragma && IsNamespaceEnd) {
588 Diag(Back->second, diag::err_pragma_push_visibility_mismatch);
589 Diag(EndLoc, diag::note_surrounding_namespace_ends_here);
590
591 // For better error recovery, eat all pushes inside the namespace.
592 do {
593 Stack->pop_back();
594 Back = &Stack->back();
595 StartsWithPragma = Back->first != NoVisibility;
596 } while (StartsWithPragma);
597 } else if (!StartsWithPragma && !IsNamespaceEnd) {
598 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
599 Diag(Back->second, diag::note_surrounding_namespace_starts_here);
600 return;
601 }
602
603 Stack->pop_back();
604 // To simplify the implementation, never keep around an empty stack.
605 if (Stack->empty())
606 FreeVisContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000607}