blob: 66c8e9c70efb278acbdfe2c4ddefc759dbf903ca [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
Reid Klecknere43f0fe2013-05-08 13:44:39 +000015#include "clang/AST/ASTConsumer.h"
Alexis Huntdcfba7b2010-08-18 23:23:40 +000016#include "clang/AST/Attr.h"
Chris Lattner2eccbc12009-02-17 00:57:29 +000017#include "clang/AST/Expr.h"
Daniel Dunbarbd606522010-05-27 00:35:16 +000018#include "clang/Basic/TargetInfo.h"
19#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/Sema/Lookup.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000021#include "clang/Sema/SemaInternal.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 }
Alex Lorenz45b40142017-07-28 14:41:21 +000064 if (PackIncludeStack.empty())
65 return;
66 // The #pragma pack affected a record in an included file, so Clang should
67 // warn when that pragma was written in a file that included the included
68 // file.
69 for (auto &PackedInclude : llvm::reverse(PackIncludeStack)) {
70 if (PackedInclude.CurrentPragmaLocation != PackStack.CurrentPragmaLocation)
71 break;
72 if (PackedInclude.HasNonDefaultValue)
73 PackedInclude.ShouldWarnOnInclude = true;
74 }
Chris Lattner31180bb2009-02-17 01:09:29 +000075}
76
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +000077void Sema::AddMsStructLayoutForRecord(RecordDecl *RD) {
Reid Klecknerc0dca6d2014-02-12 23:50:26 +000078 if (MSStructPragmaOn)
David Majnemer8ab003a2015-02-02 19:30:52 +000079 RD->addAttr(MSStructAttr::CreateImplicit(Context));
Reid Klecknerc0dca6d2014-02-12 23:50:26 +000080
81 // FIXME: We should merge AddAlignmentAttributesForRecord with
82 // AddMsStructLayoutForRecord into AddPragmaAttributesForRecord, which takes
83 // all active pragmas and applies them as attributes to class definitions.
Denis Zobnin2290dac2016-04-29 11:27:00 +000084 if (VtorDispStack.CurrentValue != getLangOpts().VtorDispMode)
Reid Klecknerc0dca6d2014-02-12 23:50:26 +000085 RD->addAttr(
Denis Zobnin2290dac2016-04-29 11:27:00 +000086 MSVtorDispAttr::CreateImplicit(Context, VtorDispStack.CurrentValue));
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +000087}
88
Daniel Dunbar69dac582010-05-27 00:04:40 +000089void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,
Eli Friedman68be1642012-10-04 02:36:51 +000090 SourceLocation PragmaLoc) {
Denis Zobnin10c4f452016-04-29 18:17:40 +000091 PragmaMsStackAction Action = Sema::PSK_Reset;
Denis Zobnin3f287c22016-04-29 22:50:16 +000092 unsigned Alignment = 0;
Daniel Dunbar69dac582010-05-27 00:04:40 +000093 switch (Kind) {
Daniel Dunbar663e8092010-05-27 18:42:09 +000094 // For all targets we support native and natural are the same.
95 //
96 // FIXME: This is not true on Darwin/PPC.
97 case POAK_Native:
Daniel Dunbar5794c6f2010-05-28 19:43:33 +000098 case POAK_Power:
Daniel Dunbara6885662010-05-28 20:08:00 +000099 case POAK_Natural:
Denis Zobnin10c4f452016-04-29 18:17:40 +0000100 Action = Sema::PSK_Push_Set;
101 Alignment = 0;
Daniel Dunbar5794c6f2010-05-28 19:43:33 +0000102 break;
103
Daniel Dunbar9c84d4a2010-05-27 18:42:17 +0000104 // Note that '#pragma options align=packed' is not equivalent to attribute
105 // packed, it has a different precedence relative to attribute aligned.
106 case POAK_Packed:
Denis Zobnin10c4f452016-04-29 18:17:40 +0000107 Action = Sema::PSK_Push_Set;
108 Alignment = 1;
Daniel Dunbar9c84d4a2010-05-27 18:42:17 +0000109 break;
110
Daniel Dunbarbd606522010-05-27 00:35:16 +0000111 case POAK_Mac68k:
112 // Check if the target supports this.
Alp Tokerb6cc5922014-05-03 03:45:55 +0000113 if (!this->Context.getTargetInfo().hasAlignMac68kSupport()) {
Daniel Dunbarbd606522010-05-27 00:35:16 +0000114 Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported);
115 return;
Daniel Dunbarbd606522010-05-27 00:35:16 +0000116 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000117 Action = Sema::PSK_Push_Set;
118 Alignment = Sema::kMac68kAlignmentSentinel;
Daniel Dunbarbd606522010-05-27 00:35:16 +0000119 break;
120
Eli Friedman68be1642012-10-04 02:36:51 +0000121 case POAK_Reset:
122 // Reset just pops the top of the stack, or resets the current alignment to
123 // default.
Denis Zobnin10c4f452016-04-29 18:17:40 +0000124 Action = Sema::PSK_Pop;
125 if (PackStack.Stack.empty()) {
126 if (PackStack.CurrentValue) {
127 Action = Sema::PSK_Reset;
128 } else {
129 Diag(PragmaLoc, diag::warn_pragma_options_align_reset_failed)
130 << "stack empty";
131 return;
132 }
Eli Friedman68be1642012-10-04 02:36:51 +0000133 }
Daniel Dunbar69dac582010-05-27 00:04:40 +0000134 break;
135 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000136
137 PackStack.Act(PragmaLoc, Action, StringRef(), Alignment);
Daniel Dunbar69dac582010-05-27 00:04:40 +0000138}
139
Javed Absar2a67c9e2017-06-05 10:11:57 +0000140void Sema::ActOnPragmaClangSection(SourceLocation PragmaLoc, PragmaClangSectionAction Action,
141 PragmaClangSectionKind SecKind, StringRef SecName) {
142 PragmaClangSection *CSec;
143 switch (SecKind) {
144 case PragmaClangSectionKind::PCSK_BSS:
145 CSec = &PragmaClangBSSSection;
146 break;
147 case PragmaClangSectionKind::PCSK_Data:
148 CSec = &PragmaClangDataSection;
149 break;
150 case PragmaClangSectionKind::PCSK_Rodata:
151 CSec = &PragmaClangRodataSection;
152 break;
153 case PragmaClangSectionKind::PCSK_Text:
154 CSec = &PragmaClangTextSection;
155 break;
156 default:
157 llvm_unreachable("invalid clang section kind");
158 }
159
160 if (Action == PragmaClangSectionAction::PCSA_Clear) {
161 CSec->Valid = false;
162 return;
163 }
164
165 CSec->Valid = true;
166 CSec->SectionName = SecName;
167 CSec->PragmaLocation = PragmaLoc;
168}
169
Denis Zobnin10c4f452016-04-29 18:17:40 +0000170void Sema::ActOnPragmaPack(SourceLocation PragmaLoc, PragmaMsStackAction Action,
171 StringRef SlotLabel, Expr *alignment) {
Chris Lattner2eccbc12009-02-17 00:57:29 +0000172 Expr *Alignment = static_cast<Expr *>(alignment);
173
174 // If specified then alignment must be a "small" power of two.
175 unsigned AlignmentVal = 0;
176 if (Alignment) {
177 llvm::APSInt Val;
Mike Stump11289f42009-09-09 15:08:12 +0000178
Daniel Dunbare03c6102009-03-06 20:45:54 +0000179 // pack(0) is like pack(), which just works out since that is what
180 // we use 0 for in PackAttr.
Douglas Gregorbdb604a2010-05-18 23:01:22 +0000181 if (Alignment->isTypeDependent() ||
182 Alignment->isValueDependent() ||
183 !Alignment->isIntegerConstantExpr(Val, Context) ||
Daniel Dunbare03c6102009-03-06 20:45:54 +0000184 !(Val == 0 || Val.isPowerOf2()) ||
Chris Lattner2eccbc12009-02-17 00:57:29 +0000185 Val.getZExtValue() > 16) {
186 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
Chris Lattner2eccbc12009-02-17 00:57:29 +0000187 return; // Ignore
188 }
189
190 AlignmentVal = (unsigned) Val.getZExtValue();
191 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000192 if (Action == Sema::PSK_Show) {
Chris Lattner2eccbc12009-02-17 00:57:29 +0000193 // Show the current alignment, making sure to show the right value
194 // for the default.
Chris Lattner2eccbc12009-02-17 00:57:29 +0000195 // FIXME: This should come from the target.
Denis Zobnin10c4f452016-04-29 18:17:40 +0000196 AlignmentVal = PackStack.CurrentValue;
Chris Lattner2eccbc12009-02-17 00:57:29 +0000197 if (AlignmentVal == 0)
198 AlignmentVal = 8;
Denis Zobnin10c4f452016-04-29 18:17:40 +0000199 if (AlignmentVal == Sema::kMac68kAlignmentSentinel)
Daniel Dunbar6da10982010-05-27 05:45:51 +0000200 Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k";
201 else
202 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Chris Lattner2eccbc12009-02-17 00:57:29 +0000203 }
Denis Zobnin10c4f452016-04-29 18:17:40 +0000204 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
205 // "#pragma pack(pop, identifier, n) is undefined"
206 if (Action & Sema::PSK_Pop) {
207 if (Alignment && !SlotLabel.empty())
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +0000208 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifier_and_alignment);
Denis Zobnin10c4f452016-04-29 18:17:40 +0000209 if (PackStack.Stack.empty())
210 Diag(PragmaLoc, diag::warn_pragma_pop_failed) << "pack" << "stack empty";
211 }
212
213 PackStack.Act(PragmaLoc, Action, SlotLabel, AlignmentVal);
Chris Lattner2eccbc12009-02-17 00:57:29 +0000214}
215
Alex Lorenz45b40142017-07-28 14:41:21 +0000216void Sema::DiagnoseNonDefaultPragmaPack(PragmaPackDiagnoseKind Kind,
217 SourceLocation IncludeLoc) {
218 if (Kind == PragmaPackDiagnoseKind::NonDefaultStateAtInclude) {
219 SourceLocation PrevLocation = PackStack.CurrentPragmaLocation;
220 // Warn about non-default alignment at #includes (without redundant
221 // warnings for the same directive in nested includes).
222 // The warning is delayed until the end of the file to avoid warnings
223 // for files that don't have any records that are affected by the modified
224 // alignment.
225 bool HasNonDefaultValue =
226 PackStack.hasValue() &&
227 (PackIncludeStack.empty() ||
228 PackIncludeStack.back().CurrentPragmaLocation != PrevLocation);
229 PackIncludeStack.push_back(
230 {PackStack.CurrentValue,
231 PackStack.hasValue() ? PrevLocation : SourceLocation(),
232 HasNonDefaultValue, /*ShouldWarnOnInclude*/ false});
233 return;
234 }
235
236 assert(Kind == PragmaPackDiagnoseKind::ChangedStateAtExit && "invalid kind");
237 PackIncludeState PrevPackState = PackIncludeStack.pop_back_val();
238 if (PrevPackState.ShouldWarnOnInclude) {
239 // Emit the delayed non-default alignment at #include warning.
240 Diag(IncludeLoc, diag::warn_pragma_pack_non_default_at_include);
241 Diag(PrevPackState.CurrentPragmaLocation, diag::note_pragma_pack_here);
242 }
243 // Warn about modified alignment after #includes.
244 if (PrevPackState.CurrentValue != PackStack.CurrentValue) {
245 Diag(IncludeLoc, diag::warn_pragma_pack_modified_after_include);
246 Diag(PackStack.CurrentPragmaLocation, diag::note_pragma_pack_here);
247 }
248}
249
250void Sema::DiagnoseUnterminatedPragmaPack() {
251 if (PackStack.Stack.empty())
252 return;
Alex Lorenza1479d72017-07-31 13:37:50 +0000253 bool IsInnermost = true;
254 for (const auto &StackSlot : llvm::reverse(PackStack.Stack)) {
Alex Lorenz45b40142017-07-28 14:41:21 +0000255 Diag(StackSlot.PragmaPushLocation, diag::warn_pragma_pack_no_pop_eof);
Alex Lorenza1479d72017-07-31 13:37:50 +0000256 // The user might have already reset the alignment, so suggest replacing
257 // the reset with a pop.
258 if (IsInnermost && PackStack.CurrentValue == PackStack.DefaultValue) {
259 DiagnosticBuilder DB = Diag(PackStack.CurrentPragmaLocation,
260 diag::note_pragma_pack_pop_instead_reset);
261 SourceLocation FixItLoc = Lexer::findLocationAfterToken(
262 PackStack.CurrentPragmaLocation, tok::l_paren, SourceMgr, LangOpts,
263 /*SkipTrailing=*/false);
264 if (FixItLoc.isValid())
265 DB << FixItHint::CreateInsertion(FixItLoc, "pop");
266 }
267 IsInnermost = false;
268 }
Alex Lorenz45b40142017-07-28 14:41:21 +0000269}
270
Fariborz Jahanian743dda42011-04-25 18:49:15 +0000271void Sema::ActOnPragmaMSStruct(PragmaMSStructKind Kind) {
272 MSStructPragmaOn = (Kind == PMSST_ON);
273}
274
Nico Weber66220292016-03-02 17:28:48 +0000275void Sema::ActOnPragmaMSComment(SourceLocation CommentLoc,
276 PragmaMSCommentKind Kind, StringRef Arg) {
277 auto *PCD = PragmaCommentDecl::Create(
278 Context, Context.getTranslationUnitDecl(), CommentLoc, Kind, Arg);
279 Context.getTranslationUnitDecl()->addDecl(PCD);
280 Consumer.HandleTopLevelDecl(DeclGroupRef(PCD));
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000281}
282
Nico Webercbbaeb12016-03-02 19:28:54 +0000283void Sema::ActOnPragmaDetectMismatch(SourceLocation Loc, StringRef Name,
284 StringRef Value) {
285 auto *PDMD = PragmaDetectMismatchDecl::Create(
286 Context, Context.getTranslationUnitDecl(), Loc, Name, Value);
287 Context.getTranslationUnitDecl()->addDecl(PDMD);
288 Consumer.HandleTopLevelDecl(DeclGroupRef(PDMD));
Aaron Ballman5d041be2013-06-04 02:07:14 +0000289}
290
David Majnemer4bb09802014-02-10 19:50:15 +0000291void Sema::ActOnPragmaMSPointersToMembers(
David Majnemer86c318f2014-02-11 21:05:00 +0000292 LangOptions::PragmaMSPointersToMembersKind RepresentationMethod,
David Majnemer4bb09802014-02-10 19:50:15 +0000293 SourceLocation PragmaLoc) {
294 MSPointerToMemberRepresentationMethod = RepresentationMethod;
295 ImplicitMSInheritanceAttrLoc = PragmaLoc;
296}
297
Denis Zobnin2290dac2016-04-29 11:27:00 +0000298void Sema::ActOnPragmaMSVtorDisp(PragmaMsStackAction Action,
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000299 SourceLocation PragmaLoc,
300 MSVtorDispAttr::Mode Mode) {
Denis Zobnin2290dac2016-04-29 11:27:00 +0000301 if (Action & PSK_Pop && VtorDispStack.Stack.empty())
302 Diag(PragmaLoc, diag::warn_pragma_pop_failed) << "vtordisp"
303 << "stack empty";
304 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode);
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000305}
306
Warren Huntc3b18962014-04-08 22:30:47 +0000307template<typename ValueType>
308void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation,
309 PragmaMsStackAction Action,
310 llvm::StringRef StackSlotLabel,
311 ValueType Value) {
312 if (Action == PSK_Reset) {
Denis Zobnin2290dac2016-04-29 11:27:00 +0000313 CurrentValue = DefaultValue;
Alex Lorenz7d7e1e02017-03-31 15:36:21 +0000314 CurrentPragmaLocation = PragmaLocation;
Warren Huntc3b18962014-04-08 22:30:47 +0000315 return;
316 }
317 if (Action & PSK_Push)
Alex Lorenz45b40142017-07-28 14:41:21 +0000318 Stack.emplace_back(StackSlotLabel, CurrentValue, CurrentPragmaLocation,
319 PragmaLocation);
Warren Huntc3b18962014-04-08 22:30:47 +0000320 else if (Action & PSK_Pop) {
321 if (!StackSlotLabel.empty()) {
322 // If we've got a label, try to find it and jump there.
David Majnemerf7e36092016-06-23 00:15:04 +0000323 auto I = llvm::find_if(llvm::reverse(Stack), [&](const Slot &x) {
324 return x.StackSlotLabel == StackSlotLabel;
325 });
Warren Huntc3b18962014-04-08 22:30:47 +0000326 // If we found the label so pop from there.
327 if (I != Stack.rend()) {
328 CurrentValue = I->Value;
329 CurrentPragmaLocation = I->PragmaLocation;
330 Stack.erase(std::prev(I.base()), Stack.end());
331 }
332 } else if (!Stack.empty()) {
333 // We don't have a label, just pop the last entry.
334 CurrentValue = Stack.back().Value;
335 CurrentPragmaLocation = Stack.back().PragmaLocation;
336 Stack.pop_back();
337 }
338 }
339 if (Action & PSK_Set) {
340 CurrentValue = Value;
341 CurrentPragmaLocation = PragmaLocation;
342 }
343}
344
Craig Topperbf3e3272014-08-30 16:55:52 +0000345bool Sema::UnifySection(StringRef SectionName,
Warren Huntc3b18962014-04-08 22:30:47 +0000346 int SectionFlags,
347 DeclaratorDecl *Decl) {
Hans Wennborg899ded92014-10-16 20:52:46 +0000348 auto Section = Context.SectionInfos.find(SectionName);
349 if (Section == Context.SectionInfos.end()) {
350 Context.SectionInfos[SectionName] =
351 ASTContext::SectionInfo(Decl, SourceLocation(), SectionFlags);
Warren Huntc3b18962014-04-08 22:30:47 +0000352 return false;
353 }
354 // A pre-declared section takes precedence w/o diagnostic.
355 if (Section->second.SectionFlags == SectionFlags ||
Hans Wennborg899ded92014-10-16 20:52:46 +0000356 !(Section->second.SectionFlags & ASTContext::PSF_Implicit))
Warren Huntc3b18962014-04-08 22:30:47 +0000357 return false;
358 auto OtherDecl = Section->second.Decl;
359 Diag(Decl->getLocation(), diag::err_section_conflict)
360 << Decl << OtherDecl;
361 Diag(OtherDecl->getLocation(), diag::note_declared_at)
362 << OtherDecl->getName();
363 if (auto A = Decl->getAttr<SectionAttr>())
364 if (A->isImplicit())
365 Diag(A->getLocation(), diag::note_pragma_entered_here);
366 if (auto A = OtherDecl->getAttr<SectionAttr>())
367 if (A->isImplicit())
368 Diag(A->getLocation(), diag::note_pragma_entered_here);
Ehsan Akhgari0b510602014-09-22 19:46:39 +0000369 return true;
Warren Huntc3b18962014-04-08 22:30:47 +0000370}
371
Craig Topperbf3e3272014-08-30 16:55:52 +0000372bool Sema::UnifySection(StringRef SectionName,
Warren Huntc3b18962014-04-08 22:30:47 +0000373 int SectionFlags,
374 SourceLocation PragmaSectionLocation) {
Hans Wennborg899ded92014-10-16 20:52:46 +0000375 auto Section = Context.SectionInfos.find(SectionName);
376 if (Section != Context.SectionInfos.end()) {
Warren Huntc3b18962014-04-08 22:30:47 +0000377 if (Section->second.SectionFlags == SectionFlags)
378 return false;
Hans Wennborg899ded92014-10-16 20:52:46 +0000379 if (!(Section->second.SectionFlags & ASTContext::PSF_Implicit)) {
Warren Huntc3b18962014-04-08 22:30:47 +0000380 Diag(PragmaSectionLocation, diag::err_section_conflict)
381 << "this" << "a prior #pragma section";
382 Diag(Section->second.PragmaSectionLocation,
383 diag::note_pragma_entered_here);
384 return true;
385 }
386 }
Hans Wennborg899ded92014-10-16 20:52:46 +0000387 Context.SectionInfos[SectionName] =
388 ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags);
Warren Huntc3b18962014-04-08 22:30:47 +0000389 return false;
390}
391
392/// \brief Called on well formed \#pragma bss_seg().
393void Sema::ActOnPragmaMSSeg(SourceLocation PragmaLocation,
394 PragmaMsStackAction Action,
395 llvm::StringRef StackSlotLabel,
396 StringLiteral *SegmentName,
397 llvm::StringRef PragmaName) {
398 PragmaStack<StringLiteral *> *Stack =
399 llvm::StringSwitch<PragmaStack<StringLiteral *> *>(PragmaName)
400 .Case("data_seg", &DataSegStack)
401 .Case("bss_seg", &BSSSegStack)
402 .Case("const_seg", &ConstSegStack)
403 .Case("code_seg", &CodeSegStack);
404 if (Action & PSK_Pop && Stack->Stack.empty())
405 Diag(PragmaLocation, diag::warn_pragma_pop_failed) << PragmaName
406 << "stack empty";
Reid Kleckner2a133222015-03-04 23:39:17 +0000407 if (SegmentName &&
408 !checkSectionName(SegmentName->getLocStart(), SegmentName->getString()))
409 return;
Warren Huntc3b18962014-04-08 22:30:47 +0000410 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName);
411}
412
413/// \brief Called on well formed \#pragma bss_seg().
414void Sema::ActOnPragmaMSSection(SourceLocation PragmaLocation,
415 int SectionFlags, StringLiteral *SegmentName) {
416 UnifySection(SegmentName->getString(), SectionFlags, PragmaLocation);
417}
418
Reid Kleckner1a711b12014-07-22 00:53:05 +0000419void Sema::ActOnPragmaMSInitSeg(SourceLocation PragmaLocation,
420 StringLiteral *SegmentName) {
421 // There's no stack to maintain, so we just have a current section. When we
422 // see the default section, reset our current section back to null so we stop
423 // tacking on unnecessary attributes.
424 CurInitSeg = SegmentName->getString() == ".CRT$XCU" ? nullptr : SegmentName;
425 CurInitSegLoc = PragmaLocation;
426}
427
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000428void Sema::ActOnPragmaUnused(const Token &IdTok, Scope *curScope,
429 SourceLocation PragmaLoc) {
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000430
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000431 IdentifierInfo *Name = IdTok.getIdentifierInfo();
432 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
Craig Topperc3ec1492014-05-26 06:22:03 +0000433 LookupParsedName(Lookup, curScope, nullptr, true);
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000434
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000435 if (Lookup.empty()) {
436 Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var)
437 << Name << SourceRange(IdTok.getLocation());
438 return;
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000439 }
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000440
441 VarDecl *VD = Lookup.getAsSingle<VarDecl>();
Argyrios Kyrtzidisff115a22011-01-27 18:16:48 +0000442 if (!VD) {
443 Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg)
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000444 << Name << SourceRange(IdTok.getLocation());
445 return;
446 }
447
448 // Warn if this was used before being marked unused.
449 if (VD->isUsed())
450 Diag(PragmaLoc, diag::warn_used_but_marked_unused) << Name;
451
Aaron Ballman0bcd6c12016-03-09 16:48:08 +0000452 VD->addAttr(UnusedAttr::CreateImplicit(Context, UnusedAttr::GNU_unused,
453 IdTok.getLocation()));
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000454}
Eli Friedman570024a2010-08-05 06:57:20 +0000455
John McCall32f5fe12011-09-30 05:12:12 +0000456void Sema::AddCFAuditedAttribute(Decl *D) {
457 SourceLocation Loc = PP.getPragmaARCCFCodeAuditedLoc();
458 if (!Loc.isValid()) return;
459
460 // Don't add a redundant or conflicting attribute.
461 if (D->hasAttr<CFAuditedTransferAttr>() ||
462 D->hasAttr<CFUnknownTransferAttr>())
463 return;
464
Aaron Ballman36a53502014-01-16 13:03:14 +0000465 D->addAttr(CFAuditedTransferAttr::CreateImplicit(Context, Loc));
John McCall32f5fe12011-09-30 05:12:12 +0000466}
467
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000468namespace {
469
470Optional<attr::SubjectMatchRule>
471getParentAttrMatcherRule(attr::SubjectMatchRule Rule) {
472 using namespace attr;
473 switch (Rule) {
474 default:
475 return None;
476#define ATTR_MATCH_RULE(Value, Spelling, IsAbstract)
477#define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \
478 case Value: \
479 return Parent;
480#include "clang/Basic/AttrSubMatchRulesList.inc"
481 }
482}
483
484bool isNegatedAttrMatcherSubRule(attr::SubjectMatchRule Rule) {
485 using namespace attr;
486 switch (Rule) {
487 default:
488 return false;
489#define ATTR_MATCH_RULE(Value, Spelling, IsAbstract)
490#define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \
491 case Value: \
492 return IsNegated;
493#include "clang/Basic/AttrSubMatchRulesList.inc"
494 }
495}
496
497CharSourceRange replacementRangeForListElement(const Sema &S,
498 SourceRange Range) {
499 // Make sure that the ',' is removed as well.
500 SourceLocation AfterCommaLoc = Lexer::findLocationAfterToken(
501 Range.getEnd(), tok::comma, S.getSourceManager(), S.getLangOpts(),
502 /*SkipTrailingWhitespaceAndNewLine=*/false);
503 if (AfterCommaLoc.isValid())
504 return CharSourceRange::getCharRange(Range.getBegin(), AfterCommaLoc);
505 else
506 return CharSourceRange::getTokenRange(Range);
507}
508
509std::string
510attrMatcherRuleListToString(ArrayRef<attr::SubjectMatchRule> Rules) {
511 std::string Result;
512 llvm::raw_string_ostream OS(Result);
513 for (const auto &I : llvm::enumerate(Rules)) {
514 if (I.index())
515 OS << (I.index() == Rules.size() - 1 ? ", and " : ", ");
516 OS << "'" << attr::getSubjectMatchRuleSpelling(I.value()) << "'";
517 }
518 return OS.str();
519}
520
521} // end anonymous namespace
522
523void Sema::ActOnPragmaAttributePush(AttributeList &Attribute,
524 SourceLocation PragmaLoc,
525 attr::ParsedSubjectMatchRuleSet Rules) {
526 SmallVector<attr::SubjectMatchRule, 4> SubjectMatchRules;
527 // Gather the subject match rules that are supported by the attribute.
528 SmallVector<std::pair<attr::SubjectMatchRule, bool>, 4>
529 StrictSubjectMatchRuleSet;
530 Attribute.getMatchRules(LangOpts, StrictSubjectMatchRuleSet);
531
532 // Figure out which subject matching rules are valid.
533 if (StrictSubjectMatchRuleSet.empty()) {
534 // Check for contradicting match rules. Contradicting match rules are
535 // either:
536 // - a top-level rule and one of its sub-rules. E.g. variable and
537 // variable(is_parameter).
538 // - a sub-rule and a sibling that's negated. E.g.
539 // variable(is_thread_local) and variable(unless(is_parameter))
Alex Lorenz26b47652017-04-18 20:54:23 +0000540 llvm::SmallDenseMap<int, std::pair<int, SourceRange>, 2>
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000541 RulesToFirstSpecifiedNegatedSubRule;
542 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000543 attr::SubjectMatchRule MatchRule = attr::SubjectMatchRule(Rule.first);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000544 Optional<attr::SubjectMatchRule> ParentRule =
Alex Lorenz26b47652017-04-18 20:54:23 +0000545 getParentAttrMatcherRule(MatchRule);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000546 if (!ParentRule)
547 continue;
548 auto It = Rules.find(*ParentRule);
549 if (It != Rules.end()) {
550 // A sub-rule contradicts a parent rule.
551 Diag(Rule.second.getBegin(),
552 diag::err_pragma_attribute_matcher_subrule_contradicts_rule)
Alex Lorenz26b47652017-04-18 20:54:23 +0000553 << attr::getSubjectMatchRuleSpelling(MatchRule)
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000554 << attr::getSubjectMatchRuleSpelling(*ParentRule) << It->second
555 << FixItHint::CreateRemoval(
556 replacementRangeForListElement(*this, Rule.second));
557 // Keep going without removing this rule as it won't change the set of
558 // declarations that receive the attribute.
559 continue;
560 }
Alex Lorenz26b47652017-04-18 20:54:23 +0000561 if (isNegatedAttrMatcherSubRule(MatchRule))
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000562 RulesToFirstSpecifiedNegatedSubRule.insert(
563 std::make_pair(*ParentRule, Rule));
564 }
565 bool IgnoreNegatedSubRules = false;
566 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000567 attr::SubjectMatchRule MatchRule = attr::SubjectMatchRule(Rule.first);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000568 Optional<attr::SubjectMatchRule> ParentRule =
Alex Lorenz26b47652017-04-18 20:54:23 +0000569 getParentAttrMatcherRule(MatchRule);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000570 if (!ParentRule)
571 continue;
572 auto It = RulesToFirstSpecifiedNegatedSubRule.find(*ParentRule);
573 if (It != RulesToFirstSpecifiedNegatedSubRule.end() &&
574 It->second != Rule) {
575 // Negated sub-rule contradicts another sub-rule.
576 Diag(
577 It->second.second.getBegin(),
578 diag::
579 err_pragma_attribute_matcher_negated_subrule_contradicts_subrule)
Alex Lorenz26b47652017-04-18 20:54:23 +0000580 << attr::getSubjectMatchRuleSpelling(
581 attr::SubjectMatchRule(It->second.first))
582 << attr::getSubjectMatchRuleSpelling(MatchRule) << Rule.second
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000583 << FixItHint::CreateRemoval(
584 replacementRangeForListElement(*this, It->second.second));
585 // Keep going but ignore all of the negated sub-rules.
586 IgnoreNegatedSubRules = true;
587 RulesToFirstSpecifiedNegatedSubRule.erase(It);
588 }
589 }
590
591 if (!IgnoreNegatedSubRules) {
592 for (const auto &Rule : Rules)
Alex Lorenz26b47652017-04-18 20:54:23 +0000593 SubjectMatchRules.push_back(attr::SubjectMatchRule(Rule.first));
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000594 } else {
595 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000596 if (!isNegatedAttrMatcherSubRule(attr::SubjectMatchRule(Rule.first)))
597 SubjectMatchRules.push_back(attr::SubjectMatchRule(Rule.first));
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000598 }
599 }
600 Rules.clear();
601 } else {
602 for (const auto &Rule : StrictSubjectMatchRuleSet) {
603 if (Rules.erase(Rule.first)) {
604 // Add the rule to the set of attribute receivers only if it's supported
605 // in the current language mode.
606 if (Rule.second)
607 SubjectMatchRules.push_back(Rule.first);
608 }
609 }
610 }
611
612 if (!Rules.empty()) {
613 auto Diagnostic =
614 Diag(PragmaLoc, diag::err_pragma_attribute_invalid_matchers)
615 << Attribute.getName();
616 SmallVector<attr::SubjectMatchRule, 2> ExtraRules;
617 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000618 ExtraRules.push_back(attr::SubjectMatchRule(Rule.first));
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000619 Diagnostic << FixItHint::CreateRemoval(
620 replacementRangeForListElement(*this, Rule.second));
621 }
622 Diagnostic << attrMatcherRuleListToString(ExtraRules);
623 }
624
625 PragmaAttributeStack.push_back(
626 {PragmaLoc, &Attribute, std::move(SubjectMatchRules), /*IsUsed=*/false});
627}
628
629void Sema::ActOnPragmaAttributePop(SourceLocation PragmaLoc) {
630 if (PragmaAttributeStack.empty()) {
631 Diag(PragmaLoc, diag::err_pragma_attribute_stack_mismatch);
632 return;
633 }
634 const PragmaAttributeEntry &Entry = PragmaAttributeStack.back();
635 if (!Entry.IsUsed) {
636 assert(Entry.Attribute && "Expected an attribute");
637 Diag(Entry.Attribute->getLoc(), diag::warn_pragma_attribute_unused)
638 << Entry.Attribute->getName();
639 Diag(PragmaLoc, diag::note_pragma_attribute_region_ends_here);
640 }
641 PragmaAttributeStack.pop_back();
642}
643
644void Sema::AddPragmaAttributes(Scope *S, Decl *D) {
645 if (PragmaAttributeStack.empty())
646 return;
647 for (auto &Entry : PragmaAttributeStack) {
648 const AttributeList *Attribute = Entry.Attribute;
649 assert(Attribute && "Expected an attribute");
650
651 // Ensure that the attribute can be applied to the given declaration.
652 bool Applies = false;
653 for (const auto &Rule : Entry.MatchRules) {
654 if (Attribute->appliesToDecl(D, Rule)) {
655 Applies = true;
656 break;
657 }
658 }
659 if (!Applies)
660 continue;
661 Entry.IsUsed = true;
662 assert(!Attribute->getNext() && "Expected just one attribute");
663 PragmaAttributeCurrentTargetDecl = D;
664 ProcessDeclAttributeList(S, D, Attribute);
665 PragmaAttributeCurrentTargetDecl = nullptr;
666 }
667}
668
669void Sema::PrintPragmaAttributeInstantiationPoint() {
670 assert(PragmaAttributeCurrentTargetDecl && "Expected an active declaration");
671 Diags.Report(PragmaAttributeCurrentTargetDecl->getLocStart(),
672 diag::note_pragma_attribute_applied_decl_here);
673}
674
675void Sema::DiagnoseUnterminatedPragmaAttribute() {
676 if (PragmaAttributeStack.empty())
677 return;
678 Diag(PragmaAttributeStack.back().Loc, diag::err_pragma_attribute_no_pop_eof);
679}
680
Dario Domizioli13a0a382014-05-23 12:13:25 +0000681void Sema::ActOnPragmaOptimize(bool On, SourceLocation PragmaLoc) {
682 if(On)
683 OptimizeOffPragmaLocation = SourceLocation();
684 else
685 OptimizeOffPragmaLocation = PragmaLoc;
686}
687
688void Sema::AddRangeBasedOptnone(FunctionDecl *FD) {
689 // In the future, check other pragmas if they're implemented (e.g. pragma
690 // optimize 0 will probably map to this functionality too).
691 if(OptimizeOffPragmaLocation.isValid())
692 AddOptnoneAttributeIfNoConflicts(FD, OptimizeOffPragmaLocation);
693}
694
695void Sema::AddOptnoneAttributeIfNoConflicts(FunctionDecl *FD,
696 SourceLocation Loc) {
697 // Don't add a conflicting attribute. No diagnostic is needed.
698 if (FD->hasAttr<MinSizeAttr>() || FD->hasAttr<AlwaysInlineAttr>())
699 return;
700
701 // Add attributes only if required. Optnone requires noinline as well, but if
702 // either is already present then don't bother adding them.
703 if (!FD->hasAttr<OptimizeNoneAttr>())
704 FD->addAttr(OptimizeNoneAttr::CreateImplicit(Context, Loc));
705 if (!FD->hasAttr<NoInlineAttr>())
706 FD->addAttr(NoInlineAttr::CreateImplicit(Context, Loc));
707}
708
John McCall2faf32c2010-12-10 02:59:44 +0000709typedef std::vector<std::pair<unsigned, SourceLocation> > VisStack;
Alp Tokerceb95c42014-03-02 03:20:16 +0000710enum : unsigned { NoVisibility = ~0U };
Eli Friedman570024a2010-08-05 06:57:20 +0000711
712void Sema::AddPushedVisibilityAttribute(Decl *D) {
713 if (!VisContext)
714 return;
715
Rafael Espindola54606d52012-12-25 07:31:49 +0000716 NamedDecl *ND = dyn_cast<NamedDecl>(D);
John McCalld041a9b2013-02-20 01:54:26 +0000717 if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue))
Eli Friedman570024a2010-08-05 06:57:20 +0000718 return;
719
720 VisStack *Stack = static_cast<VisStack*>(VisContext);
John McCall2faf32c2010-12-10 02:59:44 +0000721 unsigned rawType = Stack->back().first;
722 if (rawType == NoVisibility) return;
723
724 VisibilityAttr::VisibilityType type
725 = (VisibilityAttr::VisibilityType) rawType;
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000726 SourceLocation loc = Stack->back().second;
Eli Friedman570024a2010-08-05 06:57:20 +0000727
Aaron Ballman36a53502014-01-16 13:03:14 +0000728 D->addAttr(VisibilityAttr::CreateImplicit(Context, type, loc));
Eli Friedman570024a2010-08-05 06:57:20 +0000729}
730
731/// FreeVisContext - Deallocate and null out VisContext.
732void Sema::FreeVisContext() {
733 delete static_cast<VisStack*>(VisContext);
Craig Topperc3ec1492014-05-26 06:22:03 +0000734 VisContext = nullptr;
Eli Friedman570024a2010-08-05 06:57:20 +0000735}
736
John McCall2faf32c2010-12-10 02:59:44 +0000737static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) {
John McCallb1be5232010-08-26 09:15:37 +0000738 // Put visibility on stack.
739 if (!S.VisContext)
740 S.VisContext = new VisStack;
741
742 VisStack *Stack = static_cast<VisStack*>(S.VisContext);
743 Stack->push_back(std::make_pair(type, loc));
744}
745
Rafael Espindolade15baf2012-01-21 05:43:40 +0000746void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType,
Eli Friedman570024a2010-08-05 06:57:20 +0000747 SourceLocation PragmaLoc) {
Rafael Espindolade15baf2012-01-21 05:43:40 +0000748 if (VisType) {
Eli Friedman570024a2010-08-05 06:57:20 +0000749 // Compute visibility to use.
Aaron Ballman682ee422013-09-11 19:47:58 +0000750 VisibilityAttr::VisibilityType T;
751 if (!VisibilityAttr::ConvertStrToVisibilityType(VisType->getName(), T)) {
752 Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) << VisType;
Eli Friedman570024a2010-08-05 06:57:20 +0000753 return;
754 }
Aaron Ballman682ee422013-09-11 19:47:58 +0000755 PushPragmaVisibility(*this, T, PragmaLoc);
Eli Friedman570024a2010-08-05 06:57:20 +0000756 } else {
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000757 PopPragmaVisibility(false, PragmaLoc);
Eli Friedman570024a2010-08-05 06:57:20 +0000758 }
759}
760
Adam Nemet60d32642017-04-04 21:18:36 +0000761void Sema::ActOnPragmaFPContract(LangOptions::FPContractModeKind FPC) {
762 switch (FPC) {
763 case LangOptions::FPC_On:
Adam Nemet049a31d2017-03-29 21:54:24 +0000764 FPFeatures.setAllowFPContractWithinStatement();
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000765 break;
Adam Nemet60d32642017-04-04 21:18:36 +0000766 case LangOptions::FPC_Fast:
767 FPFeatures.setAllowFPContractAcrossStatement();
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000768 break;
Adam Nemet60d32642017-04-04 21:18:36 +0000769 case LangOptions::FPC_Off:
770 FPFeatures.setDisallowFPContract();
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000771 break;
772 }
773}
774
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000775void Sema::PushNamespaceVisibilityAttr(const VisibilityAttr *Attr,
776 SourceLocation Loc) {
John McCall2faf32c2010-12-10 02:59:44 +0000777 // Visibility calculations will consider the namespace's visibility.
778 // Here we just want to note that we're in a visibility context
779 // which overrides any enclosing #pragma context, but doesn't itself
780 // contribute visibility.
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000781 PushPragmaVisibility(*this, NoVisibility, Loc);
Eli Friedman570024a2010-08-05 06:57:20 +0000782}
783
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000784void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) {
785 if (!VisContext) {
786 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
787 return;
Eli Friedman570024a2010-08-05 06:57:20 +0000788 }
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000789
790 // Pop visibility from stack
791 VisStack *Stack = static_cast<VisStack*>(VisContext);
792
793 const std::pair<unsigned, SourceLocation> *Back = &Stack->back();
794 bool StartsWithPragma = Back->first != NoVisibility;
795 if (StartsWithPragma && IsNamespaceEnd) {
796 Diag(Back->second, diag::err_pragma_push_visibility_mismatch);
797 Diag(EndLoc, diag::note_surrounding_namespace_ends_here);
798
799 // For better error recovery, eat all pushes inside the namespace.
800 do {
801 Stack->pop_back();
802 Back = &Stack->back();
803 StartsWithPragma = Back->first != NoVisibility;
804 } while (StartsWithPragma);
805 } else if (!StartsWithPragma && !IsNamespaceEnd) {
806 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
807 Diag(Back->second, diag::note_surrounding_namespace_starts_here);
808 return;
809 }
810
811 Stack->pop_back();
812 // To simplify the implementation, never keep around an empty stack.
813 if (Stack->empty())
814 FreeVisContext();
Eli Friedman570024a2010-08-05 06:57:20 +0000815}