blob: f7f1f61873969a796f4b8a19e4ec1f6529274d40 [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())
208 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
209 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;
253 for (const auto &StackSlot : llvm::reverse(PackStack.Stack))
254 Diag(StackSlot.PragmaPushLocation, diag::warn_pragma_pack_no_pop_eof);
255}
256
Fariborz Jahanian743dda42011-04-25 18:49:15 +0000257void Sema::ActOnPragmaMSStruct(PragmaMSStructKind Kind) {
258 MSStructPragmaOn = (Kind == PMSST_ON);
259}
260
Nico Weber66220292016-03-02 17:28:48 +0000261void Sema::ActOnPragmaMSComment(SourceLocation CommentLoc,
262 PragmaMSCommentKind Kind, StringRef Arg) {
263 auto *PCD = PragmaCommentDecl::Create(
264 Context, Context.getTranslationUnitDecl(), CommentLoc, Kind, Arg);
265 Context.getTranslationUnitDecl()->addDecl(PCD);
266 Consumer.HandleTopLevelDecl(DeclGroupRef(PCD));
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000267}
268
Nico Webercbbaeb12016-03-02 19:28:54 +0000269void Sema::ActOnPragmaDetectMismatch(SourceLocation Loc, StringRef Name,
270 StringRef Value) {
271 auto *PDMD = PragmaDetectMismatchDecl::Create(
272 Context, Context.getTranslationUnitDecl(), Loc, Name, Value);
273 Context.getTranslationUnitDecl()->addDecl(PDMD);
274 Consumer.HandleTopLevelDecl(DeclGroupRef(PDMD));
Aaron Ballman5d041be2013-06-04 02:07:14 +0000275}
276
David Majnemer4bb09802014-02-10 19:50:15 +0000277void Sema::ActOnPragmaMSPointersToMembers(
David Majnemer86c318f2014-02-11 21:05:00 +0000278 LangOptions::PragmaMSPointersToMembersKind RepresentationMethod,
David Majnemer4bb09802014-02-10 19:50:15 +0000279 SourceLocation PragmaLoc) {
280 MSPointerToMemberRepresentationMethod = RepresentationMethod;
281 ImplicitMSInheritanceAttrLoc = PragmaLoc;
282}
283
Denis Zobnin2290dac2016-04-29 11:27:00 +0000284void Sema::ActOnPragmaMSVtorDisp(PragmaMsStackAction Action,
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000285 SourceLocation PragmaLoc,
286 MSVtorDispAttr::Mode Mode) {
Denis Zobnin2290dac2016-04-29 11:27:00 +0000287 if (Action & PSK_Pop && VtorDispStack.Stack.empty())
288 Diag(PragmaLoc, diag::warn_pragma_pop_failed) << "vtordisp"
289 << "stack empty";
290 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode);
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000291}
292
Warren Huntc3b18962014-04-08 22:30:47 +0000293template<typename ValueType>
294void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation,
295 PragmaMsStackAction Action,
296 llvm::StringRef StackSlotLabel,
297 ValueType Value) {
298 if (Action == PSK_Reset) {
Denis Zobnin2290dac2016-04-29 11:27:00 +0000299 CurrentValue = DefaultValue;
Alex Lorenz7d7e1e02017-03-31 15:36:21 +0000300 CurrentPragmaLocation = PragmaLocation;
Warren Huntc3b18962014-04-08 22:30:47 +0000301 return;
302 }
303 if (Action & PSK_Push)
Alex Lorenz45b40142017-07-28 14:41:21 +0000304 Stack.emplace_back(StackSlotLabel, CurrentValue, CurrentPragmaLocation,
305 PragmaLocation);
Warren Huntc3b18962014-04-08 22:30:47 +0000306 else if (Action & PSK_Pop) {
307 if (!StackSlotLabel.empty()) {
308 // If we've got a label, try to find it and jump there.
David Majnemerf7e36092016-06-23 00:15:04 +0000309 auto I = llvm::find_if(llvm::reverse(Stack), [&](const Slot &x) {
310 return x.StackSlotLabel == StackSlotLabel;
311 });
Warren Huntc3b18962014-04-08 22:30:47 +0000312 // If we found the label so pop from there.
313 if (I != Stack.rend()) {
314 CurrentValue = I->Value;
315 CurrentPragmaLocation = I->PragmaLocation;
316 Stack.erase(std::prev(I.base()), Stack.end());
317 }
318 } else if (!Stack.empty()) {
319 // We don't have a label, just pop the last entry.
320 CurrentValue = Stack.back().Value;
321 CurrentPragmaLocation = Stack.back().PragmaLocation;
322 Stack.pop_back();
323 }
324 }
325 if (Action & PSK_Set) {
326 CurrentValue = Value;
327 CurrentPragmaLocation = PragmaLocation;
328 }
329}
330
Craig Topperbf3e3272014-08-30 16:55:52 +0000331bool Sema::UnifySection(StringRef SectionName,
Warren Huntc3b18962014-04-08 22:30:47 +0000332 int SectionFlags,
333 DeclaratorDecl *Decl) {
Hans Wennborg899ded92014-10-16 20:52:46 +0000334 auto Section = Context.SectionInfos.find(SectionName);
335 if (Section == Context.SectionInfos.end()) {
336 Context.SectionInfos[SectionName] =
337 ASTContext::SectionInfo(Decl, SourceLocation(), SectionFlags);
Warren Huntc3b18962014-04-08 22:30:47 +0000338 return false;
339 }
340 // A pre-declared section takes precedence w/o diagnostic.
341 if (Section->second.SectionFlags == SectionFlags ||
Hans Wennborg899ded92014-10-16 20:52:46 +0000342 !(Section->second.SectionFlags & ASTContext::PSF_Implicit))
Warren Huntc3b18962014-04-08 22:30:47 +0000343 return false;
344 auto OtherDecl = Section->second.Decl;
345 Diag(Decl->getLocation(), diag::err_section_conflict)
346 << Decl << OtherDecl;
347 Diag(OtherDecl->getLocation(), diag::note_declared_at)
348 << OtherDecl->getName();
349 if (auto A = Decl->getAttr<SectionAttr>())
350 if (A->isImplicit())
351 Diag(A->getLocation(), diag::note_pragma_entered_here);
352 if (auto A = OtherDecl->getAttr<SectionAttr>())
353 if (A->isImplicit())
354 Diag(A->getLocation(), diag::note_pragma_entered_here);
Ehsan Akhgari0b510602014-09-22 19:46:39 +0000355 return true;
Warren Huntc3b18962014-04-08 22:30:47 +0000356}
357
Craig Topperbf3e3272014-08-30 16:55:52 +0000358bool Sema::UnifySection(StringRef SectionName,
Warren Huntc3b18962014-04-08 22:30:47 +0000359 int SectionFlags,
360 SourceLocation PragmaSectionLocation) {
Hans Wennborg899ded92014-10-16 20:52:46 +0000361 auto Section = Context.SectionInfos.find(SectionName);
362 if (Section != Context.SectionInfos.end()) {
Warren Huntc3b18962014-04-08 22:30:47 +0000363 if (Section->second.SectionFlags == SectionFlags)
364 return false;
Hans Wennborg899ded92014-10-16 20:52:46 +0000365 if (!(Section->second.SectionFlags & ASTContext::PSF_Implicit)) {
Warren Huntc3b18962014-04-08 22:30:47 +0000366 Diag(PragmaSectionLocation, diag::err_section_conflict)
367 << "this" << "a prior #pragma section";
368 Diag(Section->second.PragmaSectionLocation,
369 diag::note_pragma_entered_here);
370 return true;
371 }
372 }
Hans Wennborg899ded92014-10-16 20:52:46 +0000373 Context.SectionInfos[SectionName] =
374 ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags);
Warren Huntc3b18962014-04-08 22:30:47 +0000375 return false;
376}
377
378/// \brief Called on well formed \#pragma bss_seg().
379void Sema::ActOnPragmaMSSeg(SourceLocation PragmaLocation,
380 PragmaMsStackAction Action,
381 llvm::StringRef StackSlotLabel,
382 StringLiteral *SegmentName,
383 llvm::StringRef PragmaName) {
384 PragmaStack<StringLiteral *> *Stack =
385 llvm::StringSwitch<PragmaStack<StringLiteral *> *>(PragmaName)
386 .Case("data_seg", &DataSegStack)
387 .Case("bss_seg", &BSSSegStack)
388 .Case("const_seg", &ConstSegStack)
389 .Case("code_seg", &CodeSegStack);
390 if (Action & PSK_Pop && Stack->Stack.empty())
391 Diag(PragmaLocation, diag::warn_pragma_pop_failed) << PragmaName
392 << "stack empty";
Reid Kleckner2a133222015-03-04 23:39:17 +0000393 if (SegmentName &&
394 !checkSectionName(SegmentName->getLocStart(), SegmentName->getString()))
395 return;
Warren Huntc3b18962014-04-08 22:30:47 +0000396 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName);
397}
398
399/// \brief Called on well formed \#pragma bss_seg().
400void Sema::ActOnPragmaMSSection(SourceLocation PragmaLocation,
401 int SectionFlags, StringLiteral *SegmentName) {
402 UnifySection(SegmentName->getString(), SectionFlags, PragmaLocation);
403}
404
Reid Kleckner1a711b12014-07-22 00:53:05 +0000405void Sema::ActOnPragmaMSInitSeg(SourceLocation PragmaLocation,
406 StringLiteral *SegmentName) {
407 // There's no stack to maintain, so we just have a current section. When we
408 // see the default section, reset our current section back to null so we stop
409 // tacking on unnecessary attributes.
410 CurInitSeg = SegmentName->getString() == ".CRT$XCU" ? nullptr : SegmentName;
411 CurInitSegLoc = PragmaLocation;
412}
413
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000414void Sema::ActOnPragmaUnused(const Token &IdTok, Scope *curScope,
415 SourceLocation PragmaLoc) {
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000416
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000417 IdentifierInfo *Name = IdTok.getIdentifierInfo();
418 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
Craig Topperc3ec1492014-05-26 06:22:03 +0000419 LookupParsedName(Lookup, curScope, nullptr, true);
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000420
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000421 if (Lookup.empty()) {
422 Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var)
423 << Name << SourceRange(IdTok.getLocation());
424 return;
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000425 }
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000426
427 VarDecl *VD = Lookup.getAsSingle<VarDecl>();
Argyrios Kyrtzidisff115a22011-01-27 18:16:48 +0000428 if (!VD) {
429 Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg)
Argyrios Kyrtzidisee569622011-01-17 18:58:44 +0000430 << Name << SourceRange(IdTok.getLocation());
431 return;
432 }
433
434 // Warn if this was used before being marked unused.
435 if (VD->isUsed())
436 Diag(PragmaLoc, diag::warn_used_but_marked_unused) << Name;
437
Aaron Ballman0bcd6c12016-03-09 16:48:08 +0000438 VD->addAttr(UnusedAttr::CreateImplicit(Context, UnusedAttr::GNU_unused,
439 IdTok.getLocation()));
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000440}
Eli Friedman570024a2010-08-05 06:57:20 +0000441
John McCall32f5fe12011-09-30 05:12:12 +0000442void Sema::AddCFAuditedAttribute(Decl *D) {
443 SourceLocation Loc = PP.getPragmaARCCFCodeAuditedLoc();
444 if (!Loc.isValid()) return;
445
446 // Don't add a redundant or conflicting attribute.
447 if (D->hasAttr<CFAuditedTransferAttr>() ||
448 D->hasAttr<CFUnknownTransferAttr>())
449 return;
450
Aaron Ballman36a53502014-01-16 13:03:14 +0000451 D->addAttr(CFAuditedTransferAttr::CreateImplicit(Context, Loc));
John McCall32f5fe12011-09-30 05:12:12 +0000452}
453
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000454namespace {
455
456Optional<attr::SubjectMatchRule>
457getParentAttrMatcherRule(attr::SubjectMatchRule Rule) {
458 using namespace attr;
459 switch (Rule) {
460 default:
461 return None;
462#define ATTR_MATCH_RULE(Value, Spelling, IsAbstract)
463#define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \
464 case Value: \
465 return Parent;
466#include "clang/Basic/AttrSubMatchRulesList.inc"
467 }
468}
469
470bool isNegatedAttrMatcherSubRule(attr::SubjectMatchRule Rule) {
471 using namespace attr;
472 switch (Rule) {
473 default:
474 return false;
475#define ATTR_MATCH_RULE(Value, Spelling, IsAbstract)
476#define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \
477 case Value: \
478 return IsNegated;
479#include "clang/Basic/AttrSubMatchRulesList.inc"
480 }
481}
482
483CharSourceRange replacementRangeForListElement(const Sema &S,
484 SourceRange Range) {
485 // Make sure that the ',' is removed as well.
486 SourceLocation AfterCommaLoc = Lexer::findLocationAfterToken(
487 Range.getEnd(), tok::comma, S.getSourceManager(), S.getLangOpts(),
488 /*SkipTrailingWhitespaceAndNewLine=*/false);
489 if (AfterCommaLoc.isValid())
490 return CharSourceRange::getCharRange(Range.getBegin(), AfterCommaLoc);
491 else
492 return CharSourceRange::getTokenRange(Range);
493}
494
495std::string
496attrMatcherRuleListToString(ArrayRef<attr::SubjectMatchRule> Rules) {
497 std::string Result;
498 llvm::raw_string_ostream OS(Result);
499 for (const auto &I : llvm::enumerate(Rules)) {
500 if (I.index())
501 OS << (I.index() == Rules.size() - 1 ? ", and " : ", ");
502 OS << "'" << attr::getSubjectMatchRuleSpelling(I.value()) << "'";
503 }
504 return OS.str();
505}
506
507} // end anonymous namespace
508
509void Sema::ActOnPragmaAttributePush(AttributeList &Attribute,
510 SourceLocation PragmaLoc,
511 attr::ParsedSubjectMatchRuleSet Rules) {
512 SmallVector<attr::SubjectMatchRule, 4> SubjectMatchRules;
513 // Gather the subject match rules that are supported by the attribute.
514 SmallVector<std::pair<attr::SubjectMatchRule, bool>, 4>
515 StrictSubjectMatchRuleSet;
516 Attribute.getMatchRules(LangOpts, StrictSubjectMatchRuleSet);
517
518 // Figure out which subject matching rules are valid.
519 if (StrictSubjectMatchRuleSet.empty()) {
520 // Check for contradicting match rules. Contradicting match rules are
521 // either:
522 // - a top-level rule and one of its sub-rules. E.g. variable and
523 // variable(is_parameter).
524 // - a sub-rule and a sibling that's negated. E.g.
525 // variable(is_thread_local) and variable(unless(is_parameter))
Alex Lorenz26b47652017-04-18 20:54:23 +0000526 llvm::SmallDenseMap<int, std::pair<int, SourceRange>, 2>
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000527 RulesToFirstSpecifiedNegatedSubRule;
528 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000529 attr::SubjectMatchRule MatchRule = attr::SubjectMatchRule(Rule.first);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000530 Optional<attr::SubjectMatchRule> ParentRule =
Alex Lorenz26b47652017-04-18 20:54:23 +0000531 getParentAttrMatcherRule(MatchRule);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000532 if (!ParentRule)
533 continue;
534 auto It = Rules.find(*ParentRule);
535 if (It != Rules.end()) {
536 // A sub-rule contradicts a parent rule.
537 Diag(Rule.second.getBegin(),
538 diag::err_pragma_attribute_matcher_subrule_contradicts_rule)
Alex Lorenz26b47652017-04-18 20:54:23 +0000539 << attr::getSubjectMatchRuleSpelling(MatchRule)
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000540 << attr::getSubjectMatchRuleSpelling(*ParentRule) << It->second
541 << FixItHint::CreateRemoval(
542 replacementRangeForListElement(*this, Rule.second));
543 // Keep going without removing this rule as it won't change the set of
544 // declarations that receive the attribute.
545 continue;
546 }
Alex Lorenz26b47652017-04-18 20:54:23 +0000547 if (isNegatedAttrMatcherSubRule(MatchRule))
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000548 RulesToFirstSpecifiedNegatedSubRule.insert(
549 std::make_pair(*ParentRule, Rule));
550 }
551 bool IgnoreNegatedSubRules = false;
552 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000553 attr::SubjectMatchRule MatchRule = attr::SubjectMatchRule(Rule.first);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000554 Optional<attr::SubjectMatchRule> ParentRule =
Alex Lorenz26b47652017-04-18 20:54:23 +0000555 getParentAttrMatcherRule(MatchRule);
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000556 if (!ParentRule)
557 continue;
558 auto It = RulesToFirstSpecifiedNegatedSubRule.find(*ParentRule);
559 if (It != RulesToFirstSpecifiedNegatedSubRule.end() &&
560 It->second != Rule) {
561 // Negated sub-rule contradicts another sub-rule.
562 Diag(
563 It->second.second.getBegin(),
564 diag::
565 err_pragma_attribute_matcher_negated_subrule_contradicts_subrule)
Alex Lorenz26b47652017-04-18 20:54:23 +0000566 << attr::getSubjectMatchRuleSpelling(
567 attr::SubjectMatchRule(It->second.first))
568 << attr::getSubjectMatchRuleSpelling(MatchRule) << Rule.second
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000569 << FixItHint::CreateRemoval(
570 replacementRangeForListElement(*this, It->second.second));
571 // Keep going but ignore all of the negated sub-rules.
572 IgnoreNegatedSubRules = true;
573 RulesToFirstSpecifiedNegatedSubRule.erase(It);
574 }
575 }
576
577 if (!IgnoreNegatedSubRules) {
578 for (const auto &Rule : Rules)
Alex Lorenz26b47652017-04-18 20:54:23 +0000579 SubjectMatchRules.push_back(attr::SubjectMatchRule(Rule.first));
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000580 } else {
581 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000582 if (!isNegatedAttrMatcherSubRule(attr::SubjectMatchRule(Rule.first)))
583 SubjectMatchRules.push_back(attr::SubjectMatchRule(Rule.first));
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000584 }
585 }
586 Rules.clear();
587 } else {
588 for (const auto &Rule : StrictSubjectMatchRuleSet) {
589 if (Rules.erase(Rule.first)) {
590 // Add the rule to the set of attribute receivers only if it's supported
591 // in the current language mode.
592 if (Rule.second)
593 SubjectMatchRules.push_back(Rule.first);
594 }
595 }
596 }
597
598 if (!Rules.empty()) {
599 auto Diagnostic =
600 Diag(PragmaLoc, diag::err_pragma_attribute_invalid_matchers)
601 << Attribute.getName();
602 SmallVector<attr::SubjectMatchRule, 2> ExtraRules;
603 for (const auto &Rule : Rules) {
Alex Lorenz26b47652017-04-18 20:54:23 +0000604 ExtraRules.push_back(attr::SubjectMatchRule(Rule.first));
Alex Lorenz9e7bf162017-04-18 14:33:39 +0000605 Diagnostic << FixItHint::CreateRemoval(
606 replacementRangeForListElement(*this, Rule.second));
607 }
608 Diagnostic << attrMatcherRuleListToString(ExtraRules);
609 }
610
611 PragmaAttributeStack.push_back(
612 {PragmaLoc, &Attribute, std::move(SubjectMatchRules), /*IsUsed=*/false});
613}
614
615void Sema::ActOnPragmaAttributePop(SourceLocation PragmaLoc) {
616 if (PragmaAttributeStack.empty()) {
617 Diag(PragmaLoc, diag::err_pragma_attribute_stack_mismatch);
618 return;
619 }
620 const PragmaAttributeEntry &Entry = PragmaAttributeStack.back();
621 if (!Entry.IsUsed) {
622 assert(Entry.Attribute && "Expected an attribute");
623 Diag(Entry.Attribute->getLoc(), diag::warn_pragma_attribute_unused)
624 << Entry.Attribute->getName();
625 Diag(PragmaLoc, diag::note_pragma_attribute_region_ends_here);
626 }
627 PragmaAttributeStack.pop_back();
628}
629
630void Sema::AddPragmaAttributes(Scope *S, Decl *D) {
631 if (PragmaAttributeStack.empty())
632 return;
633 for (auto &Entry : PragmaAttributeStack) {
634 const AttributeList *Attribute = Entry.Attribute;
635 assert(Attribute && "Expected an attribute");
636
637 // Ensure that the attribute can be applied to the given declaration.
638 bool Applies = false;
639 for (const auto &Rule : Entry.MatchRules) {
640 if (Attribute->appliesToDecl(D, Rule)) {
641 Applies = true;
642 break;
643 }
644 }
645 if (!Applies)
646 continue;
647 Entry.IsUsed = true;
648 assert(!Attribute->getNext() && "Expected just one attribute");
649 PragmaAttributeCurrentTargetDecl = D;
650 ProcessDeclAttributeList(S, D, Attribute);
651 PragmaAttributeCurrentTargetDecl = nullptr;
652 }
653}
654
655void Sema::PrintPragmaAttributeInstantiationPoint() {
656 assert(PragmaAttributeCurrentTargetDecl && "Expected an active declaration");
657 Diags.Report(PragmaAttributeCurrentTargetDecl->getLocStart(),
658 diag::note_pragma_attribute_applied_decl_here);
659}
660
661void Sema::DiagnoseUnterminatedPragmaAttribute() {
662 if (PragmaAttributeStack.empty())
663 return;
664 Diag(PragmaAttributeStack.back().Loc, diag::err_pragma_attribute_no_pop_eof);
665}
666
Dario Domizioli13a0a382014-05-23 12:13:25 +0000667void Sema::ActOnPragmaOptimize(bool On, SourceLocation PragmaLoc) {
668 if(On)
669 OptimizeOffPragmaLocation = SourceLocation();
670 else
671 OptimizeOffPragmaLocation = PragmaLoc;
672}
673
674void Sema::AddRangeBasedOptnone(FunctionDecl *FD) {
675 // In the future, check other pragmas if they're implemented (e.g. pragma
676 // optimize 0 will probably map to this functionality too).
677 if(OptimizeOffPragmaLocation.isValid())
678 AddOptnoneAttributeIfNoConflicts(FD, OptimizeOffPragmaLocation);
679}
680
681void Sema::AddOptnoneAttributeIfNoConflicts(FunctionDecl *FD,
682 SourceLocation Loc) {
683 // Don't add a conflicting attribute. No diagnostic is needed.
684 if (FD->hasAttr<MinSizeAttr>() || FD->hasAttr<AlwaysInlineAttr>())
685 return;
686
687 // Add attributes only if required. Optnone requires noinline as well, but if
688 // either is already present then don't bother adding them.
689 if (!FD->hasAttr<OptimizeNoneAttr>())
690 FD->addAttr(OptimizeNoneAttr::CreateImplicit(Context, Loc));
691 if (!FD->hasAttr<NoInlineAttr>())
692 FD->addAttr(NoInlineAttr::CreateImplicit(Context, Loc));
693}
694
John McCall2faf32c2010-12-10 02:59:44 +0000695typedef std::vector<std::pair<unsigned, SourceLocation> > VisStack;
Alp Tokerceb95c42014-03-02 03:20:16 +0000696enum : unsigned { NoVisibility = ~0U };
Eli Friedman570024a2010-08-05 06:57:20 +0000697
698void Sema::AddPushedVisibilityAttribute(Decl *D) {
699 if (!VisContext)
700 return;
701
Rafael Espindola54606d52012-12-25 07:31:49 +0000702 NamedDecl *ND = dyn_cast<NamedDecl>(D);
John McCalld041a9b2013-02-20 01:54:26 +0000703 if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue))
Eli Friedman570024a2010-08-05 06:57:20 +0000704 return;
705
706 VisStack *Stack = static_cast<VisStack*>(VisContext);
John McCall2faf32c2010-12-10 02:59:44 +0000707 unsigned rawType = Stack->back().first;
708 if (rawType == NoVisibility) return;
709
710 VisibilityAttr::VisibilityType type
711 = (VisibilityAttr::VisibilityType) rawType;
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000712 SourceLocation loc = Stack->back().second;
Eli Friedman570024a2010-08-05 06:57:20 +0000713
Aaron Ballman36a53502014-01-16 13:03:14 +0000714 D->addAttr(VisibilityAttr::CreateImplicit(Context, type, loc));
Eli Friedman570024a2010-08-05 06:57:20 +0000715}
716
717/// FreeVisContext - Deallocate and null out VisContext.
718void Sema::FreeVisContext() {
719 delete static_cast<VisStack*>(VisContext);
Craig Topperc3ec1492014-05-26 06:22:03 +0000720 VisContext = nullptr;
Eli Friedman570024a2010-08-05 06:57:20 +0000721}
722
John McCall2faf32c2010-12-10 02:59:44 +0000723static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) {
John McCallb1be5232010-08-26 09:15:37 +0000724 // Put visibility on stack.
725 if (!S.VisContext)
726 S.VisContext = new VisStack;
727
728 VisStack *Stack = static_cast<VisStack*>(S.VisContext);
729 Stack->push_back(std::make_pair(type, loc));
730}
731
Rafael Espindolade15baf2012-01-21 05:43:40 +0000732void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType,
Eli Friedman570024a2010-08-05 06:57:20 +0000733 SourceLocation PragmaLoc) {
Rafael Espindolade15baf2012-01-21 05:43:40 +0000734 if (VisType) {
Eli Friedman570024a2010-08-05 06:57:20 +0000735 // Compute visibility to use.
Aaron Ballman682ee422013-09-11 19:47:58 +0000736 VisibilityAttr::VisibilityType T;
737 if (!VisibilityAttr::ConvertStrToVisibilityType(VisType->getName(), T)) {
738 Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) << VisType;
Eli Friedman570024a2010-08-05 06:57:20 +0000739 return;
740 }
Aaron Ballman682ee422013-09-11 19:47:58 +0000741 PushPragmaVisibility(*this, T, PragmaLoc);
Eli Friedman570024a2010-08-05 06:57:20 +0000742 } else {
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000743 PopPragmaVisibility(false, PragmaLoc);
Eli Friedman570024a2010-08-05 06:57:20 +0000744 }
745}
746
Adam Nemet60d32642017-04-04 21:18:36 +0000747void Sema::ActOnPragmaFPContract(LangOptions::FPContractModeKind FPC) {
748 switch (FPC) {
749 case LangOptions::FPC_On:
Adam Nemet049a31d2017-03-29 21:54:24 +0000750 FPFeatures.setAllowFPContractWithinStatement();
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000751 break;
Adam Nemet60d32642017-04-04 21:18:36 +0000752 case LangOptions::FPC_Fast:
753 FPFeatures.setAllowFPContractAcrossStatement();
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000754 break;
Adam Nemet60d32642017-04-04 21:18:36 +0000755 case LangOptions::FPC_Off:
756 FPFeatures.setDisallowFPContract();
Peter Collingbourne564c0fa2011-02-14 01:42:35 +0000757 break;
758 }
759}
760
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000761void Sema::PushNamespaceVisibilityAttr(const VisibilityAttr *Attr,
762 SourceLocation Loc) {
John McCall2faf32c2010-12-10 02:59:44 +0000763 // Visibility calculations will consider the namespace's visibility.
764 // Here we just want to note that we're in a visibility context
765 // which overrides any enclosing #pragma context, but doesn't itself
766 // contribute visibility.
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000767 PushPragmaVisibility(*this, NoVisibility, Loc);
Eli Friedman570024a2010-08-05 06:57:20 +0000768}
769
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000770void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) {
771 if (!VisContext) {
772 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
773 return;
Eli Friedman570024a2010-08-05 06:57:20 +0000774 }
Rafael Espindola6d65d7b2012-02-01 23:24:59 +0000775
776 // Pop visibility from stack
777 VisStack *Stack = static_cast<VisStack*>(VisContext);
778
779 const std::pair<unsigned, SourceLocation> *Back = &Stack->back();
780 bool StartsWithPragma = Back->first != NoVisibility;
781 if (StartsWithPragma && IsNamespaceEnd) {
782 Diag(Back->second, diag::err_pragma_push_visibility_mismatch);
783 Diag(EndLoc, diag::note_surrounding_namespace_ends_here);
784
785 // For better error recovery, eat all pushes inside the namespace.
786 do {
787 Stack->pop_back();
788 Back = &Stack->back();
789 StartsWithPragma = Back->first != NoVisibility;
790 } while (StartsWithPragma);
791 } else if (!StartsWithPragma && !IsNamespaceEnd) {
792 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
793 Diag(Back->second, diag::note_surrounding_namespace_starts_here);
794 return;
795 }
796
797 Stack->pop_back();
798 // To simplify the implementation, never keep around an empty stack.
799 if (Stack->empty())
800 FreeVisContext();
Eli Friedman570024a2010-08-05 06:57:20 +0000801}