Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 1 | //===--- SemaAttr.cpp - Semantic Analysis for Attributes ------------------===// |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 31180bb | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 10 | // This file implements semantic analysis for non-trivial attributes and |
| 11 | // pragmas. |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
John McCall | 8302463 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 15 | #include "clang/Sema/SemaInternal.h" |
Reid Kleckner | e43f0fe | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTConsumer.h" |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 17 | #include "clang/AST/Attr.h" |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 18 | #include "clang/AST/Expr.h" |
Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 19 | #include "clang/Basic/TargetInfo.h" |
| 20 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "clang/Sema/Lookup.h" |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
Chris Lattner | 31180bb | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 24 | //===----------------------------------------------------------------------===// |
Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 25 | // Pragma 'pack' and 'options align' |
Chris Lattner | 31180bb | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 26 | //===----------------------------------------------------------------------===// |
| 27 | |
Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 28 | Sema::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 | |
| 41 | Sema::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 Lattner | 31180bb | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 50 | |
Daniel Dunbar | 8804f2e | 2010-05-27 01:53:40 +0000 | [diff] [blame] | 51 | void Sema::AddAlignmentAttributesForRecord(RecordDecl *RD) { |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 52 | // If there is no pack value, we don't need any attributes. |
| 53 | if (!PackStack.CurrentValue) |
Daniel Dunbar | 8804f2e | 2010-05-27 01:53:40 +0000 | [diff] [blame] | 54 | return; |
| 55 | |
Daniel Dunbar | 8804f2e | 2010-05-27 01:53:40 +0000 | [diff] [blame] | 56 | // Otherwise, check to see if we need a max field alignment attribute. |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 57 | if (unsigned Alignment = PackStack.CurrentValue) { |
| 58 | if (Alignment == Sema::kMac68kAlignmentSentinel) |
Aaron Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 59 | RD->addAttr(AlignMac68kAttr::CreateImplicit(Context)); |
Daniel Dunbar | 6da1098 | 2010-05-27 05:45:51 +0000 | [diff] [blame] | 60 | else |
Aaron Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 61 | RD->addAttr(MaxFieldAlignmentAttr::CreateImplicit(Context, |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 62 | Alignment * 8)); |
Daniel Dunbar | 6da1098 | 2010-05-27 05:45:51 +0000 | [diff] [blame] | 63 | } |
Chris Lattner | 31180bb | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Fariborz Jahanian | 6b4e26b | 2011-04-26 17:54:40 +0000 | [diff] [blame] | 66 | void Sema::AddMsStructLayoutForRecord(RecordDecl *RD) { |
Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 67 | if (MSStructPragmaOn) |
David Majnemer | 8ab003a | 2015-02-02 19:30:52 +0000 | [diff] [blame] | 68 | RD->addAttr(MSStructAttr::CreateImplicit(Context)); |
Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 69 | |
| 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 Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 73 | if (VtorDispStack.CurrentValue != getLangOpts().VtorDispMode) |
Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 74 | RD->addAttr( |
Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 75 | MSVtorDispAttr::CreateImplicit(Context, VtorDispStack.CurrentValue)); |
Fariborz Jahanian | 6b4e26b | 2011-04-26 17:54:40 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 78 | void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind, |
Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 79 | SourceLocation PragmaLoc) { |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 80 | PragmaMsStackAction Action = Sema::PSK_Reset; |
| 81 | unsigned Alignment; |
Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 82 | switch (Kind) { |
Daniel Dunbar | 663e809 | 2010-05-27 18:42:09 +0000 | [diff] [blame] | 83 | // 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 Dunbar | 5794c6f | 2010-05-28 19:43:33 +0000 | [diff] [blame] | 87 | case POAK_Power: |
Daniel Dunbar | a688566 | 2010-05-28 20:08:00 +0000 | [diff] [blame] | 88 | case POAK_Natural: |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 89 | Action = Sema::PSK_Push_Set; |
| 90 | Alignment = 0; |
Daniel Dunbar | 5794c6f | 2010-05-28 19:43:33 +0000 | [diff] [blame] | 91 | break; |
| 92 | |
Daniel Dunbar | 9c84d4a | 2010-05-27 18:42:17 +0000 | [diff] [blame] | 93 | // 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 Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 96 | Action = Sema::PSK_Push_Set; |
| 97 | Alignment = 1; |
Daniel Dunbar | 9c84d4a | 2010-05-27 18:42:17 +0000 | [diff] [blame] | 98 | break; |
| 99 | |
Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 100 | case POAK_Mac68k: |
| 101 | // Check if the target supports this. |
Alp Toker | b6cc592 | 2014-05-03 03:45:55 +0000 | [diff] [blame] | 102 | if (!this->Context.getTargetInfo().hasAlignMac68kSupport()) { |
Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 103 | Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported); |
| 104 | return; |
Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 105 | } |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 106 | Action = Sema::PSK_Push_Set; |
| 107 | Alignment = Sema::kMac68kAlignmentSentinel; |
Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 108 | break; |
| 109 | |
Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 110 | case POAK_Reset: |
| 111 | // Reset just pops the top of the stack, or resets the current alignment to |
| 112 | // default. |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 113 | 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 Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 122 | } |
Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 123 | break; |
| 124 | } |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 125 | |
| 126 | PackStack.Act(PragmaLoc, Action, StringRef(), Alignment); |
Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 129 | void Sema::ActOnPragmaPack(SourceLocation PragmaLoc, PragmaMsStackAction Action, |
| 130 | StringRef SlotLabel, Expr *alignment) { |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 131 | 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | |
Daniel Dunbar | e03c610 | 2009-03-06 20:45:54 +0000 | [diff] [blame] | 138 | // pack(0) is like pack(), which just works out since that is what |
| 139 | // we use 0 for in PackAttr. |
Douglas Gregor | bdb604a | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 140 | if (Alignment->isTypeDependent() || |
| 141 | Alignment->isValueDependent() || |
| 142 | !Alignment->isIntegerConstantExpr(Val, Context) || |
Daniel Dunbar | e03c610 | 2009-03-06 20:45:54 +0000 | [diff] [blame] | 143 | !(Val == 0 || Val.isPowerOf2()) || |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 144 | Val.getZExtValue() > 16) { |
| 145 | Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment); |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 146 | return; // Ignore |
| 147 | } |
| 148 | |
| 149 | AlignmentVal = (unsigned) Val.getZExtValue(); |
| 150 | } |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 151 | if (Action == Sema::PSK_Show) { |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 152 | // Show the current alignment, making sure to show the right value |
| 153 | // for the default. |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 154 | // FIXME: This should come from the target. |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 155 | AlignmentVal = PackStack.CurrentValue; |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 156 | if (AlignmentVal == 0) |
| 157 | AlignmentVal = 8; |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 158 | if (AlignmentVal == Sema::kMac68kAlignmentSentinel) |
Daniel Dunbar | 6da1098 | 2010-05-27 05:45:51 +0000 | [diff] [blame] | 159 | Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k"; |
| 160 | else |
| 161 | Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal; |
Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 162 | } |
Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame^] | 163 | // 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 Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Fariborz Jahanian | 743dda4 | 2011-04-25 18:49:15 +0000 | [diff] [blame] | 175 | void Sema::ActOnPragmaMSStruct(PragmaMSStructKind Kind) { |
| 176 | MSStructPragmaOn = (Kind == PMSST_ON); |
| 177 | } |
| 178 | |
Nico Weber | 6622029 | 2016-03-02 17:28:48 +0000 | [diff] [blame] | 179 | void 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 Kleckner | e43f0fe | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Nico Weber | cbbaeb1 | 2016-03-02 19:28:54 +0000 | [diff] [blame] | 187 | void 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 Ballman | 5d041be | 2013-06-04 02:07:14 +0000 | [diff] [blame] | 193 | } |
| 194 | |
David Majnemer | 4bb0980 | 2014-02-10 19:50:15 +0000 | [diff] [blame] | 195 | void Sema::ActOnPragmaMSPointersToMembers( |
David Majnemer | 86c318f | 2014-02-11 21:05:00 +0000 | [diff] [blame] | 196 | LangOptions::PragmaMSPointersToMembersKind RepresentationMethod, |
David Majnemer | 4bb0980 | 2014-02-10 19:50:15 +0000 | [diff] [blame] | 197 | SourceLocation PragmaLoc) { |
| 198 | MSPointerToMemberRepresentationMethod = RepresentationMethod; |
| 199 | ImplicitMSInheritanceAttrLoc = PragmaLoc; |
| 200 | } |
| 201 | |
Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 202 | void Sema::ActOnPragmaMSVtorDisp(PragmaMsStackAction Action, |
Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 203 | SourceLocation PragmaLoc, |
| 204 | MSVtorDispAttr::Mode Mode) { |
Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 205 | 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 Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 211 | template<typename ValueType> |
| 212 | void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation, |
| 213 | PragmaMsStackAction Action, |
| 214 | llvm::StringRef StackSlotLabel, |
| 215 | ValueType Value) { |
| 216 | if (Action == PSK_Reset) { |
Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 217 | CurrentValue = DefaultValue; |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 218 | 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 Topper | bf3e327 | 2014-08-30 16:55:52 +0000 | [diff] [blame] | 246 | bool Sema::UnifySection(StringRef SectionName, |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 247 | int SectionFlags, |
| 248 | DeclaratorDecl *Decl) { |
Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 249 | auto Section = Context.SectionInfos.find(SectionName); |
| 250 | if (Section == Context.SectionInfos.end()) { |
| 251 | Context.SectionInfos[SectionName] = |
| 252 | ASTContext::SectionInfo(Decl, SourceLocation(), SectionFlags); |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 253 | return false; |
| 254 | } |
| 255 | // A pre-declared section takes precedence w/o diagnostic. |
| 256 | if (Section->second.SectionFlags == SectionFlags || |
Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 257 | !(Section->second.SectionFlags & ASTContext::PSF_Implicit)) |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 258 | 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 Akhgari | 0b51060 | 2014-09-22 19:46:39 +0000 | [diff] [blame] | 270 | return true; |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 271 | } |
| 272 | |
Craig Topper | bf3e327 | 2014-08-30 16:55:52 +0000 | [diff] [blame] | 273 | bool Sema::UnifySection(StringRef SectionName, |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 274 | int SectionFlags, |
| 275 | SourceLocation PragmaSectionLocation) { |
Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 276 | auto Section = Context.SectionInfos.find(SectionName); |
| 277 | if (Section != Context.SectionInfos.end()) { |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 278 | if (Section->second.SectionFlags == SectionFlags) |
| 279 | return false; |
Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 280 | if (!(Section->second.SectionFlags & ASTContext::PSF_Implicit)) { |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 281 | 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 Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 288 | Context.SectionInfos[SectionName] = |
| 289 | ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags); |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 290 | return false; |
| 291 | } |
| 292 | |
| 293 | /// \brief Called on well formed \#pragma bss_seg(). |
| 294 | void 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 Kleckner | 2a13322 | 2015-03-04 23:39:17 +0000 | [diff] [blame] | 308 | if (SegmentName && |
| 309 | !checkSectionName(SegmentName->getLocStart(), SegmentName->getString())) |
| 310 | return; |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 311 | Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName); |
| 312 | } |
| 313 | |
| 314 | /// \brief Called on well formed \#pragma bss_seg(). |
| 315 | void Sema::ActOnPragmaMSSection(SourceLocation PragmaLocation, |
| 316 | int SectionFlags, StringLiteral *SegmentName) { |
| 317 | UnifySection(SegmentName->getString(), SectionFlags, PragmaLocation); |
| 318 | } |
| 319 | |
Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 320 | void 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 Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 329 | void Sema::ActOnPragmaUnused(const Token &IdTok, Scope *curScope, |
| 330 | SourceLocation PragmaLoc) { |
Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 331 | |
Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 332 | IdentifierInfo *Name = IdTok.getIdentifierInfo(); |
| 333 | LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 334 | LookupParsedName(Lookup, curScope, nullptr, true); |
Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 335 | |
Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 336 | if (Lookup.empty()) { |
| 337 | Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var) |
| 338 | << Name << SourceRange(IdTok.getLocation()); |
| 339 | return; |
Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 340 | } |
Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 341 | |
| 342 | VarDecl *VD = Lookup.getAsSingle<VarDecl>(); |
Argyrios Kyrtzidis | ff115a2 | 2011-01-27 18:16:48 +0000 | [diff] [blame] | 343 | if (!VD) { |
| 344 | Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg) |
Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 345 | << 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 Ballman | 0bcd6c1 | 2016-03-09 16:48:08 +0000 | [diff] [blame] | 353 | VD->addAttr(UnusedAttr::CreateImplicit(Context, UnusedAttr::GNU_unused, |
| 354 | IdTok.getLocation())); |
Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 355 | } |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 356 | |
John McCall | 32f5fe1 | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 357 | void 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 Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 366 | D->addAttr(CFAuditedTransferAttr::CreateImplicit(Context, Loc)); |
John McCall | 32f5fe1 | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Dario Domizioli | 13a0a38 | 2014-05-23 12:13:25 +0000 | [diff] [blame] | 369 | void Sema::ActOnPragmaOptimize(bool On, SourceLocation PragmaLoc) { |
| 370 | if(On) |
| 371 | OptimizeOffPragmaLocation = SourceLocation(); |
| 372 | else |
| 373 | OptimizeOffPragmaLocation = PragmaLoc; |
| 374 | } |
| 375 | |
| 376 | void 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 | |
| 383 | void 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 McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 397 | typedef std::vector<std::pair<unsigned, SourceLocation> > VisStack; |
Alp Toker | ceb95c4 | 2014-03-02 03:20:16 +0000 | [diff] [blame] | 398 | enum : unsigned { NoVisibility = ~0U }; |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 399 | |
| 400 | void Sema::AddPushedVisibilityAttribute(Decl *D) { |
| 401 | if (!VisContext) |
| 402 | return; |
| 403 | |
Rafael Espindola | 54606d5 | 2012-12-25 07:31:49 +0000 | [diff] [blame] | 404 | NamedDecl *ND = dyn_cast<NamedDecl>(D); |
John McCall | d041a9b | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 405 | if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue)) |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 406 | return; |
| 407 | |
| 408 | VisStack *Stack = static_cast<VisStack*>(VisContext); |
John McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 409 | unsigned rawType = Stack->back().first; |
| 410 | if (rawType == NoVisibility) return; |
| 411 | |
| 412 | VisibilityAttr::VisibilityType type |
| 413 | = (VisibilityAttr::VisibilityType) rawType; |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 414 | SourceLocation loc = Stack->back().second; |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 415 | |
Aaron Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 416 | D->addAttr(VisibilityAttr::CreateImplicit(Context, type, loc)); |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | /// FreeVisContext - Deallocate and null out VisContext. |
| 420 | void Sema::FreeVisContext() { |
| 421 | delete static_cast<VisStack*>(VisContext); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 422 | VisContext = nullptr; |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 423 | } |
| 424 | |
John McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 425 | static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) { |
John McCall | b1be523 | 2010-08-26 09:15:37 +0000 | [diff] [blame] | 426 | // 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 Espindola | de15baf | 2012-01-21 05:43:40 +0000 | [diff] [blame] | 434 | void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType, |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 435 | SourceLocation PragmaLoc) { |
Rafael Espindola | de15baf | 2012-01-21 05:43:40 +0000 | [diff] [blame] | 436 | if (VisType) { |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 437 | // Compute visibility to use. |
Aaron Ballman | 682ee42 | 2013-09-11 19:47:58 +0000 | [diff] [blame] | 438 | VisibilityAttr::VisibilityType T; |
| 439 | if (!VisibilityAttr::ConvertStrToVisibilityType(VisType->getName(), T)) { |
| 440 | Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) << VisType; |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 441 | return; |
| 442 | } |
Aaron Ballman | 682ee42 | 2013-09-11 19:47:58 +0000 | [diff] [blame] | 443 | PushPragmaVisibility(*this, T, PragmaLoc); |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 444 | } else { |
Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 445 | PopPragmaVisibility(false, PragmaLoc); |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 446 | } |
| 447 | } |
| 448 | |
Peter Collingbourne | 564c0fa | 2011-02-14 01:42:35 +0000 | [diff] [blame] | 449 | void 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 Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 458 | FPFeatures.fp_contract = getLangOpts().DefaultFPContract; |
Peter Collingbourne | 564c0fa | 2011-02-14 01:42:35 +0000 | [diff] [blame] | 459 | break; |
| 460 | } |
| 461 | } |
| 462 | |
Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 463 | void Sema::PushNamespaceVisibilityAttr(const VisibilityAttr *Attr, |
| 464 | SourceLocation Loc) { |
John McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 465 | // 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 Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 469 | PushPragmaVisibility(*this, NoVisibility, Loc); |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 470 | } |
| 471 | |
Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 472 | void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) { |
| 473 | if (!VisContext) { |
| 474 | Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch); |
| 475 | return; |
Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 476 | } |
Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 477 | |
| 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 Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 503 | } |