blob: 7387b66c0ccc823e108e8cb8bce14373154c39ec [file] [log] [blame]
Bill Wendling44426052012-12-20 19:22:21 +00001//===--- SemaAttr.cpp - Semantic Analysis for Attributes ------------------===//
Chris Lattner2eccbc12009-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 Lattner31180bb2009-02-17 01:09:29 +000010// This file implements semantic analysis for non-trivial attributes and
11// pragmas.
Chris Lattner2eccbc12009-02-17 00:57:29 +000012//
13//===----------------------------------------------------------------------===//
14
John McCall83024632010-08-25 22:03:47 +000015#include "clang/Sema/SemaInternal.h"
Reid Klecknere43f0fe2013-05-08 13:44:39 +000016#include "clang/AST/ASTConsumer.h"
Alexis Huntdcfba7b2010-08-18 23:23:40 +000017#include "clang/AST/Attr.h"
Chris Lattner2eccbc12009-02-17 00:57:29 +000018#include "clang/AST/Expr.h"
Daniel Dunbarbd606522010-05-27 00:35:16 +000019#include "clang/Basic/TargetInfo.h"
20#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Sema/Lookup.h"
Chris Lattner2eccbc12009-02-17 00:57:29 +000022using namespace clang;
23
Chris Lattner31180bb2009-02-17 01:09:29 +000024//===----------------------------------------------------------------------===//
Daniel Dunbar69dac582010-05-27 00:04:40 +000025// Pragma 'pack' and 'options align'
Chris Lattner31180bb2009-02-17 01:09:29 +000026//===----------------------------------------------------------------------===//
27
Denis Zobnin2290dac2016-04-29 11:27:00 +000028Sema::PragmaStackSentinelRAII::PragmaStackSentinelRAII(Sema &S,
29 StringRef SlotLabel,
30 bool ShouldAct)
31 : S(S), SlotLabel(SlotLabel), ShouldAct(ShouldAct) {
32 if (ShouldAct) {
33 S.VtorDispStack.SentinelAction(PSK_Push, SlotLabel);
34 S.DataSegStack.SentinelAction(PSK_Push, SlotLabel);
35 S.BSSSegStack.SentinelAction(PSK_Push, SlotLabel);
36 S.ConstSegStack.SentinelAction(PSK_Push, SlotLabel);
37 S.CodeSegStack.SentinelAction(PSK_Push, SlotLabel);
38 }
39}
40
41Sema::PragmaStackSentinelRAII::~PragmaStackSentinelRAII() {
42 if (ShouldAct) {
43 S.VtorDispStack.SentinelAction(PSK_Pop, SlotLabel);
44 S.DataSegStack.SentinelAction(PSK_Pop, SlotLabel);
45 S.BSSSegStack.SentinelAction(PSK_Pop, SlotLabel);
46 S.ConstSegStack.SentinelAction(PSK_Pop, SlotLabel);
47 S.CodeSegStack.SentinelAction(PSK_Pop, SlotLabel);
48 }
49}
Chris Lattner31180bb2009-02-17 01:09:29 +000050
Daniel Dunbar8804f2e2010-05-27 01:53:40 +000051void Sema::AddAlignmentAttributesForRecord(RecordDecl *RD) {
Denis Zobnin10c4f452016-04-29 18:17:40 +000052 // If there is no pack value, we don't need any attributes.
53 if (!PackStack.CurrentValue)
Daniel Dunbar8804f2e2010-05-27 01:53:40 +000054 return;
55
Daniel Dunbar8804f2e2010-05-27 01:53:40 +000056 // Otherwise, check to see if we need a max field alignment attribute.
Denis Zobnin10c4f452016-04-29 18:17:40 +000057 if (unsigned Alignment = PackStack.CurrentValue) {
58 if (Alignment == Sema::kMac68kAlignmentSentinel)
Aaron Ballman36a53502014-01-16 13:03:14 +000059 RD->addAttr(AlignMac68kAttr::CreateImplicit(Context));
Daniel Dunbar6da10982010-05-27 05:45:51 +000060 else
Aaron Ballman36a53502014-01-16 13:03:14 +000061 RD->addAttr(MaxFieldAlignmentAttr::CreateImplicit(Context,
Alexis Huntdcfba7b2010-08-18 23:23:40 +000062 Alignment * 8));
Daniel Dunbar6da10982010-05-27 05:45:51 +000063 }
Chris Lattner31180bb2009-02-17 01:09:29 +000064}
65
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +000066void Sema::AddMsStructLayoutForRecord(RecordDecl *RD) {
Reid Klecknerc0dca6d2014-02-12 23:50:26 +000067 if (MSStructPragmaOn)
David Majnemer8ab003a2015-02-02 19:30:52 +000068 RD->addAttr(MSStructAttr::CreateImplicit(Context));
Reid Klecknerc0dca6d2014-02-12 23:50:26 +000069
70 // FIXME: We should merge AddAlignmentAttributesForRecord with
71 // AddMsStructLayoutForRecord into AddPragmaAttributesForRecord, which takes
72 // all active pragmas and applies them as attributes to class definitions.
Denis Zobnin2290dac2016-04-29 11:27:00 +000073 if (VtorDispStack.CurrentValue != getLangOpts().VtorDispMode)
Reid Klecknerc0dca6d2014-02-12 23:50:26 +000074 RD->addAttr(
Denis Zobnin2290dac2016-04-29 11:27:00 +000075 MSVtorDispAttr::CreateImplicit(Context, VtorDispStack.CurrentValue));
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +000076}
77
Daniel Dunbar69dac582010-05-27 00:04:40 +000078void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,
Eli Friedman68be1642012-10-04 02:36:51 +000079 SourceLocation PragmaLoc) {
Denis Zobnin10c4f452016-04-29 18:17:40 +000080 PragmaMsStackAction Action = Sema::PSK_Reset;
81 unsigned Alignment;
Daniel Dunbar69dac582010-05-27 00:04:40 +000082 switch (Kind) {
Daniel Dunbar663e8092010-05-27 18:42:09 +000083 // For all targets we support native and natural are the same.
84 //
85 // FIXME: This is not true on Darwin/PPC.
86 case POAK_Native:
Daniel Dunbar5794c6f2010-05-28 19:43:33 +000087 case POAK_Power:
Daniel Dunbara6885662010-05-28 20:08:00 +000088 case POAK_Natural:
Denis Zobnin10c4f452016-04-29 18:17:40 +000089 Action = Sema::PSK_Push_Set;
90 Alignment = 0;
Daniel Dunbar5794c6f2010-05-28 19:43:33 +000091 break;
92
Daniel Dunbar9c84d4a2010-05-27 18:42:17 +000093 // Note that '#pragma options align=packed' is not equivalent to attribute
94 // packed, it has a different precedence relative to attribute aligned.
95 case POAK_Packed:
Denis Zobnin10c4f452016-04-29 18:17:40 +000096 Action = Sema::PSK_Push_Set;
97 Alignment = 1;
Daniel Dunbar9c84d4a2010-05-27 18:42:17 +000098 break;
99
Daniel Dunbarbd606522010-05-27 00:35:16 +0000100 case POAK_Mac68k:
101 // Check if the target supports this.
Alp Tokerb6cc5922014-05-03 03:45:55 +0000102 if (!this->Context.getTargetInfo().hasAlignMac68kSupport()) {
Daniel Dunbarbd606522010-05-27 00:35:16 +0000103 Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported);
104 return;
Daniel Dunbarbd606522010-05-27 00:35:16 +0000105 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000106 Action = Sema::PSK_Push_Set;
107 Alignment = Sema::kMac68kAlignmentSentinel;
Daniel Dunbarbd606522010-05-27 00:35:16 +0000108 break;
109
Eli Friedman68be1642012-10-04 02:36:51 +0000110 case POAK_Reset:
111 // Reset just pops the top of the stack, or resets the current alignment to
112 // default.
Denis Zobnin10c4f452016-04-29 18:17:40 +0000113 Action = Sema::PSK_Pop;
114 if (PackStack.Stack.empty()) {
115 if (PackStack.CurrentValue) {
116 Action = Sema::PSK_Reset;
117 } else {
118 Diag(PragmaLoc, diag::warn_pragma_options_align_reset_failed)
119 << "stack empty";
120 return;
121 }
Eli Friedman68be1642012-10-04 02:36:51 +0000122 }
Daniel Dunbar69dac582010-05-27 00:04:40 +0000123 break;
124 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000125
126 PackStack.Act(PragmaLoc, Action, StringRef(), Alignment);
Daniel Dunbar69dac582010-05-27 00:04:40 +0000127}
128
Denis Zobnin10c4f452016-04-29 18:17:40 +0000129void Sema::ActOnPragmaPack(SourceLocation PragmaLoc, PragmaMsStackAction Action,
130 StringRef SlotLabel, Expr *alignment) {
Chris Lattner2eccbc12009-02-17 00:57:29 +0000131 Expr *Alignment = static_cast<Expr *>(alignment);
132
133 // If specified then alignment must be a "small" power of two.
134 unsigned AlignmentVal = 0;
135 if (Alignment) {
136 llvm::APSInt Val;
Mike Stump11289f42009-09-09 15:08:12 +0000137
Daniel Dunbare03c6102009-03-06 20:45:54 +0000138 // pack(0) is like pack(), which just works out since that is what
139 // we use 0 for in PackAttr.
Douglas Gregorbdb604a2010-05-18 23:01:22 +0000140 if (Alignment->isTypeDependent() ||
141 Alignment->isValueDependent() ||
142 !Alignment->isIntegerConstantExpr(Val, Context) ||
Daniel Dunbare03c6102009-03-06 20:45:54 +0000143 !(Val == 0 || Val.isPowerOf2()) ||
Chris Lattner2eccbc12009-02-17 00:57:29 +0000144 Val.getZExtValue() > 16) {
145 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
Chris Lattner2eccbc12009-02-17 00:57:29 +0000146 return; // Ignore
147 }
148
149 AlignmentVal = (unsigned) Val.getZExtValue();
150 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000151 if (Action == Sema::PSK_Show) {
Chris Lattner2eccbc12009-02-17 00:57:29 +0000152 // Show the current alignment, making sure to show the right value
153 // for the default.
Chris Lattner2eccbc12009-02-17 00:57:29 +0000154 // FIXME: This should come from the target.
Denis Zobnin10c4f452016-04-29 18:17:40 +0000155 AlignmentVal = PackStack.CurrentValue;
Chris Lattner2eccbc12009-02-17 00:57:29 +0000156 if (AlignmentVal == 0)
157 AlignmentVal = 8;
Denis Zobnin10c4f452016-04-29 18:17:40 +0000158 if (AlignmentVal == Sema::kMac68kAlignmentSentinel)
Daniel Dunbar6da10982010-05-27 05:45:51 +0000159 Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k";
160 else
161 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Chris Lattner2eccbc12009-02-17 00:57:29 +0000162 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000163 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
164 // "#pragma pack(pop, identifier, n) is undefined"
165 if (Action & Sema::PSK_Pop) {
166 if (Alignment && !SlotLabel.empty())
167 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
168 if (PackStack.Stack.empty())
169 Diag(PragmaLoc, diag::warn_pragma_pop_failed) << "pack" << "stack empty";
170 }
171
172 PackStack.Act(PragmaLoc, Action, SlotLabel, AlignmentVal);
Chris Lattner2eccbc12009-02-17 00:57:29 +0000173}
174
Fariborz Jahanian743dda42011-04-25 18:49:15 +0000175void Sema::ActOnPragmaMSStruct(PragmaMSStructKind Kind) {
176 MSStructPragmaOn = (Kind == PMSST_ON);
177}
178
Nico Weber66220292016-03-02 17:28:48 +0000179void Sema::ActOnPragmaMSComment(SourceLocation CommentLoc,
180 PragmaMSCommentKind Kind, StringRef Arg) {
181 auto *PCD = PragmaCommentDecl::Create(
182 Context, Context.getTranslationUnitDecl(), CommentLoc, Kind, Arg);
183 Context.getTranslationUnitDecl()->addDecl(PCD);
184 Consumer.HandleTopLevelDecl(DeclGroupRef(PCD));
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000185}
186
Nico Webercbbaeb12016-03-02 19:28:54 +0000187void Sema::ActOnPragmaDetectMismatch(SourceLocation Loc, StringRef Name,
188 StringRef Value) {
189 auto *PDMD = PragmaDetectMismatchDecl::Create(
190 Context, Context.getTranslationUnitDecl(), Loc, Name, Value);
191 Context.getTranslationUnitDecl()->addDecl(PDMD);
192 Consumer.HandleTopLevelDecl(DeclGroupRef(PDMD));
Aaron Ballman5d041be2013-06-04 02:07:14 +0000193}
194
David Majnemer4bb09802014-02-10 19:50:15 +0000195void Sema::ActOnPragmaMSPointersToMembers(
David Majnemer86c318f2014-02-11 21:05:00 +0000196 LangOptions::PragmaMSPointersToMembersKind RepresentationMethod,
David Majnemer4bb09802014-02-10 19:50:15 +0000197 SourceLocation PragmaLoc) {
198 MSPointerToMemberRepresentationMethod = RepresentationMethod;
199 ImplicitMSInheritanceAttrLoc = PragmaLoc;
200}
201
Denis Zobnin2290dac2016-04-29 11:27:00 +0000202void Sema::ActOnPragmaMSVtorDisp(PragmaMsStackAction Action,
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000203 SourceLocation PragmaLoc,
204 MSVtorDispAttr::Mode Mode) {
Denis Zobnin2290dac2016-04-29 11:27:00 +0000205 if (Action & PSK_Pop && VtorDispStack.Stack.empty())
206 Diag(PragmaLoc, diag::warn_pragma_pop_failed) << "vtordisp"
207 << "stack empty";
208 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode);
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000209}
210
Warren Huntc3b18962014-04-08 22:30:47 +0000211template<typename ValueType>
212void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation,
213 PragmaMsStackAction Action,
214 llvm::StringRef StackSlotLabel,
215 ValueType Value) {
216 if (Action == PSK_Reset) {
Denis Zobnin2290dac2016-04-29 11:27:00 +0000217 CurrentValue = DefaultValue;
Warren Huntc3b18962014-04-08 22:30:47 +0000218 return;
219 }
220 if (Action & PSK_Push)
221 Stack.push_back(Slot(StackSlotLabel, CurrentValue, CurrentPragmaLocation));
222 else if (Action & PSK_Pop) {
223 if (!StackSlotLabel.empty()) {
224 // If we've got a label, try to find it and jump there.
225 auto I = std::find_if(Stack.rbegin(), Stack.rend(),
226 [&](const Slot &x) { return x.StackSlotLabel == StackSlotLabel; });
227 // If we found the label so pop from there.
228 if (I != Stack.rend()) {
229 CurrentValue = I->Value;
230 CurrentPragmaLocation = I->PragmaLocation;
231 Stack.erase(std::prev(I.base()), Stack.end());
232 }
233 } else if (!Stack.empty()) {
234 // We don't have a label, just pop the last entry.
235 CurrentValue = Stack.back().Value;
236 CurrentPragmaLocation = Stack.back().PragmaLocation;
237 Stack.pop_back();
238 }
239 }
240 if (Action & PSK_Set) {
241 CurrentValue = Value;
242 CurrentPragmaLocation = PragmaLocation;
243 }
244}
245
Craig Topperbf3e3272014-08-30 16:55:52 +0000246bool Sema::UnifySection(StringRef SectionName,
Warren Huntc3b18962014-04-08 22:30:47 +0000247 int SectionFlags,
248 DeclaratorDecl *Decl) {
Hans Wennborg899ded92014-10-16 20:52:46 +0000249 auto Section = Context.SectionInfos.find(SectionName);
250 if (Section == Context.SectionInfos.end()) {
251 Context.SectionInfos[SectionName] =
252 ASTContext::SectionInfo(Decl, SourceLocation(), SectionFlags);
Warren Huntc3b18962014-04-08 22:30:47 +0000253 return false;
254 }
255 // A pre-declared section takes precedence w/o diagnostic.
256 if (Section->second.SectionFlags == SectionFlags ||
Hans Wennborg899ded92014-10-16 20:52:46 +0000257 !(Section->second.SectionFlags & ASTContext::PSF_Implicit))
Warren Huntc3b18962014-04-08 22:30:47 +0000258 return false;
259 auto OtherDecl = Section->second.Decl;
260 Diag(Decl->getLocation(), diag::err_section_conflict)
261 << Decl << OtherDecl;
262 Diag(OtherDecl->getLocation(), diag::note_declared_at)
263 << OtherDecl->getName();
264 if (auto A = Decl->getAttr<SectionAttr>())
265 if (A->isImplicit())
266 Diag(A->getLocation(), diag::note_pragma_entered_here);
267 if (auto A = OtherDecl->getAttr<SectionAttr>())
268 if (A->isImplicit())
269 Diag(A->getLocation(), diag::note_pragma_entered_here);
Ehsan Akhgari0b510602014-09-22 19:46:39 +0000270 return true;
Warren Huntc3b18962014-04-08 22:30:47 +0000271}
272
Craig Topperbf3e3272014-08-30 16:55:52 +0000273bool Sema::UnifySection(StringRef SectionName,
Warren Huntc3b18962014-04-08 22:30:47 +0000274 int SectionFlags,
275 SourceLocation PragmaSectionLocation) {
Hans Wennborg899ded92014-10-16 20:52:46 +0000276 auto Section = Context.SectionInfos.find(SectionName);
277 if (Section != Context.SectionInfos.end()) {
Warren Huntc3b18962014-04-08 22:30:47 +0000278 if (Section->second.SectionFlags == SectionFlags)
279 return false;
Hans Wennborg899ded92014-10-16 20:52:46 +0000280 if (!(Section->second.SectionFlags & ASTContext::PSF_Implicit)) {
Warren Huntc3b18962014-04-08 22:30:47 +0000281 Diag(PragmaSectionLocation, diag::err_section_conflict)
282 << "this" << "a prior #pragma section";
283 Diag(Section->second.PragmaSectionLocation,
284 diag::note_pragma_entered_here);
285 return true;
286 }
287 }
Hans Wennborg899ded92014-10-16 20:52:46 +0000288 Context.SectionInfos[SectionName] =
289 ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags);
Warren Huntc3b18962014-04-08 22:30:47 +0000290 return false;
291}
292
293/// \brief Called on well formed \#pragma bss_seg().
294void Sema::ActOnPragmaMSSeg(SourceLocation PragmaLocation,
295 PragmaMsStackAction Action,
296 llvm::StringRef StackSlotLabel,
297 StringLiteral *SegmentName,
298 llvm::StringRef PragmaName) {
299 PragmaStack<StringLiteral *> *Stack =
300 llvm::StringSwitch<PragmaStack<StringLiteral *> *>(PragmaName)
301 .Case("data_seg", &DataSegStack)
302 .Case("bss_seg", &BSSSegStack)
303 .Case("const_seg", &ConstSegStack)
304 .Case("code_seg", &CodeSegStack);
305 if (Action & PSK_Pop && Stack->Stack.empty())
306 Diag(PragmaLocation, diag::warn_pragma_pop_failed) << PragmaName
307 << "stack empty";
Reid Kleckner2a133222015-03-04 23:39:17 +0000308 if (SegmentName &&
309 !checkSectionName(SegmentName->getLocStart(), SegmentName->getString()))
310 return;
Warren Huntc3b18962014-04-08 22:30:47 +0000311 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName);
312}
313
314/// \brief Called on well formed \#pragma bss_seg().
315void Sema::ActOnPragmaMSSection(SourceLocation PragmaLocation,
316 int SectionFlags, StringLiteral *SegmentName) {
317 UnifySection(SegmentName->getString(), SectionFlags, PragmaLocation);
318}
319
Reid Kleckner1a711b12014-07-22 00:53:05 +0000320void Sema::ActOnPragmaMSInitSeg(SourceLocation PragmaLocation,
321 StringLiteral *SegmentName) {
322 // There's no stack to maintain, so we just have a current section. When we
323 // see the default section, reset our current section back to null so we stop
324 // tacking on unnecessary attributes.
325 CurInitSeg = SegmentName->getString() == ".CRT$XCU" ? nullptr : SegmentName;
326 CurInitSegLoc = PragmaLocation;
327}
328
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000329void Sema::ActOnPragmaUnused(const Token &IdTok, Scope *curScope,
330 SourceLocation PragmaLoc) {
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000331
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000332 IdentifierInfo *Name = IdTok.getIdentifierInfo();
333 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
Craig Topperc3ec1492014-05-26 06:22:03 +0000334 LookupParsedName(Lookup, curScope, nullptr, true);
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000335
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000336 if (Lookup.empty()) {
337 Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var)
338 << Name << SourceRange(IdTok.getLocation());
339 return;
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000340 }
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000341
342 VarDecl *VD = Lookup.getAsSingle<VarDecl>();
Argyrios Kyrtzidisff115a22011-01-27 18:16:48 +0000343 if (!VD) {
344 Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg)
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000345 << Name << SourceRange(IdTok.getLocation());
346 return;
347 }
348
349 // Warn if this was used before being marked unused.
350 if (VD->isUsed())
351 Diag(PragmaLoc, diag::warn_used_but_marked_unused) << Name;
352
Aaron Ballman0bcd6c12016-03-09 16:48:08 +0000353 VD->addAttr(UnusedAttr::CreateImplicit(Context, UnusedAttr::GNU_unused,
354 IdTok.getLocation()));
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000355}
Eli Friedman570024a2010-08-05 06:57:20 +0000356
John McCall32f5fe12011-09-30 05:12:12 +0000357void Sema::AddCFAuditedAttribute(Decl *D) {
358 SourceLocation Loc = PP.getPragmaARCCFCodeAuditedLoc();
359 if (!Loc.isValid()) return;
360
361 // Don't add a redundant or conflicting attribute.
362 if (D->hasAttr<CFAuditedTransferAttr>() ||
363 D->hasAttr<CFUnknownTransferAttr>())
364 return;
365
Aaron Ballman36a53502014-01-16 13:03:14 +0000366 D->addAttr(CFAuditedTransferAttr::CreateImplicit(Context, Loc));
John McCall32f5fe12011-09-30 05:12:12 +0000367}
368
Dario Domizioli13a0a382014-05-23 12:13:25 +0000369void Sema::ActOnPragmaOptimize(bool On, SourceLocation PragmaLoc) {
370 if(On)
371 OptimizeOffPragmaLocation = SourceLocation();
372 else
373 OptimizeOffPragmaLocation = PragmaLoc;
374}
375
376void Sema::AddRangeBasedOptnone(FunctionDecl *FD) {
377 // In the future, check other pragmas if they're implemented (e.g. pragma
378 // optimize 0 will probably map to this functionality too).
379 if(OptimizeOffPragmaLocation.isValid())
380 AddOptnoneAttributeIfNoConflicts(FD, OptimizeOffPragmaLocation);
381}
382
383void Sema::AddOptnoneAttributeIfNoConflicts(FunctionDecl *FD,
384 SourceLocation Loc) {
385 // Don't add a conflicting attribute. No diagnostic is needed.
386 if (FD->hasAttr<MinSizeAttr>() || FD->hasAttr<AlwaysInlineAttr>())
387 return;
388
389 // Add attributes only if required. Optnone requires noinline as well, but if
390 // either is already present then don't bother adding them.
391 if (!FD->hasAttr<OptimizeNoneAttr>())
392 FD->addAttr(OptimizeNoneAttr::CreateImplicit(Context, Loc));
393 if (!FD->hasAttr<NoInlineAttr>())
394 FD->addAttr(NoInlineAttr::CreateImplicit(Context, Loc));
395}
396
John McCall2faf32c2010-12-10 02:59:44 +0000397typedef std::vector<std::pair<unsigned, SourceLocation> > VisStack;
Alp Tokerceb95c42014-03-02 03:20:16 +0000398enum : unsigned { NoVisibility = ~0U };
Eli Friedman570024a2010-08-05 06:57:20 +0000399
400void Sema::AddPushedVisibilityAttribute(Decl *D) {
401 if (!VisContext)
402 return;
403
Rafael Espindola54606d52012-12-25 07:31:49 +0000404 NamedDecl *ND = dyn_cast<NamedDecl>(D);
John McCalld041a9b2013-02-20 01:54:26 +0000405 if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue))
Eli Friedman570024a2010-08-05 06:57:20 +0000406 return;
407
408 VisStack *Stack = static_cast<VisStack*>(VisContext);
John McCall2faf32c2010-12-10 02:59:44 +0000409 unsigned rawType = Stack->back().first;
410 if (rawType == NoVisibility) return;
411
412 VisibilityAttr::VisibilityType type
413 = (VisibilityAttr::VisibilityType) rawType;
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000414 SourceLocation loc = Stack->back().second;
Eli Friedman570024a2010-08-05 06:57:20 +0000415
Aaron Ballman36a53502014-01-16 13:03:14 +0000416 D->addAttr(VisibilityAttr::CreateImplicit(Context, type, loc));
Eli Friedman570024a2010-08-05 06:57:20 +0000417}
418
419/// FreeVisContext - Deallocate and null out VisContext.
420void Sema::FreeVisContext() {
421 delete static_cast<VisStack*>(VisContext);
Craig Topperc3ec1492014-05-26 06:22:03 +0000422 VisContext = nullptr;
Eli Friedman570024a2010-08-05 06:57:20 +0000423}
424
John McCall2faf32c2010-12-10 02:59:44 +0000425static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) {
John McCallb1be5232010-08-26 09:15:37 +0000426 // Put visibility on stack.
427 if (!S.VisContext)
428 S.VisContext = new VisStack;
429
430 VisStack *Stack = static_cast<VisStack*>(S.VisContext);
431 Stack->push_back(std::make_pair(type, loc));
432}
433
Rafael Espindolade15baf2012-01-21 05:43:40 +0000434void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType,
Eli Friedman570024a2010-08-05 06:57:20 +0000435 SourceLocation PragmaLoc) {
Rafael Espindolade15baf2012-01-21 05:43:40 +0000436 if (VisType) {
Eli Friedman570024a2010-08-05 06:57:20 +0000437 // Compute visibility to use.
Aaron Ballman682ee422013-09-11 19:47:58 +0000438 VisibilityAttr::VisibilityType T;
439 if (!VisibilityAttr::ConvertStrToVisibilityType(VisType->getName(), T)) {
440 Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) << VisType;
Eli Friedman570024a2010-08-05 06:57:20 +0000441 return;
442 }
Aaron Ballman682ee422013-09-11 19:47:58 +0000443 PushPragmaVisibility(*this, T, PragmaLoc);
Eli Friedman570024a2010-08-05 06:57:20 +0000444 } else {
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000445 PopPragmaVisibility(false, PragmaLoc);
Eli Friedman570024a2010-08-05 06:57:20 +0000446 }
447}
448
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000449void Sema::ActOnPragmaFPContract(tok::OnOffSwitch OOS) {
450 switch (OOS) {
451 case tok::OOS_ON:
452 FPFeatures.fp_contract = 1;
453 break;
454 case tok::OOS_OFF:
455 FPFeatures.fp_contract = 0;
456 break;
457 case tok::OOS_DEFAULT:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000458 FPFeatures.fp_contract = getLangOpts().DefaultFPContract;
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000459 break;
460 }
461}
462
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000463void Sema::PushNamespaceVisibilityAttr(const VisibilityAttr *Attr,
464 SourceLocation Loc) {
John McCall2faf32c2010-12-10 02:59:44 +0000465 // Visibility calculations will consider the namespace's visibility.
466 // Here we just want to note that we're in a visibility context
467 // which overrides any enclosing #pragma context, but doesn't itself
468 // contribute visibility.
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000469 PushPragmaVisibility(*this, NoVisibility, Loc);
Eli Friedman570024a2010-08-05 06:57:20 +0000470}
471
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000472void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) {
473 if (!VisContext) {
474 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
475 return;
Eli Friedman570024a2010-08-05 06:57:20 +0000476 }
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000477
478 // Pop visibility from stack
479 VisStack *Stack = static_cast<VisStack*>(VisContext);
480
481 const std::pair<unsigned, SourceLocation> *Back = &Stack->back();
482 bool StartsWithPragma = Back->first != NoVisibility;
483 if (StartsWithPragma && IsNamespaceEnd) {
484 Diag(Back->second, diag::err_pragma_push_visibility_mismatch);
485 Diag(EndLoc, diag::note_surrounding_namespace_ends_here);
486
487 // For better error recovery, eat all pushes inside the namespace.
488 do {
489 Stack->pop_back();
490 Back = &Stack->back();
491 StartsWithPragma = Back->first != NoVisibility;
492 } while (StartsWithPragma);
493 } else if (!StartsWithPragma && !IsNamespaceEnd) {
494 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
495 Diag(Back->second, diag::note_surrounding_namespace_starts_here);
496 return;
497 }
498
499 Stack->pop_back();
500 // To simplify the implementation, never keep around an empty stack.
501 if (Stack->empty())
502 FreeVisContext();
Eli Friedman570024a2010-08-05 06:57:20 +0000503}