| 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 | |
| Reid Kleckner | e43f0fe | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTConsumer.h" |
| Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 16 | #include "clang/AST/Attr.h" |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 17 | #include "clang/AST/Expr.h" |
| Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 18 | #include "clang/Basic/TargetInfo.h" |
| 19 | #include "clang/Lex/Preprocessor.h" |
| Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/Sema/Lookup.h" |
| Mehdi Amini | 9670f84 | 2016-07-18 19:02:11 +0000 | [diff] [blame] | 21 | #include "clang/Sema/SemaInternal.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 | } |
| Alex Lorenz | 45b4014 | 2017-07-28 14:41:21 +0000 | [diff] [blame] | 64 | 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 Lattner | 31180bb | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| Fariborz Jahanian | 6b4e26b | 2011-04-26 17:54:40 +0000 | [diff] [blame] | 77 | void Sema::AddMsStructLayoutForRecord(RecordDecl *RD) { |
| Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 78 | if (MSStructPragmaOn) |
| David Majnemer | 8ab003a | 2015-02-02 19:30:52 +0000 | [diff] [blame] | 79 | RD->addAttr(MSStructAttr::CreateImplicit(Context)); |
| Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 80 | |
| 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 Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 84 | if (VtorDispStack.CurrentValue != getLangOpts().VtorDispMode) |
| Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 85 | RD->addAttr( |
| Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 86 | MSVtorDispAttr::CreateImplicit(Context, VtorDispStack.CurrentValue)); |
| Fariborz Jahanian | 6b4e26b | 2011-04-26 17:54:40 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 89 | void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind, |
| Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 90 | SourceLocation PragmaLoc) { |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 91 | PragmaMsStackAction Action = Sema::PSK_Reset; |
| Denis Zobnin | 3f287c2 | 2016-04-29 22:50:16 +0000 | [diff] [blame] | 92 | unsigned Alignment = 0; |
| Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 93 | switch (Kind) { |
| Daniel Dunbar | 663e809 | 2010-05-27 18:42:09 +0000 | [diff] [blame] | 94 | // 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 Dunbar | 5794c6f | 2010-05-28 19:43:33 +0000 | [diff] [blame] | 98 | case POAK_Power: |
| Daniel Dunbar | a688566 | 2010-05-28 20:08:00 +0000 | [diff] [blame] | 99 | case POAK_Natural: |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 100 | Action = Sema::PSK_Push_Set; |
| 101 | Alignment = 0; |
| Daniel Dunbar | 5794c6f | 2010-05-28 19:43:33 +0000 | [diff] [blame] | 102 | break; |
| 103 | |
| Daniel Dunbar | 9c84d4a | 2010-05-27 18:42:17 +0000 | [diff] [blame] | 104 | // 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 Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 107 | Action = Sema::PSK_Push_Set; |
| 108 | Alignment = 1; |
| Daniel Dunbar | 9c84d4a | 2010-05-27 18:42:17 +0000 | [diff] [blame] | 109 | break; |
| 110 | |
| Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 111 | case POAK_Mac68k: |
| 112 | // Check if the target supports this. |
| Alp Toker | b6cc592 | 2014-05-03 03:45:55 +0000 | [diff] [blame] | 113 | if (!this->Context.getTargetInfo().hasAlignMac68kSupport()) { |
| Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 114 | Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported); |
| 115 | return; |
| Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 116 | } |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 117 | Action = Sema::PSK_Push_Set; |
| 118 | Alignment = Sema::kMac68kAlignmentSentinel; |
| Daniel Dunbar | bd60652 | 2010-05-27 00:35:16 +0000 | [diff] [blame] | 119 | break; |
| 120 | |
| Eli Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 121 | case POAK_Reset: |
| 122 | // Reset just pops the top of the stack, or resets the current alignment to |
| 123 | // default. |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 124 | 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 Friedman | 68be164 | 2012-10-04 02:36:51 +0000 | [diff] [blame] | 133 | } |
| Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 134 | break; |
| 135 | } |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 136 | |
| 137 | PackStack.Act(PragmaLoc, Action, StringRef(), Alignment); |
| Daniel Dunbar | 69dac58 | 2010-05-27 00:04:40 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| Javed Absar | 2a67c9e | 2017-06-05 10:11:57 +0000 | [diff] [blame] | 140 | void 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 Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 170 | void Sema::ActOnPragmaPack(SourceLocation PragmaLoc, PragmaMsStackAction Action, |
| 171 | StringRef SlotLabel, Expr *alignment) { |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 172 | 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 178 | |
| Daniel Dunbar | e03c610 | 2009-03-06 20:45:54 +0000 | [diff] [blame] | 179 | // pack(0) is like pack(), which just works out since that is what |
| 180 | // we use 0 for in PackAttr. |
| Douglas Gregor | bdb604a | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 181 | if (Alignment->isTypeDependent() || |
| 182 | Alignment->isValueDependent() || |
| 183 | !Alignment->isIntegerConstantExpr(Val, Context) || |
| Daniel Dunbar | e03c610 | 2009-03-06 20:45:54 +0000 | [diff] [blame] | 184 | !(Val == 0 || Val.isPowerOf2()) || |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 185 | Val.getZExtValue() > 16) { |
| 186 | Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment); |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 187 | return; // Ignore |
| 188 | } |
| 189 | |
| 190 | AlignmentVal = (unsigned) Val.getZExtValue(); |
| 191 | } |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 192 | if (Action == Sema::PSK_Show) { |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 193 | // Show the current alignment, making sure to show the right value |
| 194 | // for the default. |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 195 | // FIXME: This should come from the target. |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 196 | AlignmentVal = PackStack.CurrentValue; |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 197 | if (AlignmentVal == 0) |
| 198 | AlignmentVal = 8; |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 199 | if (AlignmentVal == Sema::kMac68kAlignmentSentinel) |
| Daniel Dunbar | 6da1098 | 2010-05-27 05:45:51 +0000 | [diff] [blame] | 200 | Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k"; |
| 201 | else |
| 202 | Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal; |
| Chris Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 203 | } |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 204 | // 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 Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 208 | Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifier_and_alignment); |
| Denis Zobnin | 10c4f45 | 2016-04-29 18:17:40 +0000 | [diff] [blame] | 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 Lattner | 2eccbc1 | 2009-02-17 00:57:29 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| Alex Lorenz | 45b4014 | 2017-07-28 14:41:21 +0000 | [diff] [blame] | 216 | void 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 | |
| 250 | void Sema::DiagnoseUnterminatedPragmaPack() { |
| 251 | if (PackStack.Stack.empty()) |
| 252 | return; |
| Alex Lorenz | a1479d7 | 2017-07-31 13:37:50 +0000 | [diff] [blame] | 253 | bool IsInnermost = true; |
| 254 | for (const auto &StackSlot : llvm::reverse(PackStack.Stack)) { |
| Alex Lorenz | 45b4014 | 2017-07-28 14:41:21 +0000 | [diff] [blame] | 255 | Diag(StackSlot.PragmaPushLocation, diag::warn_pragma_pack_no_pop_eof); |
| Alex Lorenz | a1479d7 | 2017-07-31 13:37:50 +0000 | [diff] [blame] | 256 | // 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 Lorenz | 45b4014 | 2017-07-28 14:41:21 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| Fariborz Jahanian | 743dda4 | 2011-04-25 18:49:15 +0000 | [diff] [blame] | 271 | void Sema::ActOnPragmaMSStruct(PragmaMSStructKind Kind) { |
| 272 | MSStructPragmaOn = (Kind == PMSST_ON); |
| 273 | } |
| 274 | |
| Nico Weber | 6622029 | 2016-03-02 17:28:48 +0000 | [diff] [blame] | 275 | void 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 Kleckner | e43f0fe | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 281 | } |
| 282 | |
| Nico Weber | cbbaeb1 | 2016-03-02 19:28:54 +0000 | [diff] [blame] | 283 | void 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 Ballman | 5d041be | 2013-06-04 02:07:14 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| David Majnemer | 4bb0980 | 2014-02-10 19:50:15 +0000 | [diff] [blame] | 291 | void Sema::ActOnPragmaMSPointersToMembers( |
| David Majnemer | 86c318f | 2014-02-11 21:05:00 +0000 | [diff] [blame] | 292 | LangOptions::PragmaMSPointersToMembersKind RepresentationMethod, |
| David Majnemer | 4bb0980 | 2014-02-10 19:50:15 +0000 | [diff] [blame] | 293 | SourceLocation PragmaLoc) { |
| 294 | MSPointerToMemberRepresentationMethod = RepresentationMethod; |
| 295 | ImplicitMSInheritanceAttrLoc = PragmaLoc; |
| 296 | } |
| 297 | |
| Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 298 | void Sema::ActOnPragmaMSVtorDisp(PragmaMsStackAction Action, |
| Reid Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 299 | SourceLocation PragmaLoc, |
| 300 | MSVtorDispAttr::Mode Mode) { |
| Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 301 | 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 Kleckner | c0dca6d | 2014-02-12 23:50:26 +0000 | [diff] [blame] | 305 | } |
| 306 | |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 307 | template<typename ValueType> |
| 308 | void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation, |
| 309 | PragmaMsStackAction Action, |
| 310 | llvm::StringRef StackSlotLabel, |
| 311 | ValueType Value) { |
| 312 | if (Action == PSK_Reset) { |
| Denis Zobnin | 2290dac | 2016-04-29 11:27:00 +0000 | [diff] [blame] | 313 | CurrentValue = DefaultValue; |
| Alex Lorenz | 7d7e1e0 | 2017-03-31 15:36:21 +0000 | [diff] [blame] | 314 | CurrentPragmaLocation = PragmaLocation; |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 315 | return; |
| 316 | } |
| 317 | if (Action & PSK_Push) |
| Alex Lorenz | 45b4014 | 2017-07-28 14:41:21 +0000 | [diff] [blame] | 318 | Stack.emplace_back(StackSlotLabel, CurrentValue, CurrentPragmaLocation, |
| 319 | PragmaLocation); |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 320 | else if (Action & PSK_Pop) { |
| 321 | if (!StackSlotLabel.empty()) { |
| 322 | // If we've got a label, try to find it and jump there. |
| David Majnemer | f7e3609 | 2016-06-23 00:15:04 +0000 | [diff] [blame] | 323 | auto I = llvm::find_if(llvm::reverse(Stack), [&](const Slot &x) { |
| 324 | return x.StackSlotLabel == StackSlotLabel; |
| 325 | }); |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 326 | // 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 Topper | bf3e327 | 2014-08-30 16:55:52 +0000 | [diff] [blame] | 345 | bool Sema::UnifySection(StringRef SectionName, |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 346 | int SectionFlags, |
| 347 | DeclaratorDecl *Decl) { |
| Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 348 | auto Section = Context.SectionInfos.find(SectionName); |
| 349 | if (Section == Context.SectionInfos.end()) { |
| 350 | Context.SectionInfos[SectionName] = |
| 351 | ASTContext::SectionInfo(Decl, SourceLocation(), SectionFlags); |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 352 | return false; |
| 353 | } |
| 354 | // A pre-declared section takes precedence w/o diagnostic. |
| 355 | if (Section->second.SectionFlags == SectionFlags || |
| Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 356 | !(Section->second.SectionFlags & ASTContext::PSF_Implicit)) |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 357 | 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 Akhgari | 0b51060 | 2014-09-22 19:46:39 +0000 | [diff] [blame] | 369 | return true; |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 370 | } |
| 371 | |
| Craig Topper | bf3e327 | 2014-08-30 16:55:52 +0000 | [diff] [blame] | 372 | bool Sema::UnifySection(StringRef SectionName, |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 373 | int SectionFlags, |
| 374 | SourceLocation PragmaSectionLocation) { |
| Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 375 | auto Section = Context.SectionInfos.find(SectionName); |
| 376 | if (Section != Context.SectionInfos.end()) { |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 377 | if (Section->second.SectionFlags == SectionFlags) |
| 378 | return false; |
| Hans Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 379 | if (!(Section->second.SectionFlags & ASTContext::PSF_Implicit)) { |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 380 | 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 Wennborg | 899ded9 | 2014-10-16 20:52:46 +0000 | [diff] [blame] | 387 | Context.SectionInfos[SectionName] = |
| 388 | ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags); |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 389 | return false; |
| 390 | } |
| 391 | |
| 392 | /// \brief Called on well formed \#pragma bss_seg(). |
| 393 | void 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 Kleckner | 2a13322 | 2015-03-04 23:39:17 +0000 | [diff] [blame] | 407 | if (SegmentName && |
| 408 | !checkSectionName(SegmentName->getLocStart(), SegmentName->getString())) |
| 409 | return; |
| Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 410 | Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName); |
| 411 | } |
| 412 | |
| 413 | /// \brief Called on well formed \#pragma bss_seg(). |
| 414 | void Sema::ActOnPragmaMSSection(SourceLocation PragmaLocation, |
| 415 | int SectionFlags, StringLiteral *SegmentName) { |
| 416 | UnifySection(SegmentName->getString(), SectionFlags, PragmaLocation); |
| 417 | } |
| 418 | |
| Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 419 | void 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 Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 428 | void Sema::ActOnPragmaUnused(const Token &IdTok, Scope *curScope, |
| 429 | SourceLocation PragmaLoc) { |
| Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 430 | |
| Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 431 | IdentifierInfo *Name = IdTok.getIdentifierInfo(); |
| 432 | LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName); |
| Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 433 | LookupParsedName(Lookup, curScope, nullptr, true); |
| Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 434 | |
| Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 435 | if (Lookup.empty()) { |
| 436 | Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var) |
| 437 | << Name << SourceRange(IdTok.getLocation()); |
| 438 | return; |
| Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 439 | } |
| Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 440 | |
| 441 | VarDecl *VD = Lookup.getAsSingle<VarDecl>(); |
| Argyrios Kyrtzidis | ff115a2 | 2011-01-27 18:16:48 +0000 | [diff] [blame] | 442 | if (!VD) { |
| 443 | Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg) |
| Argyrios Kyrtzidis | ee56962 | 2011-01-17 18:58:44 +0000 | [diff] [blame] | 444 | << 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 Ballman | 0bcd6c1 | 2016-03-09 16:48:08 +0000 | [diff] [blame] | 452 | VD->addAttr(UnusedAttr::CreateImplicit(Context, UnusedAttr::GNU_unused, |
| 453 | IdTok.getLocation())); |
| Ted Kremenek | fd14fad | 2009-03-23 22:28:25 +0000 | [diff] [blame] | 454 | } |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 455 | |
| John McCall | 32f5fe1 | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 456 | void 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 Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 465 | D->addAttr(CFAuditedTransferAttr::CreateImplicit(Context, Loc)); |
| John McCall | 32f5fe1 | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 466 | } |
| 467 | |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 468 | namespace { |
| 469 | |
| 470 | Optional<attr::SubjectMatchRule> |
| 471 | getParentAttrMatcherRule(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 | |
| 484 | bool 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 | |
| 497 | CharSourceRange 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 | |
| 509 | std::string |
| 510 | attrMatcherRuleListToString(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 | |
| 523 | void 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 Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 540 | llvm::SmallDenseMap<int, std::pair<int, SourceRange>, 2> |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 541 | RulesToFirstSpecifiedNegatedSubRule; |
| 542 | for (const auto &Rule : Rules) { |
| Alex Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 543 | attr::SubjectMatchRule MatchRule = attr::SubjectMatchRule(Rule.first); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 544 | Optional<attr::SubjectMatchRule> ParentRule = |
| Alex Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 545 | getParentAttrMatcherRule(MatchRule); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 546 | 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 Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 553 | << attr::getSubjectMatchRuleSpelling(MatchRule) |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 554 | << 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 Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 561 | if (isNegatedAttrMatcherSubRule(MatchRule)) |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 562 | RulesToFirstSpecifiedNegatedSubRule.insert( |
| 563 | std::make_pair(*ParentRule, Rule)); |
| 564 | } |
| 565 | bool IgnoreNegatedSubRules = false; |
| 566 | for (const auto &Rule : Rules) { |
| Alex Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 567 | attr::SubjectMatchRule MatchRule = attr::SubjectMatchRule(Rule.first); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 568 | Optional<attr::SubjectMatchRule> ParentRule = |
| Alex Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 569 | getParentAttrMatcherRule(MatchRule); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 570 | 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 Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 580 | << attr::getSubjectMatchRuleSpelling( |
| 581 | attr::SubjectMatchRule(It->second.first)) |
| 582 | << attr::getSubjectMatchRuleSpelling(MatchRule) << Rule.second |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 583 | << 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 Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 593 | SubjectMatchRules.push_back(attr::SubjectMatchRule(Rule.first)); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 594 | } else { |
| 595 | for (const auto &Rule : Rules) { |
| Alex Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 596 | if (!isNegatedAttrMatcherSubRule(attr::SubjectMatchRule(Rule.first))) |
| 597 | SubjectMatchRules.push_back(attr::SubjectMatchRule(Rule.first)); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 598 | } |
| 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 Lorenz | 26b4765 | 2017-04-18 20:54:23 +0000 | [diff] [blame] | 618 | ExtraRules.push_back(attr::SubjectMatchRule(Rule.first)); |
| Alex Lorenz | 9e7bf16 | 2017-04-18 14:33:39 +0000 | [diff] [blame] | 619 | 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 | |
| 629 | void 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 | |
| 644 | void 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 | |
| 669 | void Sema::PrintPragmaAttributeInstantiationPoint() { |
| 670 | assert(PragmaAttributeCurrentTargetDecl && "Expected an active declaration"); |
| 671 | Diags.Report(PragmaAttributeCurrentTargetDecl->getLocStart(), |
| 672 | diag::note_pragma_attribute_applied_decl_here); |
| 673 | } |
| 674 | |
| 675 | void Sema::DiagnoseUnterminatedPragmaAttribute() { |
| 676 | if (PragmaAttributeStack.empty()) |
| 677 | return; |
| 678 | Diag(PragmaAttributeStack.back().Loc, diag::err_pragma_attribute_no_pop_eof); |
| 679 | } |
| 680 | |
| Dario Domizioli | 13a0a38 | 2014-05-23 12:13:25 +0000 | [diff] [blame] | 681 | void Sema::ActOnPragmaOptimize(bool On, SourceLocation PragmaLoc) { |
| 682 | if(On) |
| 683 | OptimizeOffPragmaLocation = SourceLocation(); |
| 684 | else |
| 685 | OptimizeOffPragmaLocation = PragmaLoc; |
| 686 | } |
| 687 | |
| 688 | void 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 | |
| 695 | void 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 McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 709 | typedef std::vector<std::pair<unsigned, SourceLocation> > VisStack; |
| Alp Toker | ceb95c4 | 2014-03-02 03:20:16 +0000 | [diff] [blame] | 710 | enum : unsigned { NoVisibility = ~0U }; |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 711 | |
| 712 | void Sema::AddPushedVisibilityAttribute(Decl *D) { |
| 713 | if (!VisContext) |
| 714 | return; |
| 715 | |
| Rafael Espindola | 54606d5 | 2012-12-25 07:31:49 +0000 | [diff] [blame] | 716 | NamedDecl *ND = dyn_cast<NamedDecl>(D); |
| John McCall | d041a9b | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 717 | if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue)) |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 718 | return; |
| 719 | |
| 720 | VisStack *Stack = static_cast<VisStack*>(VisContext); |
| John McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 721 | unsigned rawType = Stack->back().first; |
| 722 | if (rawType == NoVisibility) return; |
| 723 | |
| 724 | VisibilityAttr::VisibilityType type |
| 725 | = (VisibilityAttr::VisibilityType) rawType; |
| Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 726 | SourceLocation loc = Stack->back().second; |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 727 | |
| Aaron Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 728 | D->addAttr(VisibilityAttr::CreateImplicit(Context, type, loc)); |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | /// FreeVisContext - Deallocate and null out VisContext. |
| 732 | void Sema::FreeVisContext() { |
| 733 | delete static_cast<VisStack*>(VisContext); |
| Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 734 | VisContext = nullptr; |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 735 | } |
| 736 | |
| John McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 737 | static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) { |
| John McCall | b1be523 | 2010-08-26 09:15:37 +0000 | [diff] [blame] | 738 | // 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 Espindola | de15baf | 2012-01-21 05:43:40 +0000 | [diff] [blame] | 746 | void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType, |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 747 | SourceLocation PragmaLoc) { |
| Rafael Espindola | de15baf | 2012-01-21 05:43:40 +0000 | [diff] [blame] | 748 | if (VisType) { |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 749 | // Compute visibility to use. |
| Aaron Ballman | 682ee42 | 2013-09-11 19:47:58 +0000 | [diff] [blame] | 750 | VisibilityAttr::VisibilityType T; |
| 751 | if (!VisibilityAttr::ConvertStrToVisibilityType(VisType->getName(), T)) { |
| 752 | Diag(PragmaLoc, diag::warn_attribute_unknown_visibility) << VisType; |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 753 | return; |
| 754 | } |
| Aaron Ballman | 682ee42 | 2013-09-11 19:47:58 +0000 | [diff] [blame] | 755 | PushPragmaVisibility(*this, T, PragmaLoc); |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 756 | } else { |
| Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 757 | PopPragmaVisibility(false, PragmaLoc); |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 758 | } |
| 759 | } |
| 760 | |
| Adam Nemet | 60d3264 | 2017-04-04 21:18:36 +0000 | [diff] [blame] | 761 | void Sema::ActOnPragmaFPContract(LangOptions::FPContractModeKind FPC) { |
| 762 | switch (FPC) { |
| 763 | case LangOptions::FPC_On: |
| Adam Nemet | 049a31d | 2017-03-29 21:54:24 +0000 | [diff] [blame] | 764 | FPFeatures.setAllowFPContractWithinStatement(); |
| Peter Collingbourne | 564c0fa | 2011-02-14 01:42:35 +0000 | [diff] [blame] | 765 | break; |
| Adam Nemet | 60d3264 | 2017-04-04 21:18:36 +0000 | [diff] [blame] | 766 | case LangOptions::FPC_Fast: |
| 767 | FPFeatures.setAllowFPContractAcrossStatement(); |
| Peter Collingbourne | 564c0fa | 2011-02-14 01:42:35 +0000 | [diff] [blame] | 768 | break; |
| Adam Nemet | 60d3264 | 2017-04-04 21:18:36 +0000 | [diff] [blame] | 769 | case LangOptions::FPC_Off: |
| 770 | FPFeatures.setDisallowFPContract(); |
| Peter Collingbourne | 564c0fa | 2011-02-14 01:42:35 +0000 | [diff] [blame] | 771 | break; |
| 772 | } |
| 773 | } |
| 774 | |
| Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 775 | void Sema::PushNamespaceVisibilityAttr(const VisibilityAttr *Attr, |
| 776 | SourceLocation Loc) { |
| John McCall | 2faf32c | 2010-12-10 02:59:44 +0000 | [diff] [blame] | 777 | // 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 Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 781 | PushPragmaVisibility(*this, NoVisibility, Loc); |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 782 | } |
| 783 | |
| Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 784 | void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) { |
| 785 | if (!VisContext) { |
| 786 | Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch); |
| 787 | return; |
| Eli Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 788 | } |
| Rafael Espindola | 6d65d7b | 2012-02-01 23:24:59 +0000 | [diff] [blame] | 789 | |
| 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 Friedman | 570024a | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 815 | } |