blob: d43c8c38f6194f9ba57ae4e6e35f5b4e19b64a41 [file] [log] [blame]
Richard Smithc202b282012-04-14 00:33:13 +00001//===--- SemaStmtAttr.cpp - Statement Attribute Handling ------------------===//
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//
10// This file implements stmt-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Sema/SemaInternal.h"
Richard Smithc202b282012-04-14 00:33:13 +000015#include "clang/AST/ASTContext.h"
Eli Bendersky06a40422014-06-06 20:31:48 +000016#include "clang/Basic/SourceManager.h"
17#include "clang/Sema/DelayedDiagnostic.h"
18#include "clang/Sema/Lookup.h"
19#include "clang/Sema/LoopHint.h"
20#include "clang/Sema/ScopeInfo.h"
21#include "llvm/ADT/StringExtras.h"
22
Richard Smithc202b282012-04-14 00:33:13 +000023using namespace clang;
24using namespace sema;
25
Richard Smith84837d52012-05-03 18:27:39 +000026static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A,
27 SourceRange Range) {
Richard Smith4f902c72016-03-08 00:32:55 +000028 FallThroughAttr Attr(A.getRange(), S.Context,
29 A.getAttributeSpellingListIndex());
Richard Smith84837d52012-05-03 18:27:39 +000030 if (!isa<NullStmt>(St)) {
31 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_wrong_target)
Richard Smith4f902c72016-03-08 00:32:55 +000032 << Attr.getSpelling() << St->getLocStart();
Richard Smith84837d52012-05-03 18:27:39 +000033 if (isa<SwitchCase>(St)) {
Alp Tokerb6cc5922014-05-03 03:45:55 +000034 SourceLocation L = S.getLocForEndOfToken(Range.getEnd());
Richard Smith84837d52012-05-03 18:27:39 +000035 S.Diag(L, diag::note_fallthrough_insert_semi_fixit)
36 << FixItHint::CreateInsertion(L, ";");
37 }
Craig Topperc3ec1492014-05-26 06:22:03 +000038 return nullptr;
Richard Smith84837d52012-05-03 18:27:39 +000039 }
Richard Smith4f902c72016-03-08 00:32:55 +000040 auto *FnScope = S.getCurFunction();
41 if (FnScope->SwitchStack.empty()) {
Richard Smith84837d52012-05-03 18:27:39 +000042 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_outside_switch);
Craig Topperc3ec1492014-05-26 06:22:03 +000043 return nullptr;
Richard Smith84837d52012-05-03 18:27:39 +000044 }
Richard Smith4f902c72016-03-08 00:32:55 +000045
46 // If this is spelled as the standard C++1z attribute, but not in C++1z, warn
47 // about using it as an extension.
48 if (!S.getLangOpts().CPlusPlus1z && A.isCXX11Attribute() &&
49 !A.getScopeName())
Richard Smithb115e5d2017-08-13 23:37:29 +000050 S.Diag(A.getLoc(), diag::ext_cxx17_attr) << A.getName();
Richard Smith4f902c72016-03-08 00:32:55 +000051
52 FnScope->setHasFallthroughStmt();
53 return ::new (S.Context) auto(Attr);
Eli Bendersky06a40422014-06-06 20:31:48 +000054}
55
Matthias Gehre01a63382017-03-27 19:45:24 +000056static Attr *handleSuppressAttr(Sema &S, Stmt *St, const AttributeList &A,
57 SourceRange Range) {
58 if (A.getNumArgs() < 1) {
59 S.Diag(A.getLoc(), diag::err_attribute_too_few_arguments)
60 << A.getName() << 1;
61 return nullptr;
62 }
63
64 std::vector<StringRef> DiagnosticIdentifiers;
65 for (unsigned I = 0, E = A.getNumArgs(); I != E; ++I) {
66 StringRef RuleName;
67
68 if (!S.checkStringLiteralArgumentAttr(A, I, RuleName, nullptr))
69 return nullptr;
70
71 // FIXME: Warn if the rule name is unknown. This is tricky because only
72 // clang-tidy knows about available rules.
73 DiagnosticIdentifiers.push_back(RuleName);
74 }
75
76 return ::new (S.Context) SuppressAttr(
77 A.getRange(), S.Context, DiagnosticIdentifiers.data(),
78 DiagnosticIdentifiers.size(), A.getAttributeSpellingListIndex());
79}
80
Eli Bendersky06a40422014-06-06 20:31:48 +000081static Attr *handleLoopHintAttr(Sema &S, Stmt *St, const AttributeList &A,
82 SourceRange) {
Mark Heffernanbd26f5e2014-07-21 18:08:34 +000083 IdentifierLoc *PragmaNameLoc = A.getArgAsIdent(0);
84 IdentifierLoc *OptionLoc = A.getArgAsIdent(1);
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +000085 IdentifierLoc *StateLoc = A.getArgAsIdent(2);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +000086 Expr *ValueExpr = A.getArgAsExpr(3);
87
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +000088 bool PragmaUnroll = PragmaNameLoc->Ident->getName() == "unroll";
89 bool PragmaNoUnroll = PragmaNameLoc->Ident->getName() == "nounroll";
Eli Bendersky06a40422014-06-06 20:31:48 +000090 if (St->getStmtClass() != Stmt::DoStmtClass &&
91 St->getStmtClass() != Stmt::ForStmtClass &&
92 St->getStmtClass() != Stmt::CXXForRangeStmtClass &&
93 St->getStmtClass() != Stmt::WhileStmtClass) {
Mark Heffernanc888e412014-07-24 18:09:38 +000094 const char *Pragma =
95 llvm::StringSwitch<const char *>(PragmaNameLoc->Ident->getName())
96 .Case("unroll", "#pragma unroll")
97 .Case("nounroll", "#pragma nounroll")
98 .Default("#pragma clang loop");
Mark Heffernanbd26f5e2014-07-21 18:08:34 +000099 S.Diag(St->getLocStart(), diag::err_pragma_loop_precedes_nonloop) << Pragma;
Eli Bendersky06a40422014-06-06 20:31:48 +0000100 return nullptr;
101 }
102
Erich Keanebe89f4c52017-08-09 15:27:36 +0000103 LoopHintAttr::Spelling Spelling =
104 LoopHintAttr::Spelling(A.getAttributeSpellingListIndex());
Mark Heffernan397a98d2015-08-10 17:29:39 +0000105 LoopHintAttr::OptionType Option;
106 LoopHintAttr::LoopHintState State;
107 if (PragmaNoUnroll) {
108 // #pragma nounroll
Mark Heffernan397a98d2015-08-10 17:29:39 +0000109 Option = LoopHintAttr::Unroll;
110 State = LoopHintAttr::Disable;
111 } else if (PragmaUnroll) {
Mark Heffernan397a98d2015-08-10 17:29:39 +0000112 if (ValueExpr) {
113 // #pragma unroll N
114 Option = LoopHintAttr::UnrollCount;
115 State = LoopHintAttr::Numeric;
116 } else {
117 // #pragma unroll
118 Option = LoopHintAttr::Unroll;
119 State = LoopHintAttr::Enable;
120 }
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000121 } else {
Mark Heffernan397a98d2015-08-10 17:29:39 +0000122 // #pragma clang loop ...
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000123 assert(OptionLoc && OptionLoc->Ident &&
124 "Attribute must have valid option info.");
Mark Heffernan397a98d2015-08-10 17:29:39 +0000125 Option = llvm::StringSwitch<LoopHintAttr::OptionType>(
126 OptionLoc->Ident->getName())
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000127 .Case("vectorize", LoopHintAttr::Vectorize)
128 .Case("vectorize_width", LoopHintAttr::VectorizeWidth)
129 .Case("interleave", LoopHintAttr::Interleave)
130 .Case("interleave_count", LoopHintAttr::InterleaveCount)
131 .Case("unroll", LoopHintAttr::Unroll)
132 .Case("unroll_count", LoopHintAttr::UnrollCount)
Adam Nemet2de463e2016-06-14 12:04:26 +0000133 .Case("distribute", LoopHintAttr::Distribute)
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000134 .Default(LoopHintAttr::Vectorize);
Mark Heffernan397a98d2015-08-10 17:29:39 +0000135 if (Option == LoopHintAttr::VectorizeWidth ||
136 Option == LoopHintAttr::InterleaveCount ||
137 Option == LoopHintAttr::UnrollCount) {
138 assert(ValueExpr && "Attribute must have a valid value expression.");
139 if (S.CheckLoopHintExpr(ValueExpr, St->getLocStart()))
140 return nullptr;
141 State = LoopHintAttr::Numeric;
142 } else if (Option == LoopHintAttr::Vectorize ||
143 Option == LoopHintAttr::Interleave ||
Adam Nemet2de463e2016-06-14 12:04:26 +0000144 Option == LoopHintAttr::Unroll ||
145 Option == LoopHintAttr::Distribute) {
Mark Heffernan397a98d2015-08-10 17:29:39 +0000146 assert(StateLoc && StateLoc->Ident && "Loop hint must have an argument");
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000147 if (StateLoc->Ident->isStr("disable"))
148 State = LoopHintAttr::Disable;
Tyler Nowicki9d268e12015-06-11 23:23:17 +0000149 else if (StateLoc->Ident->isStr("assume_safety"))
150 State = LoopHintAttr::AssumeSafety;
Mark Heffernan397a98d2015-08-10 17:29:39 +0000151 else if (StateLoc->Ident->isStr("full"))
152 State = LoopHintAttr::Full;
153 else if (StateLoc->Ident->isStr("enable"))
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000154 State = LoopHintAttr::Enable;
Mark Heffernan397a98d2015-08-10 17:29:39 +0000155 else
156 llvm_unreachable("bad loop hint argument");
157 } else
158 llvm_unreachable("bad loop hint");
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000159 }
Eli Bendersky06a40422014-06-06 20:31:48 +0000160
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000161 return LoopHintAttr::CreateImplicit(S.Context, Spelling, Option, State,
Tyler Nowickic724a83e2014-10-12 20:46:07 +0000162 ValueExpr, A.getRange());
Eli Bendersky06a40422014-06-06 20:31:48 +0000163}
164
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000165static void
166CheckForIncompatibleAttributes(Sema &S,
167 const SmallVectorImpl<const Attr *> &Attrs) {
Adam Nemet2de463e2016-06-14 12:04:26 +0000168 // There are 4 categories of loop hints attributes: vectorize, interleave,
169 // unroll and distribute. Except for distribute they come in two variants: a
170 // state form and a numeric form. The state form selectively
171 // defaults/enables/disables the transformation for the loop (for unroll,
172 // default indicates full unrolling rather than enabling the transformation).
173 // The numeric form form provides an integer hint (for example, unroll count)
174 // to the transformer. The following array accumulates the hints encountered
175 // while iterating through the attributes to check for compatibility.
Eli Bendersky86483b32014-06-11 17:56:26 +0000176 struct {
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000177 const LoopHintAttr *StateAttr;
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000178 const LoopHintAttr *NumericAttr;
Adam Nemet2de463e2016-06-14 12:04:26 +0000179 } HintAttrs[] = {{nullptr, nullptr},
180 {nullptr, nullptr},
181 {nullptr, nullptr},
182 {nullptr, nullptr}};
Eli Bendersky06a40422014-06-06 20:31:48 +0000183
184 for (const auto *I : Attrs) {
185 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(I);
186
187 // Skip non loop hint attributes
188 if (!LH)
189 continue;
190
Craig Topperec9be542015-12-23 05:44:43 +0000191 LoopHintAttr::OptionType Option = LH->getOption();
Adam Nemet2de463e2016-06-14 12:04:26 +0000192 enum { Vectorize, Interleave, Unroll, Distribute } Category;
Eli Bendersky06a40422014-06-06 20:31:48 +0000193 switch (Option) {
194 case LoopHintAttr::Vectorize:
195 case LoopHintAttr::VectorizeWidth:
Mark Heffernan450c2382014-07-23 17:31:31 +0000196 Category = Vectorize;
Eli Bendersky06a40422014-06-06 20:31:48 +0000197 break;
198 case LoopHintAttr::Interleave:
199 case LoopHintAttr::InterleaveCount:
Mark Heffernan450c2382014-07-23 17:31:31 +0000200 Category = Interleave;
Eli Bendersky06a40422014-06-06 20:31:48 +0000201 break;
Eli Bendersky86483b32014-06-11 17:56:26 +0000202 case LoopHintAttr::Unroll:
203 case LoopHintAttr::UnrollCount:
Mark Heffernan450c2382014-07-23 17:31:31 +0000204 Category = Unroll;
Eli Bendersky86483b32014-06-11 17:56:26 +0000205 break;
Adam Nemet2de463e2016-06-14 12:04:26 +0000206 case LoopHintAttr::Distribute:
207 // Perform the check for duplicated 'distribute' hints.
208 Category = Distribute;
209 break;
Eli Bendersky86483b32014-06-11 17:56:26 +0000210 };
Eli Bendersky06a40422014-06-06 20:31:48 +0000211
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000212 auto &CategoryState = HintAttrs[Category];
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000213 const LoopHintAttr *PrevAttr;
Eli Bendersky86483b32014-06-11 17:56:26 +0000214 if (Option == LoopHintAttr::Vectorize ||
Adam Nemet2de463e2016-06-14 12:04:26 +0000215 Option == LoopHintAttr::Interleave || Option == LoopHintAttr::Unroll ||
216 Option == LoopHintAttr::Distribute) {
Tyler Nowicki9d268e12015-06-11 23:23:17 +0000217 // Enable|Disable|AssumeSafety hint. For example, vectorize(enable).
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000218 PrevAttr = CategoryState.StateAttr;
219 CategoryState.StateAttr = LH;
Eli Bendersky06a40422014-06-06 20:31:48 +0000220 } else {
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000221 // Numeric hint. For example, vectorize_width(8).
222 PrevAttr = CategoryState.NumericAttr;
223 CategoryState.NumericAttr = LH;
Eli Bendersky06a40422014-06-06 20:31:48 +0000224 }
225
Tyler Nowicki884fc612014-07-29 17:21:32 +0000226 PrintingPolicy Policy(S.Context.getLangOpts());
227 SourceLocation OptionLoc = LH->getRange().getBegin();
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000228 if (PrevAttr)
229 // Cannot specify same type of attribute twice.
230 S.Diag(OptionLoc, diag::err_pragma_loop_compatibility)
Tyler Nowicki884fc612014-07-29 17:21:32 +0000231 << /*Duplicate=*/true << PrevAttr->getDiagnosticName(Policy)
232 << LH->getDiagnosticName(Policy);
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000233
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000234 if (CategoryState.StateAttr && CategoryState.NumericAttr &&
235 (Category == Unroll ||
236 CategoryState.StateAttr->getState() == LoopHintAttr::Disable)) {
Mark Heffernan450c2382014-07-23 17:31:31 +0000237 // Disable hints are not compatible with numeric hints of the same
238 // category. As a special case, numeric unroll hints are also not
Mark Heffernan397a98d2015-08-10 17:29:39 +0000239 // compatible with enable or full form of the unroll pragma because these
240 // directives indicate full unrolling.
Mark Heffernanbd26f5e2014-07-21 18:08:34 +0000241 S.Diag(OptionLoc, diag::err_pragma_loop_compatibility)
Eli Bendersky86483b32014-06-11 17:56:26 +0000242 << /*Duplicate=*/false
Tyler Nowicki0c9b34b2014-07-31 20:15:14 +0000243 << CategoryState.StateAttr->getDiagnosticName(Policy)
Tyler Nowicki884fc612014-07-29 17:21:32 +0000244 << CategoryState.NumericAttr->getDiagnosticName(Policy);
Eli Bendersky86483b32014-06-11 17:56:26 +0000245 }
Eli Bendersky06a40422014-06-06 20:31:48 +0000246 }
247}
248
Anastasia Stulova6bdbcbb2016-02-19 18:30:11 +0000249static Attr *handleOpenCLUnrollHint(Sema &S, Stmt *St, const AttributeList &A,
250 SourceRange Range) {
Egor Churaev24939d42016-12-13 14:02:35 +0000251 // Although the feature was introduced only in OpenCL C v2.0 s6.11.5, it's
252 // useful for OpenCL 1.x too and doesn't require HW support.
253 // opencl_unroll_hint can have 0 arguments (compiler
Anastasia Stulova6bdbcbb2016-02-19 18:30:11 +0000254 // determines unrolling factor) or 1 argument (the unroll factor provided
255 // by the user).
256
Anastasia Stulova6bdbcbb2016-02-19 18:30:11 +0000257 unsigned NumArgs = A.getNumArgs();
258
259 if (NumArgs > 1) {
260 S.Diag(A.getLoc(), diag::err_attribute_too_many_arguments) << A.getName()
261 << 1;
262 return nullptr;
263 }
264
265 unsigned UnrollFactor = 0;
266
267 if (NumArgs == 1) {
268 Expr *E = A.getArgAsExpr(0);
269 llvm::APSInt ArgVal(32);
270
271 if (!E->isIntegerConstantExpr(ArgVal, S.Context)) {
272 S.Diag(A.getLoc(), diag::err_attribute_argument_type)
273 << A.getName() << AANT_ArgumentIntegerConstant << E->getSourceRange();
274 return nullptr;
275 }
276
277 int Val = ArgVal.getSExtValue();
278
279 if (Val <= 0) {
280 S.Diag(A.getRange().getBegin(),
281 diag::err_attribute_requires_positive_integer)
282 << A.getName();
283 return nullptr;
284 }
285 UnrollFactor = Val;
286 }
287
288 return OpenCLUnrollHintAttr::CreateImplicit(S.Context, UnrollFactor);
289}
290
Eli Bendersky06a40422014-06-06 20:31:48 +0000291static Attr *ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A,
292 SourceRange Range) {
293 switch (A.getKind()) {
Michael Han23214e52012-10-03 01:56:22 +0000294 case AttributeList::UnknownAttribute:
295 S.Diag(A.getLoc(), A.isDeclspecAttribute() ?
296 diag::warn_unhandled_ms_attribute_ignored :
297 diag::warn_unknown_attribute_ignored) << A.getName();
Eli Bendersky06a40422014-06-06 20:31:48 +0000298 return nullptr;
299 case AttributeList::AT_FallThrough:
300 return handleFallThroughAttr(S, St, A, Range);
301 case AttributeList::AT_LoopHint:
302 return handleLoopHintAttr(S, St, A, Range);
Anastasia Stulova6bdbcbb2016-02-19 18:30:11 +0000303 case AttributeList::AT_OpenCLUnrollHint:
304 return handleOpenCLUnrollHint(S, St, A, Range);
Matthias Gehre01a63382017-03-27 19:45:24 +0000305 case AttributeList::AT_Suppress:
306 return handleSuppressAttr(S, St, A, Range);
Eli Bendersky06a40422014-06-06 20:31:48 +0000307 default:
308 // if we're here, then we parsed a known attribute, but didn't recognize
309 // it as a statement attribute => it is declaration attribute
Richard Smith4f902c72016-03-08 00:32:55 +0000310 S.Diag(A.getRange().getBegin(), diag::err_decl_attribute_invalid_on_stmt)
Richard Smith4c96e992013-02-19 23:47:15 +0000311 << A.getName() << St->getLocStart();
Craig Topperc3ec1492014-05-26 06:22:03 +0000312 return nullptr;
Richard Smithc202b282012-04-14 00:33:13 +0000313 }
314}
315
316StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList,
317 SourceRange Range) {
Alexander Kornienko20f6fc62012-07-09 10:04:07 +0000318 SmallVector<const Attr*, 8> Attrs;
Richard Smithc202b282012-04-14 00:33:13 +0000319 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Richard Smith84837d52012-05-03 18:27:39 +0000320 if (Attr *a = ProcessStmtAttribute(*this, S, *l, Range))
Eli Bendersky06a40422014-06-06 20:31:48 +0000321 Attrs.push_back(a);
322 }
323
324 CheckForIncompatibleAttributes(*this, Attrs);
325
326 if (Attrs.empty())
327 return S;
328
Richard Smithc202b282012-04-14 00:33:13 +0000329 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
330}