blob: ed5da43f8a964bb81944055be2ebae9c9d17162f [file] [log] [blame]
Chris Lattneraf8d5812006-11-10 05:07:45 +00001//===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattneraf8d5812006-11-10 05:07:45 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for statements.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Chris Lattnerfc1c44a2007-08-23 05:46:52 +000015#include "clang/AST/ASTContext.h"
Fariborz Jahanian8b115b72013-01-09 23:04:56 +000016#include "clang/AST/ASTDiagnostic.h"
John McCall03318c12011-11-11 03:57:31 +000017#include "clang/AST/CharUnits.h"
Aaron Ballman8aee642902015-04-08 00:05:29 +000018#include "clang/AST/CXXInheritance.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Richard Trieu451a5db2012-04-30 18:01:30 +000020#include "clang/AST/EvaluatedExprVisitor.h"
Douglas Gregord0c22e02009-11-23 13:46:08 +000021#include "clang/AST/ExprCXX.h"
Chris Lattner2ba5ca92009-08-16 16:57:27 +000022#include "clang/AST/ExprObjC.h"
Nico Weber72889432014-09-06 01:25:55 +000023#include "clang/AST/RecursiveASTVisitor.h"
Chris Lattnerf0b64d72009-04-26 01:32:48 +000024#include "clang/AST/StmtCXX.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000025#include "clang/AST/StmtObjC.h"
John McCall2351cb92010-04-06 22:24:14 +000026#include "clang/AST/TypeLoc.h"
Aaron Ballman8aee642902015-04-08 00:05:29 +000027#include "clang/AST/TypeOrdering.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000028#include "clang/Lex/Preprocessor.h"
29#include "clang/Sema/Initialization.h"
30#include "clang/Sema/Lookup.h"
31#include "clang/Sema/Scope.h"
32#include "clang/Sema/ScopeInfo.h"
Chris Lattner70a4e9b2011-02-21 21:40:33 +000033#include "llvm/ADT/ArrayRef.h"
Aaron Ballman8aee642902015-04-08 00:05:29 +000034#include "llvm/ADT/DenseMap.h"
Sebastian Redl63c4da02009-07-29 17:15:45 +000035#include "llvm/ADT/STLExtras.h"
Richard Trieu451a5db2012-04-30 18:01:30 +000036#include "llvm/ADT/SmallPtrSet.h"
Douglas Gregor0a9f4e02012-05-16 16:11:17 +000037#include "llvm/ADT/SmallString.h"
Sebastian Redl63c4da02009-07-29 17:15:45 +000038#include "llvm/ADT/SmallVector.h"
Chris Lattneraf8d5812006-11-10 05:07:45 +000039using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000040using namespace sema;
Chris Lattneraf8d5812006-11-10 05:07:45 +000041
Richard Smith945f8d32013-01-14 22:39:08 +000042StmtResult Sema::ActOnExprStmt(ExprResult FE) {
43 if (FE.isInvalid())
44 return StmtError();
45
46 FE = ActOnFinishFullExpr(FE.get(), FE.get()->getExprLoc(),
47 /*DiscardedValue*/ true);
48 if (FE.isInvalid())
Douglas Gregora6e053e2010-12-15 01:34:56 +000049 return StmtError();
50
Chris Lattner903eb512008-07-25 23:18:17 +000051 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
52 // void expression for its side effects. Conversion to void allows any
53 // operand, even incomplete types.
Sebastian Redl52f03ba2008-12-21 12:04:03 +000054
Chris Lattner903eb512008-07-25 23:18:17 +000055 // Same thing in for stmt first clause (when expr) and third clause.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000056 return StmtResult(FE.getAs<Stmt>());
Chris Lattner1ec5f562007-06-27 05:38:08 +000057}
58
59
John McCalleaef89b2013-03-22 02:10:40 +000060StmtResult Sema::ActOnExprStmtError() {
61 DiscardCleanupsInEvaluationContext();
62 return StmtError();
63}
64
Argyrios Kyrtzidisf7620e42011-04-27 05:04:02 +000065StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc,
Argyrios Kyrtzidis43ea78b2011-09-01 21:53:45 +000066 bool HasLeadingEmptyMacro) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000067 return new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro);
Chris Lattner0f203a72007-05-28 01:45:28 +000068}
69
Chris Lattnerebb5c6c2011-02-18 01:27:55 +000070StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
71 SourceLocation EndLoc) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +000072 DeclGroupRef DG = dg.get();
Mike Stump11289f42009-09-09 15:08:12 +000073
Chris Lattnercbafe8d2009-04-12 20:13:14 +000074 // If we have an invalid decl, just return an error.
75 if (DG.isNull()) return StmtError();
Mike Stump11289f42009-09-09 15:08:12 +000076
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000077 return new (Context) DeclStmt(DG, StartLoc, EndLoc);
Steve Naroff2a8ad182007-05-29 22:59:26 +000078}
Chris Lattneraf8d5812006-11-10 05:07:45 +000079
Fariborz Jahaniane774fa62009-11-19 22:12:37 +000080void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +000081 DeclGroupRef DG = dg.get();
Wei Panc4c76d12013-05-03 21:07:45 +000082
Douglas Gregor2eb1c572013-04-08 20:52:24 +000083 // If we don't have a declaration, or we have an invalid declaration,
84 // just return.
85 if (DG.isNull() || !DG.isSingleDecl())
86 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +000087
Douglas Gregor2eb1c572013-04-08 20:52:24 +000088 Decl *decl = DG.getSingleDecl();
89 if (!decl || decl->isInvalidDecl())
90 return;
91
92 // Only variable declarations are permitted.
93 VarDecl *var = dyn_cast<VarDecl>(decl);
94 if (!var) {
95 Diag(decl->getLocation(), diag::err_non_variable_decl_in_for);
96 decl->setInvalidDecl();
97 return;
98 }
John McCall31168b02011-06-15 23:02:42 +000099
John McCalld4631322011-06-17 06:42:21 +0000100 // foreach variables are never actually initialized in the way that
101 // the parser came up with.
Craig Topperc3ec1492014-05-26 06:22:03 +0000102 var->setInit(nullptr);
John McCall31168b02011-06-15 23:02:42 +0000103
John McCalld4631322011-06-17 06:42:21 +0000104 // In ARC, we don't need to retain the iteration variable of a fast
105 // enumeration loop. Rather than actually trying to catch that
106 // during declaration processing, we remove the consequences here.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000107 if (getLangOpts().ObjCAutoRefCount) {
John McCalld4631322011-06-17 06:42:21 +0000108 QualType type = var->getType();
109
110 // Only do this if we inferred the lifetime. Inferred lifetime
111 // will show up as a local qualifier because explicit lifetime
112 // should have shown up as an AttributedType instead.
113 if (type.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong) {
114 // Add 'const' and mark the variable as pseudo-strong.
115 var->setType(type.withConst());
116 var->setARCPseudoStrong(true);
John McCall31168b02011-06-15 23:02:42 +0000117 }
118 }
Fariborz Jahaniane774fa62009-11-19 22:12:37 +0000119}
120
Richard Trieu99e1c952014-03-11 03:11:08 +0000121/// \brief Diagnose unused comparisons, both builtin and overloaded operators.
122/// For '==' and '!=', suggest fixits for '=' or '|='.
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000123///
124/// Adding a cast to void (or other expression wrappers) will prevent the
125/// warning from firing.
Chandler Carruthe2669392011-08-17 09:34:37 +0000126static bool DiagnoseUnusedComparison(Sema &S, const Expr *E) {
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000127 SourceLocation Loc;
Richard Trieu99e1c952014-03-11 03:11:08 +0000128 bool IsNotEqual, CanAssign, IsRelational;
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000129
130 if (const BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
Richard Trieu99e1c952014-03-11 03:11:08 +0000131 if (!Op->isComparisonOp())
Chandler Carruthe2669392011-08-17 09:34:37 +0000132 return false;
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000133
Richard Trieu99e1c952014-03-11 03:11:08 +0000134 IsRelational = Op->isRelationalOp();
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000135 Loc = Op->getOperatorLoc();
Chandler Carruthe89ca5f2011-08-17 08:38:11 +0000136 IsNotEqual = Op->getOpcode() == BO_NE;
137 CanAssign = Op->getLHS()->IgnoreParenImpCasts()->isLValue();
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000138 } else if (const CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
Richard Trieu99e1c952014-03-11 03:11:08 +0000139 switch (Op->getOperator()) {
140 default:
Chandler Carruthe2669392011-08-17 09:34:37 +0000141 return false;
Richard Trieu99e1c952014-03-11 03:11:08 +0000142 case OO_EqualEqual:
143 case OO_ExclaimEqual:
144 IsRelational = false;
145 break;
146 case OO_Less:
147 case OO_Greater:
148 case OO_GreaterEqual:
149 case OO_LessEqual:
150 IsRelational = true;
151 break;
152 }
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000153
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000154 Loc = Op->getOperatorLoc();
Chandler Carruthe89ca5f2011-08-17 08:38:11 +0000155 IsNotEqual = Op->getOperator() == OO_ExclaimEqual;
156 CanAssign = Op->getArg(0)->IgnoreParenImpCasts()->isLValue();
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000157 } else {
158 // Not a typo-prone comparison.
Chandler Carruthe2669392011-08-17 09:34:37 +0000159 return false;
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000160 }
161
162 // Suppress warnings when the operator, suspicious as it may be, comes from
163 // a macro expansion.
Matt Beaumont-Gayb1e71a72013-01-12 00:54:16 +0000164 if (S.SourceMgr.isMacroBodyExpansion(Loc))
Chandler Carruthe2669392011-08-17 09:34:37 +0000165 return false;
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000166
Chandler Carruthe2669392011-08-17 09:34:37 +0000167 S.Diag(Loc, diag::warn_unused_comparison)
Richard Trieu99e1c952014-03-11 03:11:08 +0000168 << (unsigned)IsRelational << (unsigned)IsNotEqual << E->getSourceRange();
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000169
Chandler Carruthe89ca5f2011-08-17 08:38:11 +0000170 // If the LHS is a plausible entity to assign to, provide a fixit hint to
171 // correct common typos.
Richard Trieu99e1c952014-03-11 03:11:08 +0000172 if (!IsRelational && CanAssign) {
Chandler Carruthe89ca5f2011-08-17 08:38:11 +0000173 if (IsNotEqual)
174 S.Diag(Loc, diag::note_inequality_comparison_to_or_assign)
175 << FixItHint::CreateReplacement(Loc, "|=");
176 else
177 S.Diag(Loc, diag::note_equality_comparison_to_assign)
178 << FixItHint::CreateReplacement(Loc, "=");
179 }
Chandler Carruthe2669392011-08-17 09:34:37 +0000180
181 return true;
Chandler Carruthae51ecc2011-08-17 08:38:04 +0000182}
183
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000184void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
Argyrios Kyrtzidis90963412010-09-19 21:21:10 +0000185 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
186 return DiagnoseUnusedExprResult(Label->getSubStmt());
187
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000188 const Expr *E = dyn_cast_or_null<Expr>(S);
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000189 if (!E)
190 return;
Aaron Ballman78ecb872014-10-16 20:13:28 +0000191
192 // If we are in an unevaluated expression context, then there can be no unused
193 // results because the results aren't expected to be used in the first place.
194 if (isUnevaluatedContext())
195 return;
196
Matt Beaumont-Gay978cca92013-01-17 02:06:08 +0000197 SourceLocation ExprLoc = E->IgnoreParens()->getExprLoc();
Matt Beaumont-Gay1c417da2013-02-26 19:34:08 +0000198 // In most cases, we don't want to warn if the expression is written in a
199 // macro body, or if the macro comes from a system header. If the offending
200 // expression is a call to a function with the warn_unused_result attribute,
201 // we warn no matter the location. Because of the order in which the various
202 // checks need to happen, we factor out the macro-related test here.
203 bool ShouldSuppress =
204 SourceMgr.isMacroBodyExpansion(ExprLoc) ||
205 SourceMgr.isInSystemMacro(ExprLoc);
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000206
Eli Friedmanc11535c2012-05-24 00:47:05 +0000207 const Expr *WarnExpr;
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000208 SourceLocation Loc;
209 SourceRange R1, R2;
Matt Beaumont-Gay978cca92013-01-17 02:06:08 +0000210 if (!E->isUnusedResultAWarning(WarnExpr, Loc, R1, R2, Context))
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000211 return;
Mike Stump11289f42009-09-09 15:08:12 +0000212
Chris Lattner6dc7e572012-08-31 22:39:21 +0000213 // If this is a GNU statement expression expanded from a macro, it is probably
214 // unused because it is a function-like macro that can be used as either an
215 // expression or statement. Don't warn, because it is almost certainly a
216 // false positive.
217 if (isa<StmtExpr>(E) && Loc.isMacroID())
218 return;
219
Chris Lattner2ba5ca92009-08-16 16:57:27 +0000220 // Okay, we have an unused result. Depending on what the base expression is,
221 // we might want to make a more specific diagnostic. Check for one of these
222 // cases now.
223 unsigned DiagID = diag::warn_unused_expr;
John McCall5d413782010-12-06 08:20:24 +0000224 if (const ExprWithCleanups *Temps = dyn_cast<ExprWithCleanups>(E))
Douglas Gregor50dc2192010-02-11 22:55:30 +0000225 E = Temps->getSubExpr();
Chandler Carruthd05b3522011-02-21 00:56:56 +0000226 if (const CXXBindTemporaryExpr *TempExpr = dyn_cast<CXXBindTemporaryExpr>(E))
227 E = TempExpr->getSubExpr();
John McCallb7bd14f2010-12-02 01:19:52 +0000228
Chandler Carruthe2669392011-08-17 09:34:37 +0000229 if (DiagnoseUnusedComparison(*this, E))
230 return;
231
Eli Friedmanc11535c2012-05-24 00:47:05 +0000232 E = WarnExpr;
Chris Lattner1a6babf2009-10-13 04:53:48 +0000233 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
John McCallc493a732010-03-12 07:11:26 +0000234 if (E->getType()->isVoidType())
235 return;
236
Chris Lattner1a6babf2009-10-13 04:53:48 +0000237 // If the callee has attribute pure, const, or warn_unused_result, warn with
Matt Beaumont-Gay1c417da2013-02-26 19:34:08 +0000238 // a more specific message to make it clear what is happening. If the call
239 // is written in a macro body, only warn if it has the warn_unused_result
240 // attribute.
Nuno Lopes518e3702009-12-20 23:11:08 +0000241 if (const Decl *FD = CE->getCalleeDecl()) {
Kaelyn Takata0a2e84c2015-04-09 19:43:04 +0000242 const FunctionDecl *Func = dyn_cast<FunctionDecl>(FD);
243 if (Func ? Func->hasUnusedResultAttr()
244 : FD->hasAttr<WarnUnusedResultAttr>()) {
Matt Beaumont-Gaya17cf632011-08-04 23:11:04 +0000245 Diag(Loc, diag::warn_unused_result) << R1 << R2;
Chris Lattner1a6babf2009-10-13 04:53:48 +0000246 return;
247 }
Matt Beaumont-Gay1c417da2013-02-26 19:34:08 +0000248 if (ShouldSuppress)
249 return;
Aaron Ballman9ead1242013-12-19 02:39:40 +0000250 if (FD->hasAttr<PureAttr>()) {
Chris Lattner1a6babf2009-10-13 04:53:48 +0000251 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "pure";
252 return;
253 }
Aaron Ballman9ead1242013-12-19 02:39:40 +0000254 if (FD->hasAttr<ConstAttr>()) {
Chris Lattner1a6babf2009-10-13 04:53:48 +0000255 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "const";
256 return;
257 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000258 }
Matt Beaumont-Gay1c417da2013-02-26 19:34:08 +0000259 } else if (ShouldSuppress)
260 return;
261
262 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000263 if (getLangOpts().ObjCAutoRefCount && ME->isDelegateInitCall()) {
John McCall31168b02011-06-15 23:02:42 +0000264 Diag(Loc, diag::err_arc_unused_init_message) << R1;
265 return;
266 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +0000267 const ObjCMethodDecl *MD = ME->getMethodDecl();
Fariborz Jahanianac6b4ef2014-07-18 22:59:10 +0000268 if (MD) {
269 if (MD->hasAttr<WarnUnusedResultAttr>()) {
270 Diag(Loc, diag::warn_unused_result) << R1 << R2;
271 return;
272 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +0000273 }
Ted Kremeneke65b0862012-03-06 20:05:56 +0000274 } else if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
275 const Expr *Source = POE->getSyntacticForm();
276 if (isa<ObjCSubscriptRefExpr>(Source))
277 DiagID = diag::warn_unused_container_subscript_expr;
278 else
279 DiagID = diag::warn_unused_property_expr;
Douglas Gregorb33eed02010-04-16 22:09:46 +0000280 } else if (const CXXFunctionalCastExpr *FC
281 = dyn_cast<CXXFunctionalCastExpr>(E)) {
282 if (isa<CXXConstructExpr>(FC->getSubExpr()) ||
283 isa<CXXTemporaryObjectExpr>(FC->getSubExpr()))
284 return;
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +0000285 }
John McCall2351cb92010-04-06 22:24:14 +0000286 // Diagnose "(void*) blah" as a typo for "(void) blah".
287 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
288 TypeSourceInfo *TI = CE->getTypeInfoAsWritten();
289 QualType T = TI->getType();
290
291 // We really do want to use the non-canonical type here.
292 if (T == Context.VoidPtrTy) {
David Blaikie6adc78e2013-02-18 22:06:02 +0000293 PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
John McCall2351cb92010-04-06 22:24:14 +0000294
295 Diag(Loc, diag::warn_unused_voidptr)
296 << FixItHint::CreateRemoval(TL.getStarLoc());
297 return;
298 }
299 }
300
Eli Friedmanc11535c2012-05-24 00:47:05 +0000301 if (E->isGLValue() && E->getType().isVolatileQualified()) {
302 Diag(Loc, diag::warn_unused_volatile) << R1 << R2;
303 return;
304 }
305
Craig Topperc3ec1492014-05-26 06:22:03 +0000306 DiagRuntimeBehavior(Loc, nullptr, PDiag(DiagID) << R1 << R2);
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000307}
308
Dmitri Gribenko800ddf32012-02-14 22:14:32 +0000309void Sema::ActOnStartOfCompoundStmt() {
310 PushCompoundScope();
311}
312
313void Sema::ActOnFinishOfCompoundStmt() {
314 PopCompoundScope();
315}
316
317sema::CompoundScopeInfo &Sema::getCurCompoundScope() const {
318 return getCurFunction()->CompoundScopes.back();
319}
320
Robert Wilhelm27b2c9a32013-08-19 20:51:20 +0000321StmtResult Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
322 ArrayRef<Stmt *> Elts, bool isStmtExpr) {
323 const unsigned NumElts = Elts.size();
324
Chris Lattnerd864daf2007-08-27 04:29:41 +0000325 // If we're in C89 mode, check that we don't have any decls after stmts. If
326 // so, emit an extension diagnostic.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000327 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus) {
Chris Lattnerd864daf2007-08-27 04:29:41 +0000328 // Note that __extension__ can be around a decl.
329 unsigned i = 0;
330 // Skip over all declarations.
331 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
332 /*empty*/;
333
334 // We found the end of the list or a statement. Scan for another declstmt.
335 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
336 /*empty*/;
Mike Stump11289f42009-09-09 15:08:12 +0000337
Chris Lattnerd864daf2007-08-27 04:29:41 +0000338 if (i != NumElts) {
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000339 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerd864daf2007-08-27 04:29:41 +0000340 Diag(D->getLocation(), diag::ext_mixed_decls_code);
341 }
342 }
Chris Lattnercac27a52007-08-31 21:49:55 +0000343 // Warn about unused expressions in statements.
344 for (unsigned i = 0; i != NumElts; ++i) {
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000345 // Ignore statements that are last in a statement expression.
346 if (isStmtExpr && i == NumElts - 1)
Chris Lattnercac27a52007-08-31 21:49:55 +0000347 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000348
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000349 DiagnoseUnusedExprResult(Elts[i]);
Chris Lattnercac27a52007-08-31 21:49:55 +0000350 }
Sebastian Redl52f03ba2008-12-21 12:04:03 +0000351
Dmitri Gribenko800ddf32012-02-14 22:14:32 +0000352 // Check for suspicious empty body (null statement) in `for' and `while'
353 // statements. Don't do anything for template instantiations, this just adds
354 // noise.
355 if (NumElts != 0 && !CurrentInstantiationScope &&
356 getCurCompoundScope().HasEmptyLoopBodies) {
357 for (unsigned i = 0; i != NumElts - 1; ++i)
358 DiagnoseEmptyLoopBody(Elts[i], Elts[i + 1]);
359 }
360
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000361 return new (Context) CompoundStmt(Context, Elts, L, R);
Chris Lattneraf8d5812006-11-10 05:07:45 +0000362}
363
John McCalldadc5752010-08-24 06:29:42 +0000364StmtResult
John McCallb268a282010-08-23 23:25:46 +0000365Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
366 SourceLocation DotDotDotLoc, Expr *RHSVal,
Chris Lattner34a22092009-03-04 04:23:07 +0000367 SourceLocation ColonLoc) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000368 assert(LHSVal && "missing expression in case statement");
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000369
John McCallaab3e412010-08-25 08:40:02 +0000370 if (getCurFunction()->SwitchStack.empty()) {
Chris Lattner54f4d2b2007-07-23 17:05:23 +0000371 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner34a22092009-03-04 04:23:07 +0000372 return StmtError();
Chris Lattner54f4d2b2007-07-23 17:05:23 +0000373 }
Chris Lattner35e287b2007-06-03 01:44:43 +0000374
Kaelyn Takatab16e6322014-11-20 22:06:40 +0000375 ExprResult LHS =
376 CorrectDelayedTyposInExpr(LHSVal, [this](class Expr *E) {
377 if (!getLangOpts().CPlusPlus11)
378 return VerifyIntegerConstantExpression(E);
379 if (Expr *CondExpr =
380 getCurFunction()->SwitchStack.back()->getCond()) {
381 QualType CondType = CondExpr->getType();
382 llvm::APSInt TempVal;
383 return CheckConvertedConstantExpression(E, CondType, TempVal,
384 CCEK_CaseValue);
385 }
386 return ExprError();
387 });
388 if (LHS.isInvalid())
389 return StmtError();
390 LHSVal = LHS.get();
391
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000392 if (!getLangOpts().CPlusPlus11) {
Richard Smithf8379a02012-01-18 23:55:52 +0000393 // C99 6.8.4.2p3: The expression shall be an integer constant.
394 // However, GCC allows any evaluatable integer expression.
Richard Smithf4c51d92012-02-04 09:53:13 +0000395 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000396 LHSVal = VerifyIntegerConstantExpression(LHSVal).get();
Richard Smithf4c51d92012-02-04 09:53:13 +0000397 if (!LHSVal)
398 return StmtError();
399 }
Richard Smithf8379a02012-01-18 23:55:52 +0000400
401 // GCC extension: The expression shall be an integer constant.
402
Richard Smithf4c51d92012-02-04 09:53:13 +0000403 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000404 RHSVal = VerifyIntegerConstantExpression(RHSVal).get();
Richard Smithf4c51d92012-02-04 09:53:13 +0000405 // Recover from an error by just forgetting about it.
Richard Smithf8379a02012-01-18 23:55:52 +0000406 }
407 }
Ben Langmuir2e13dd62013-04-29 13:07:42 +0000408
Kaelyn Takatab16e6322014-11-20 22:06:40 +0000409 LHS = ActOnFinishFullExpr(LHSVal, LHSVal->getExprLoc(), false,
Richard Smith5b555da2014-11-20 01:24:12 +0000410 getLangOpts().CPlusPlus11);
411 if (LHS.isInvalid())
412 return StmtError();
Richard Smithf8379a02012-01-18 23:55:52 +0000413
Richard Smith5b555da2014-11-20 01:24:12 +0000414 auto RHS = RHSVal ? ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false,
415 getLangOpts().CPlusPlus11)
416 : ExprResult();
417 if (RHS.isInvalid())
418 return StmtError();
419
420 CaseStmt *CS = new (Context)
421 CaseStmt(LHS.get(), RHS.get(), CaseLoc, DotDotDotLoc, ColonLoc);
John McCallaab3e412010-08-25 08:40:02 +0000422 getCurFunction()->SwitchStack.back()->addSwitchCase(CS);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000423 return CS;
Chris Lattneraf8d5812006-11-10 05:07:45 +0000424}
425
Chris Lattner34a22092009-03-04 04:23:07 +0000426/// ActOnCaseStmtBody - This installs a statement as the body of a case.
John McCallb268a282010-08-23 23:25:46 +0000427void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
Chandler Carruth2b949c22011-08-18 02:04:29 +0000428 DiagnoseUnusedExprResult(SubStmt);
429
Chris Lattner34a22092009-03-04 04:23:07 +0000430 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
Chris Lattner34a22092009-03-04 04:23:07 +0000431 CS->setSubStmt(SubStmt);
432}
433
John McCalldadc5752010-08-24 06:29:42 +0000434StmtResult
Mike Stump11289f42009-09-09 15:08:12 +0000435Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
John McCallb268a282010-08-23 23:25:46 +0000436 Stmt *SubStmt, Scope *CurScope) {
Chandler Carruth2b949c22011-08-18 02:04:29 +0000437 DiagnoseUnusedExprResult(SubStmt);
438
John McCallaab3e412010-08-25 08:40:02 +0000439 if (getCurFunction()->SwitchStack.empty()) {
Chris Lattner39407372007-07-21 03:00:26 +0000440 Diag(DefaultLoc, diag::err_default_not_in_switch);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000441 return SubStmt;
Chris Lattner39407372007-07-21 03:00:26 +0000442 }
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000443
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000444 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
John McCallaab3e412010-08-25 08:40:02 +0000445 getCurFunction()->SwitchStack.back()->addSwitchCase(DS);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000446 return DS;
Chris Lattneraf8d5812006-11-10 05:07:45 +0000447}
448
John McCalldadc5752010-08-24 06:29:42 +0000449StmtResult
Chris Lattnercab02a62011-02-17 20:34:02 +0000450Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
451 SourceLocation ColonLoc, Stmt *SubStmt) {
Chris Lattnerc8e630e2011-02-17 07:39:24 +0000452 // If the label was multiply defined, reject it now.
453 if (TheDecl->getStmt()) {
454 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
455 Diag(TheDecl->getLocation(), diag::note_previous_definition);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000456 return SubStmt;
Chris Lattnere2473062007-05-28 06:28:18 +0000457 }
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000458
Chris Lattnerc8e630e2011-02-17 07:39:24 +0000459 // Otherwise, things are good. Fill in the declaration and return it.
Chris Lattnerc8e630e2011-02-17 07:39:24 +0000460 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
461 TheDecl->setStmt(LS);
Abramo Bagnara598b9432012-10-15 21:07:44 +0000462 if (!TheDecl->isGnuLocal()) {
463 TheDecl->setLocStart(IdentLoc);
Ehsan Akhgari31097582014-09-22 02:21:54 +0000464 if (!TheDecl->isMSAsmLabel()) {
465 // Don't update the location of MS ASM labels. These will result in
466 // a diagnostic, and changing the location here will mess that up.
467 TheDecl->setLocation(IdentLoc);
468 }
Abramo Bagnara598b9432012-10-15 21:07:44 +0000469 }
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000470 return LS;
Chris Lattneraf8d5812006-11-10 05:07:45 +0000471}
472
Richard Smithc202b282012-04-14 00:33:13 +0000473StmtResult Sema::ActOnAttributedStmt(SourceLocation AttrLoc,
Alexander Kornienko20f6fc62012-07-09 10:04:07 +0000474 ArrayRef<const Attr*> Attrs,
Richard Smithc202b282012-04-14 00:33:13 +0000475 Stmt *SubStmt) {
Alexander Kornienko20f6fc62012-07-09 10:04:07 +0000476 // Fill in the declaration and return it.
477 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000478 return LS;
Richard Smithc202b282012-04-14 00:33:13 +0000479}
480
John McCalldadc5752010-08-24 06:29:42 +0000481StmtResult
John McCall48871652010-08-21 09:40:31 +0000482Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
Argyrios Kyrtzidisde2bdf62010-11-20 02:04:01 +0000483 Stmt *thenStmt, SourceLocation ElseLoc,
484 Stmt *elseStmt) {
Argyrios Kyrtzidise6e422b2013-02-15 18:34:13 +0000485 // If the condition was invalid, discard the if statement. We could recover
486 // better by replacing it with a valid expr, but don't do that yet.
487 if (!CondVal.get() && !CondVar) {
488 getCurFunction()->setHasDroppedStmt();
489 return StmtError();
490 }
491
John McCalldadc5752010-08-24 06:29:42 +0000492 ExprResult CondResult(CondVal.release());
Mike Stump11289f42009-09-09 15:08:12 +0000493
Craig Topperc3ec1492014-05-26 06:22:03 +0000494 VarDecl *ConditionVar = nullptr;
John McCall48871652010-08-21 09:40:31 +0000495 if (CondVar) {
496 ConditionVar = cast<VarDecl>(CondVar);
Douglas Gregore60e41a2010-05-06 17:25:47 +0000497 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +0000498 if (CondResult.isInvalid())
499 return StmtError();
Douglas Gregor633caca2009-11-23 23:44:04 +0000500 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000501 Expr *ConditionExpr = CondResult.getAs<Expr>();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +0000502 if (!ConditionExpr)
503 return StmtError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000504
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000505 DiagnoseUnusedExprResult(thenStmt);
Steve Naroff86272ea2007-05-29 02:14:17 +0000506
John McCallb268a282010-08-23 23:25:46 +0000507 if (!elseStmt) {
Dmitri Gribenko800ddf32012-02-14 22:14:32 +0000508 DiagnoseEmptyStmtBody(ConditionExpr->getLocEnd(), thenStmt,
509 diag::warn_empty_if_body);
Anders Carlssondb83d772007-10-10 20:50:11 +0000510 }
511
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000512 DiagnoseUnusedExprResult(elseStmt);
Mike Stump11289f42009-09-09 15:08:12 +0000513
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000514 return new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
515 thenStmt, ElseLoc, elseStmt);
Chris Lattneraf8d5812006-11-10 05:07:45 +0000516}
Steve Naroff86272ea2007-05-29 02:14:17 +0000517
Chris Lattner67998452007-08-23 18:29:20 +0000518namespace {
519 struct CaseCompareFunctor {
520 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
521 const llvm::APSInt &RHS) {
522 return LHS.first < RHS;
523 }
Chris Lattner1463cca2007-09-03 18:31:57 +0000524 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
525 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
526 return LHS.first < RHS.first;
527 }
Chris Lattner67998452007-08-23 18:29:20 +0000528 bool operator()(const llvm::APSInt &LHS,
529 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
530 return LHS < RHS.first;
531 }
532 };
533}
534
Chris Lattner4b2ff022007-09-21 18:15:22 +0000535/// CmpCaseVals - Comparison predicate for sorting case values.
536///
537static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
538 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
539 if (lhs.first < rhs.first)
540 return true;
541
542 if (lhs.first == rhs.first &&
543 lhs.second->getCaseLoc().getRawEncoding()
544 < rhs.second->getCaseLoc().getRawEncoding())
545 return true;
546 return false;
547}
548
Douglas Gregorbd6839732010-02-08 22:24:16 +0000549/// CmpEnumVals - Comparison predicate for sorting enumeration values.
550///
551static bool CmpEnumVals(const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
552 const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
553{
554 return lhs.first < rhs.first;
555}
556
557/// EqEnumVals - Comparison preficate for uniqing enumeration values.
558///
559static bool EqEnumVals(const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
560 const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
561{
562 return lhs.first == rhs.first;
563}
564
Chris Lattnera96d4272009-10-16 16:45:22 +0000565/// GetTypeBeforeIntegralPromotion - Returns the pre-promotion type of
566/// potentially integral-promoted expression @p expr.
John McCall5939b162011-08-06 07:30:58 +0000567static QualType GetTypeBeforeIntegralPromotion(Expr *&expr) {
568 if (ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(expr))
569 expr = cleanups->getSubExpr();
570 while (ImplicitCastExpr *impcast = dyn_cast<ImplicitCastExpr>(expr)) {
571 if (impcast->getCastKind() != CK_IntegralCast) break;
572 expr = impcast->getSubExpr();
Chris Lattnera96d4272009-10-16 16:45:22 +0000573 }
574 return expr->getType();
575}
576
John McCalldadc5752010-08-24 06:29:42 +0000577StmtResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000578Sema::ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, Expr *Cond,
John McCall48871652010-08-21 09:40:31 +0000579 Decl *CondVar) {
John McCalldadc5752010-08-24 06:29:42 +0000580 ExprResult CondResult;
John McCallb268a282010-08-23 23:25:46 +0000581
Craig Topperc3ec1492014-05-26 06:22:03 +0000582 VarDecl *ConditionVar = nullptr;
John McCall48871652010-08-21 09:40:31 +0000583 if (CondVar) {
584 ConditionVar = cast<VarDecl>(CondVar);
John McCallb268a282010-08-23 23:25:46 +0000585 CondResult = CheckConditionVariable(ConditionVar, SourceLocation(), false);
586 if (CondResult.isInvalid())
Douglas Gregore60e41a2010-05-06 17:25:47 +0000587 return StmtError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000588
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000589 Cond = CondResult.get();
Douglas Gregore60e41a2010-05-06 17:25:47 +0000590 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000591
John McCallb268a282010-08-23 23:25:46 +0000592 if (!Cond)
Douglas Gregore60e41a2010-05-06 17:25:47 +0000593 return StmtError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000594
Douglas Gregore2b37442012-05-04 22:38:52 +0000595 class SwitchConvertDiagnoser : public ICEConvertDiagnoser {
596 Expr *Cond;
Chad Rosiercc6a9082012-06-20 18:51:04 +0000597
Douglas Gregore2b37442012-05-04 22:38:52 +0000598 public:
599 SwitchConvertDiagnoser(Expr *Cond)
Richard Smithccc11812013-05-21 19:05:48 +0000600 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/true, false, true),
601 Cond(Cond) {}
Chad Rosiercc6a9082012-06-20 18:51:04 +0000602
Craig Toppere14c0f82014-03-12 04:55:44 +0000603 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
604 QualType T) override {
Douglas Gregore2b37442012-05-04 22:38:52 +0000605 return S.Diag(Loc, diag::err_typecheck_statement_requires_integer) << T;
606 }
Chad Rosiercc6a9082012-06-20 18:51:04 +0000607
Craig Toppere14c0f82014-03-12 04:55:44 +0000608 SemaDiagnosticBuilder diagnoseIncomplete(
609 Sema &S, SourceLocation Loc, QualType T) override {
Douglas Gregore2b37442012-05-04 22:38:52 +0000610 return S.Diag(Loc, diag::err_switch_incomplete_class_type)
611 << T << Cond->getSourceRange();
612 }
Chad Rosiercc6a9082012-06-20 18:51:04 +0000613
Craig Toppere14c0f82014-03-12 04:55:44 +0000614 SemaDiagnosticBuilder diagnoseExplicitConv(
615 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
Douglas Gregore2b37442012-05-04 22:38:52 +0000616 return S.Diag(Loc, diag::err_switch_explicit_conversion) << T << ConvTy;
617 }
Chad Rosiercc6a9082012-06-20 18:51:04 +0000618
Craig Toppere14c0f82014-03-12 04:55:44 +0000619 SemaDiagnosticBuilder noteExplicitConv(
620 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
Douglas Gregore2b37442012-05-04 22:38:52 +0000621 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
622 << ConvTy->isEnumeralType() << ConvTy;
623 }
Chad Rosiercc6a9082012-06-20 18:51:04 +0000624
Craig Toppere14c0f82014-03-12 04:55:44 +0000625 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
626 QualType T) override {
Douglas Gregore2b37442012-05-04 22:38:52 +0000627 return S.Diag(Loc, diag::err_switch_multiple_conversions) << T;
628 }
Chad Rosiercc6a9082012-06-20 18:51:04 +0000629
Craig Toppere14c0f82014-03-12 04:55:44 +0000630 SemaDiagnosticBuilder noteAmbiguous(
631 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
Douglas Gregore2b37442012-05-04 22:38:52 +0000632 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
633 << ConvTy->isEnumeralType() << ConvTy;
634 }
Chad Rosiercc6a9082012-06-20 18:51:04 +0000635
Craig Toppere14c0f82014-03-12 04:55:44 +0000636 SemaDiagnosticBuilder diagnoseConversion(
637 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +0000638 llvm_unreachable("conversion functions are permitted");
Douglas Gregore2b37442012-05-04 22:38:52 +0000639 }
640 } SwitchDiagnoser(Cond);
641
Richard Smithccc11812013-05-21 19:05:48 +0000642 CondResult =
643 PerformContextualImplicitConversion(SwitchLoc, Cond, SwitchDiagnoser);
John McCallb268a282010-08-23 23:25:46 +0000644 if (CondResult.isInvalid()) return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000645 Cond = CondResult.get();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000646
John McCall5939b162011-08-06 07:30:58 +0000647 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
648 CondResult = UsualUnaryConversions(Cond);
649 if (CondResult.isInvalid()) return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000650 Cond = CondResult.get();
John McCall5939b162011-08-06 07:30:58 +0000651
John McCall48871652010-08-21 09:40:31 +0000652 if (!CondVar) {
Richard Smith945f8d32013-01-14 22:39:08 +0000653 CondResult = ActOnFinishFullExpr(Cond, SwitchLoc);
John McCallb268a282010-08-23 23:25:46 +0000654 if (CondResult.isInvalid())
Douglas Gregore60e41a2010-05-06 17:25:47 +0000655 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000656 Cond = CondResult.get();
Douglas Gregore60e41a2010-05-06 17:25:47 +0000657 }
John McCalla95172b2010-08-01 00:26:45 +0000658
John McCallaab3e412010-08-25 08:40:02 +0000659 getCurFunction()->setHasBranchIntoScope();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000660
John McCallb268a282010-08-23 23:25:46 +0000661 SwitchStmt *SS = new (Context) SwitchStmt(Context, ConditionVar, Cond);
John McCallaab3e412010-08-25 08:40:02 +0000662 getCurFunction()->SwitchStack.push_back(SS);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000663 return SS;
Chris Lattner8fd2d012010-01-24 01:50:29 +0000664}
665
Gabor Greif16e02862010-10-01 22:05:14 +0000666static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
Richard Smith077d0832014-08-04 00:40:48 +0000667 Val = Val.extOrTrunc(BitWidth);
Gabor Greif16e02862010-10-01 22:05:14 +0000668 Val.setIsSigned(IsSigned);
669}
670
Richard Smith077d0832014-08-04 00:40:48 +0000671/// Check the specified case value is in range for the given unpromoted switch
672/// type.
673static void checkCaseValue(Sema &S, SourceLocation Loc, const llvm::APSInt &Val,
674 unsigned UnpromotedWidth, bool UnpromotedSign) {
675 // If the case value was signed and negative and the switch expression is
676 // unsigned, don't bother to warn: this is implementation-defined behavior.
677 // FIXME: Introduce a second, default-ignored warning for this case?
678 if (UnpromotedWidth < Val.getBitWidth()) {
679 llvm::APSInt ConvVal(Val);
680 AdjustAPSInt(ConvVal, UnpromotedWidth, UnpromotedSign);
681 AdjustAPSInt(ConvVal, Val.getBitWidth(), Val.isSigned());
682 // FIXME: Use different diagnostics for overflow in conversion to promoted
683 // type versus "switch expression cannot have this value". Use proper
684 // IntRange checking rather than just looking at the unpromoted type here.
685 if (ConvVal != Val)
686 S.Diag(Loc, diag::warn_case_value_overflow) << Val.toString(10)
687 << ConvVal.toString(10);
688 }
689}
690
Alexis Hunt724f14e2014-11-28 00:53:20 +0000691typedef SmallVector<std::pair<llvm::APSInt, EnumConstantDecl*>, 64> EnumValsTy;
692
Dmitri Gribenko58683752013-12-05 22:52:07 +0000693/// Returns true if we should emit a diagnostic about this case expression not
694/// being a part of the enum used in the switch controlling expression.
Alexis Hunt724f14e2014-11-28 00:53:20 +0000695static bool ShouldDiagnoseSwitchCaseNotInEnum(const Sema &S,
Dmitri Gribenko58683752013-12-05 22:52:07 +0000696 const EnumDecl *ED,
Alexis Hunt724f14e2014-11-28 00:53:20 +0000697 const Expr *CaseExpr,
698 EnumValsTy::iterator &EI,
699 EnumValsTy::iterator &EIEnd,
700 const llvm::APSInt &Val) {
701 bool FlagType = ED->hasAttr<FlagEnumAttr>();
702
703 if (const DeclRefExpr *DRE =
704 dyn_cast<DeclRefExpr>(CaseExpr->IgnoreParenImpCasts())) {
Dmitri Gribenko58683752013-12-05 22:52:07 +0000705 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
Dmitri Gribenko58683752013-12-05 22:52:07 +0000706 QualType VarType = VD->getType();
Alexis Hunt724f14e2014-11-28 00:53:20 +0000707 QualType EnumType = S.Context.getTypeDeclType(ED);
708 if (VD->hasGlobalStorage() && VarType.isConstQualified() &&
709 S.Context.hasSameUnqualifiedType(EnumType, VarType))
Dmitri Gribenko58683752013-12-05 22:52:07 +0000710 return false;
711 }
712 }
Alexis Hunt724f14e2014-11-28 00:53:20 +0000713
714 if (FlagType) {
715 return !S.IsValueInFlagEnum(ED, Val, false);
716 } else {
717 while (EI != EIEnd && EI->first < Val)
718 EI++;
719
720 if (EI != EIEnd && EI->first == Val)
721 return false;
722 }
723
Dmitri Gribenko58683752013-12-05 22:52:07 +0000724 return true;
725}
726
John McCalldadc5752010-08-24 06:29:42 +0000727StmtResult
John McCallb268a282010-08-23 23:25:46 +0000728Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch,
729 Stmt *BodyStmt) {
730 SwitchStmt *SS = cast<SwitchStmt>(Switch);
John McCallaab3e412010-08-25 08:40:02 +0000731 assert(SS == getCurFunction()->SwitchStack.back() &&
732 "switch stack missing push/pop!");
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000733
David Majnemer418ad3f2014-12-15 07:46:12 +0000734 getCurFunction()->SwitchStack.pop_back();
735
Serge Pavlov921c2ba2014-05-21 14:48:43 +0000736 if (!BodyStmt) return StmtError();
Steve Naroff42a350a2007-09-01 21:08:38 +0000737 SS->setBody(BodyStmt, SwitchLoc);
Anders Carlsson51873c22007-07-22 07:07:56 +0000738
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000739 Expr *CondExpr = SS->getCond();
John McCall5939b162011-08-06 07:30:58 +0000740 if (!CondExpr) return StmtError();
741
742 QualType CondType = CondExpr->getType();
743
John McCalld3dfbd62010-05-18 03:19:21 +0000744 Expr *CondExprBeforePromotion = CondExpr;
Douglas Gregord0c22e02009-11-23 13:46:08 +0000745 QualType CondTypeBeforePromotion =
John McCall5939b162011-08-06 07:30:58 +0000746 GetTypeBeforeIntegralPromotion(CondExprBeforePromotion);
Douglas Gregord0c22e02009-11-23 13:46:08 +0000747
Chris Lattnera96d4272009-10-16 16:45:22 +0000748 // C++ 6.4.2.p2:
749 // Integral promotions are performed (on the switch condition).
750 //
751 // A case value unrepresentable by the original switch condition
752 // type (before the promotion) doesn't make sense, even when it can
753 // be represented by the promoted type. Therefore we need to find
754 // the pre-promotion type of the switch condition.
Edward O'Callaghan93135aa2009-10-17 19:32:54 +0000755 if (!CondExpr->isTypeDependent()) {
Douglas Gregor5823da32010-06-29 23:25:20 +0000756 // We have already converted the expression to an integral or enumeration
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000757 // type, when we started the switch statement. If we don't have an
Douglas Gregor5823da32010-06-29 23:25:20 +0000758 // appropriate type now, just return an error.
759 if (!CondType->isIntegralOrEnumerationType())
Edward O'Callaghan93135aa2009-10-17 19:32:54 +0000760 return StmtError();
Edward O'Callaghan93135aa2009-10-17 19:32:54 +0000761
Chris Lattner4ebae652010-04-16 23:34:13 +0000762 if (CondExpr->isKnownToHaveBooleanValue()) {
Edward O'Callaghan93135aa2009-10-17 19:32:54 +0000763 // switch(bool_expr) {...} is often a programmer error, e.g.
764 // switch(n && mask) { ... } // Doh - should be "n & mask".
765 // One can always use an if statement instead of switch(bool_expr).
766 Diag(SwitchLoc, diag::warn_bool_switch_condition)
767 << CondExpr->getSourceRange();
768 }
Anders Carlsson51873c22007-07-22 07:07:56 +0000769 }
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000770
Richard Smith077d0832014-08-04 00:40:48 +0000771 // Get the bitwidth of the switched-on value after promotions. We must
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000772 // convert the integer case values to this width before comparison.
Mike Stump11289f42009-09-09 15:08:12 +0000773 bool HasDependentValue
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000774 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
Richard Smith077d0832014-08-04 00:40:48 +0000775 unsigned CondWidth = HasDependentValue ? 0 : Context.getIntWidth(CondType);
776 bool CondIsSigned = CondType->isSignedIntegerOrEnumerationType();
777
778 // Get the width and signedness that the condition might actually have, for
779 // warning purposes.
780 // FIXME: Grab an IntRange for the condition rather than using the unpromoted
781 // type.
782 unsigned CondWidthBeforePromotion
Chris Lattnerabcf38a2011-02-24 07:31:28 +0000783 = HasDependentValue ? 0 : Context.getIntWidth(CondTypeBeforePromotion);
Richard Smith077d0832014-08-04 00:40:48 +0000784 bool CondIsSignedBeforePromotion
Douglas Gregor6ab2fa82011-05-20 16:38:50 +0000785 = CondTypeBeforePromotion->isSignedIntegerOrEnumerationType();
Mike Stump11289f42009-09-09 15:08:12 +0000786
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000787 // Accumulate all of the case values in a vector so that we can sort them
788 // and detect duplicates. This vector contains the APInt for the case after
789 // it has been converted to the condition type.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000790 typedef SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
Chris Lattner67998452007-08-23 18:29:20 +0000791 CaseValsTy CaseVals;
Mike Stump11289f42009-09-09 15:08:12 +0000792
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000793 // Keep track of any GNU case ranges we see. The APSInt is the low value.
Douglas Gregorbd6839732010-02-08 22:24:16 +0000794 typedef std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRangesTy;
795 CaseRangesTy CaseRanges;
Mike Stump11289f42009-09-09 15:08:12 +0000796
Craig Topperc3ec1492014-05-26 06:22:03 +0000797 DefaultStmt *TheDefaultStmt = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000798
Chris Lattner10cb5e52007-08-23 06:23:56 +0000799 bool CaseListIsErroneous = false;
Mike Stump11289f42009-09-09 15:08:12 +0000800
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000801 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlsson51873c22007-07-22 07:07:56 +0000802 SC = SC->getNextSwitchCase()) {
Mike Stump11289f42009-09-09 15:08:12 +0000803
Anders Carlsson51873c22007-07-22 07:07:56 +0000804 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000805 if (TheDefaultStmt) {
806 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner0369c572008-11-23 23:12:31 +0000807 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000808
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000809 // FIXME: Remove the default statement from the switch block so that
Mike Stump87c57ac2009-05-16 07:39:55 +0000810 // we'll return a valid AST. This requires recursing down the AST and
811 // finding it, not something we are set up to do right now. For now,
812 // just lop the entire switch stmt out of the AST.
Chris Lattner10cb5e52007-08-23 06:23:56 +0000813 CaseListIsErroneous = true;
Anders Carlsson51873c22007-07-22 07:07:56 +0000814 }
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000815 TheDefaultStmt = DS;
Mike Stump11289f42009-09-09 15:08:12 +0000816
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000817 } else {
818 CaseStmt *CS = cast<CaseStmt>(SC);
Mike Stump11289f42009-09-09 15:08:12 +0000819
Chris Lattnera65e1f32008-01-16 19:17:22 +0000820 Expr *Lo = CS->getLHS();
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000821
822 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
823 HasDependentValue = true;
824 break;
825 }
Mike Stump11289f42009-09-09 15:08:12 +0000826
Richard Smithf8379a02012-01-18 23:55:52 +0000827 llvm::APSInt LoVal;
Mike Stump11289f42009-09-09 15:08:12 +0000828
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000829 if (getLangOpts().CPlusPlus11) {
Richard Smithf8379a02012-01-18 23:55:52 +0000830 // C++11 [stmt.switch]p2: the constant-expression shall be a converted
831 // constant expression of the promoted type of the switch condition.
832 ExprResult ConvLo =
833 CheckConvertedConstantExpression(Lo, CondType, LoVal, CCEK_CaseValue);
834 if (ConvLo.isInvalid()) {
835 CaseListIsErroneous = true;
836 continue;
837 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000838 Lo = ConvLo.get();
Richard Smithf8379a02012-01-18 23:55:52 +0000839 } else {
840 // We already verified that the expression has a i-c-e value (C99
841 // 6.8.4.2p3) - get that value now.
Fariborz Jahaniane735ff92013-01-24 22:11:45 +0000842 LoVal = Lo->EvaluateKnownConstInt(Context);
Richard Smithf8379a02012-01-18 23:55:52 +0000843
844 // If the LHS is not the same type as the condition, insert an implicit
845 // cast.
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000846 Lo = DefaultLvalueConversion(Lo).get();
847 Lo = ImpCastExprToType(Lo, CondType, CK_IntegralCast).get();
Richard Smithf8379a02012-01-18 23:55:52 +0000848 }
849
Richard Smith077d0832014-08-04 00:40:48 +0000850 // Check the unconverted value is within the range of possible values of
851 // the switch expression.
852 checkCaseValue(*this, Lo->getLocStart(), LoVal,
853 CondWidthBeforePromotion, CondIsSignedBeforePromotion);
854
855 // Convert the value to the same width/sign as the condition.
856 AdjustAPSInt(LoVal, CondWidth, CondIsSigned);
Anders Carlsson51873c22007-07-22 07:07:56 +0000857
Chris Lattnera65e1f32008-01-16 19:17:22 +0000858 CS->setLHS(Lo);
Mike Stump11289f42009-09-09 15:08:12 +0000859
Chris Lattner10cb5e52007-08-23 06:23:56 +0000860 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000861 if (CS->getRHS()) {
Mike Stump11289f42009-09-09 15:08:12 +0000862 if (CS->getRHS()->isTypeDependent() ||
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000863 CS->getRHS()->isValueDependent()) {
864 HasDependentValue = true;
865 break;
866 }
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000867 CaseRanges.push_back(std::make_pair(LoVal, CS));
Mike Stump11289f42009-09-09 15:08:12 +0000868 } else
Chris Lattner10cb5e52007-08-23 06:23:56 +0000869 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000870 }
871 }
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000872
873 if (!HasDependentValue) {
John McCalld3dfbd62010-05-18 03:19:21 +0000874 // If we don't have a default statement, check whether the
875 // condition is constant.
876 llvm::APSInt ConstantCondValue;
877 bool HasConstantCond = false;
John McCalld3dfbd62010-05-18 03:19:21 +0000878 if (!HasDependentValue && !TheDefaultStmt) {
Richard Smith077d0832014-08-04 00:40:48 +0000879 HasConstantCond = CondExpr->EvaluateAsInt(ConstantCondValue, Context,
880 Expr::SE_AllowSideEffects);
Richard Smith5fab0c92011-12-28 19:48:30 +0000881 assert(!HasConstantCond ||
882 (ConstantCondValue.getBitWidth() == CondWidth &&
883 ConstantCondValue.isSigned() == CondIsSigned));
John McCalld3dfbd62010-05-18 03:19:21 +0000884 }
Richard Smith5fab0c92011-12-28 19:48:30 +0000885 bool ShouldCheckConstantCond = HasConstantCond;
John McCalld3dfbd62010-05-18 03:19:21 +0000886
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000887 // Sort all the scalar case values so we can easily detect duplicates.
888 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
889
890 if (!CaseVals.empty()) {
John McCalld3dfbd62010-05-18 03:19:21 +0000891 for (unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
892 if (ShouldCheckConstantCond &&
893 CaseVals[i].first == ConstantCondValue)
894 ShouldCheckConstantCond = false;
895
896 if (i != 0 && CaseVals[i].first == CaseVals[i-1].first) {
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000897 // If we have a duplicate, report it.
Douglas Gregor9841df62012-05-16 05:32:58 +0000898 // First, determine if either case value has a name
899 StringRef PrevString, CurrString;
900 Expr *PrevCase = CaseVals[i-1].second->getLHS()->IgnoreParenCasts();
901 Expr *CurrCase = CaseVals[i].second->getLHS()->IgnoreParenCasts();
902 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
903 PrevString = DeclRef->getDecl()->getName();
904 }
905 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
906 CurrString = DeclRef->getDecl()->getName();
907 }
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000908 SmallString<16> CaseValStr;
Douglas Gregor0a9f4e02012-05-16 16:11:17 +0000909 CaseVals[i-1].first.toString(CaseValStr);
Douglas Gregor9841df62012-05-16 05:32:58 +0000910
911 if (PrevString == CurrString)
912 Diag(CaseVals[i].second->getLHS()->getLocStart(),
913 diag::err_duplicate_case) <<
Yaron Keren49c63692015-03-18 10:26:22 +0000914 (PrevString.empty() ? StringRef(CaseValStr) : PrevString);
Douglas Gregor9841df62012-05-16 05:32:58 +0000915 else
916 Diag(CaseVals[i].second->getLHS()->getLocStart(),
917 diag::err_duplicate_case_differing_expr) <<
Yaron Keren49c63692015-03-18 10:26:22 +0000918 (PrevString.empty() ? StringRef(CaseValStr) : PrevString) <<
919 (CurrString.empty() ? StringRef(CaseValStr) : CurrString) <<
Douglas Gregor9841df62012-05-16 05:32:58 +0000920 CaseValStr;
921
John McCalld3dfbd62010-05-18 03:19:21 +0000922 Diag(CaseVals[i-1].second->getLHS()->getLocStart(),
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000923 diag::note_duplicate_case_prev);
Mike Stump87c57ac2009-05-16 07:39:55 +0000924 // FIXME: We really want to remove the bogus case stmt from the
925 // substmt, but we have no way to do this right now.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000926 CaseListIsErroneous = true;
927 }
928 }
929 }
Mike Stump11289f42009-09-09 15:08:12 +0000930
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000931 // Detect duplicate case ranges, which usually don't exist at all in
932 // the first place.
933 if (!CaseRanges.empty()) {
934 // Sort all the case ranges by their low value so we can easily detect
935 // overlaps between ranges.
936 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Mike Stump11289f42009-09-09 15:08:12 +0000937
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000938 // Scan the ranges, computing the high values and removing empty ranges.
939 std::vector<llvm::APSInt> HiVals;
940 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
John McCalld3dfbd62010-05-18 03:19:21 +0000941 llvm::APSInt &LoVal = CaseRanges[i].first;
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000942 CaseStmt *CR = CaseRanges[i].second;
943 Expr *Hi = CR->getRHS();
Richard Smithf8379a02012-01-18 23:55:52 +0000944 llvm::APSInt HiVal;
945
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000946 if (getLangOpts().CPlusPlus11) {
Richard Smithf8379a02012-01-18 23:55:52 +0000947 // C++11 [stmt.switch]p2: the constant-expression shall be a converted
948 // constant expression of the promoted type of the switch condition.
949 ExprResult ConvHi =
950 CheckConvertedConstantExpression(Hi, CondType, HiVal,
951 CCEK_CaseValue);
952 if (ConvHi.isInvalid()) {
953 CaseListIsErroneous = true;
954 continue;
955 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000956 Hi = ConvHi.get();
Richard Smithf8379a02012-01-18 23:55:52 +0000957 } else {
958 HiVal = Hi->EvaluateKnownConstInt(Context);
959
960 // If the RHS is not the same type as the condition, insert an
961 // implicit cast.
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000962 Hi = DefaultLvalueConversion(Hi).get();
963 Hi = ImpCastExprToType(Hi, CondType, CK_IntegralCast).get();
Richard Smithf8379a02012-01-18 23:55:52 +0000964 }
Mike Stump11289f42009-09-09 15:08:12 +0000965
Richard Smith077d0832014-08-04 00:40:48 +0000966 // Check the unconverted value is within the range of possible values of
967 // the switch expression.
968 checkCaseValue(*this, Hi->getLocStart(), HiVal,
969 CondWidthBeforePromotion, CondIsSignedBeforePromotion);
970
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000971 // Convert the value to the same width/sign as the condition.
Richard Smith077d0832014-08-04 00:40:48 +0000972 AdjustAPSInt(HiVal, CondWidth, CondIsSigned);
Mike Stump11289f42009-09-09 15:08:12 +0000973
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000974 CR->setRHS(Hi);
Mike Stump11289f42009-09-09 15:08:12 +0000975
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000976 // If the low value is bigger than the high value, the case is empty.
John McCalld3dfbd62010-05-18 03:19:21 +0000977 if (LoVal > HiVal) {
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000978 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
979 << SourceRange(CR->getLHS()->getLocStart(),
Gabor Greif16e02862010-10-01 22:05:14 +0000980 Hi->getLocEnd());
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000981 CaseRanges.erase(CaseRanges.begin()+i);
982 --i, --e;
983 continue;
984 }
John McCalld3dfbd62010-05-18 03:19:21 +0000985
986 if (ShouldCheckConstantCond &&
987 LoVal <= ConstantCondValue &&
988 ConstantCondValue <= HiVal)
989 ShouldCheckConstantCond = false;
990
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000991 HiVals.push_back(HiVal);
992 }
Mike Stump11289f42009-09-09 15:08:12 +0000993
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000994 // Rescan the ranges, looking for overlap with singleton values and other
995 // ranges. Since the range list is sorted, we only need to compare case
996 // ranges with their neighbors.
997 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
998 llvm::APSInt &CRLo = CaseRanges[i].first;
999 llvm::APSInt &CRHi = HiVals[i];
1000 CaseStmt *CR = CaseRanges[i].second;
Mike Stump11289f42009-09-09 15:08:12 +00001001
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001002 // Check to see whether the case range overlaps with any
1003 // singleton cases.
Craig Topperc3ec1492014-05-26 06:22:03 +00001004 CaseStmt *OverlapStmt = nullptr;
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001005 llvm::APSInt OverlapVal(32);
Mike Stump11289f42009-09-09 15:08:12 +00001006
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001007 // Find the smallest value >= the lower bound. If I is in the
1008 // case range, then we have overlap.
1009 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
1010 CaseVals.end(), CRLo,
1011 CaseCompareFunctor());
1012 if (I != CaseVals.end() && I->first < CRHi) {
1013 OverlapVal = I->first; // Found overlap with scalar.
1014 OverlapStmt = I->second;
1015 }
Mike Stump11289f42009-09-09 15:08:12 +00001016
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001017 // Find the smallest value bigger than the upper bound.
1018 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
1019 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
1020 OverlapVal = (I-1)->first; // Found overlap with scalar.
1021 OverlapStmt = (I-1)->second;
1022 }
Mike Stump11289f42009-09-09 15:08:12 +00001023
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001024 // Check to see if this case stmt overlaps with the subsequent
1025 // case range.
1026 if (i && CRLo <= HiVals[i-1]) {
1027 OverlapVal = HiVals[i-1]; // Found overlap with range.
1028 OverlapStmt = CaseRanges[i-1].second;
1029 }
Mike Stump11289f42009-09-09 15:08:12 +00001030
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001031 if (OverlapStmt) {
1032 // If we have a duplicate, report it.
1033 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
1034 << OverlapVal.toString(10);
Mike Stump11289f42009-09-09 15:08:12 +00001035 Diag(OverlapStmt->getLHS()->getLocStart(),
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001036 diag::note_duplicate_case_prev);
Mike Stump87c57ac2009-05-16 07:39:55 +00001037 // FIXME: We really want to remove the bogus case stmt from the
1038 // substmt, but we have no way to do this right now.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +00001039 CaseListIsErroneous = true;
1040 }
Chris Lattnerfcb920d2007-08-23 14:29:07 +00001041 }
Chris Lattner10cb5e52007-08-23 06:23:56 +00001042 }
Douglas Gregorbd6839732010-02-08 22:24:16 +00001043
John McCalld3dfbd62010-05-18 03:19:21 +00001044 // Complain if we have a constant condition and we didn't find a match.
1045 if (!CaseListIsErroneous && ShouldCheckConstantCond) {
1046 // TODO: it would be nice if we printed enums as enums, chars as
1047 // chars, etc.
1048 Diag(CondExpr->getExprLoc(), diag::warn_missing_case_for_condition)
1049 << ConstantCondValue.toString(10)
1050 << CondExpr->getSourceRange();
1051 }
1052
1053 // Check to see if switch is over an Enum and handles all of its
Ted Kremenekc42f3452010-09-09 00:05:53 +00001054 // values. We only issue a warning if there is not 'default:', but
1055 // we still do the analysis to preserve this information in the AST
1056 // (which can be used by flow-based analyes).
John McCalld3dfbd62010-05-18 03:19:21 +00001057 //
Chris Lattner51679082010-09-16 17:09:42 +00001058 const EnumType *ET = CondTypeBeforePromotion->getAs<EnumType>();
Ted Kremenekc42f3452010-09-09 00:05:53 +00001059
Douglas Gregorbd6839732010-02-08 22:24:16 +00001060 // If switch has default case, then ignore it.
Ted Kremenekc42f3452010-09-09 00:05:53 +00001061 if (!CaseListIsErroneous && !HasConstantCond && ET) {
Douglas Gregorbd6839732010-02-08 22:24:16 +00001062 const EnumDecl *ED = ET->getDecl();
Douglas Gregorbd6839732010-02-08 22:24:16 +00001063 EnumValsTy EnumVals;
1064
John McCalld3dfbd62010-05-18 03:19:21 +00001065 // Gather all enum values, set their type and sort them,
1066 // allowing easier comparison with CaseVals.
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001067 for (auto *EDI : ED->enumerators()) {
Gabor Greif16e02862010-10-01 22:05:14 +00001068 llvm::APSInt Val = EDI->getInitVal();
1069 AdjustAPSInt(Val, CondWidth, CondIsSigned);
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001070 EnumVals.push_back(std::make_pair(Val, EDI));
Douglas Gregorbd6839732010-02-08 22:24:16 +00001071 }
1072 std::stable_sort(EnumVals.begin(), EnumVals.end(), CmpEnumVals);
Alexis Hunt724f14e2014-11-28 00:53:20 +00001073 auto EI = EnumVals.begin(), EIEnd =
John McCalld3dfbd62010-05-18 03:19:21 +00001074 std::unique(EnumVals.begin(), EnumVals.end(), EqEnumVals);
Ted Kremenekc42f3452010-09-09 00:05:53 +00001075
1076 // See which case values aren't in enum.
David Blaikiee476f972012-01-22 02:31:55 +00001077 for (CaseValsTy::const_iterator CI = CaseVals.begin();
Alexis Hunt724f14e2014-11-28 00:53:20 +00001078 CI != CaseVals.end(); CI++) {
1079 Expr *CaseExpr = CI->second->getLHS();
1080 if (ShouldDiagnoseSwitchCaseNotInEnum(*this, ED, CaseExpr, EI, EIEnd,
1081 CI->first))
1082 Diag(CaseExpr->getExprLoc(), diag::warn_not_in_enum)
1083 << CondTypeBeforePromotion;
David Blaikiee476f972012-01-22 02:31:55 +00001084 }
Alexis Hunt724f14e2014-11-28 00:53:20 +00001085
David Blaikiee476f972012-01-22 02:31:55 +00001086 // See which of case ranges aren't in enum
1087 EI = EnumVals.begin();
1088 for (CaseRangesTy::const_iterator RI = CaseRanges.begin();
Alexis Hunt724f14e2014-11-28 00:53:20 +00001089 RI != CaseRanges.end(); RI++) {
1090 Expr *CaseExpr = RI->second->getLHS();
1091 if (ShouldDiagnoseSwitchCaseNotInEnum(*this, ED, CaseExpr, EI, EIEnd,
1092 RI->first))
1093 Diag(CaseExpr->getExprLoc(), diag::warn_not_in_enum)
1094 << CondTypeBeforePromotion;
David Blaikiee476f972012-01-22 02:31:55 +00001095
Chad Rosier02a84392012-08-10 17:56:09 +00001096 llvm::APSInt Hi =
David Blaikiee476f972012-01-22 02:31:55 +00001097 RI->second->getRHS()->EvaluateKnownConstInt(Context);
1098 AdjustAPSInt(Hi, CondWidth, CondIsSigned);
Alexis Hunt724f14e2014-11-28 00:53:20 +00001099
1100 CaseExpr = RI->second->getRHS();
1101 if (ShouldDiagnoseSwitchCaseNotInEnum(*this, ED, CaseExpr, EI, EIEnd,
1102 Hi))
1103 Diag(CaseExpr->getExprLoc(), diag::warn_not_in_enum)
1104 << CondTypeBeforePromotion;
Douglas Gregorbd6839732010-02-08 22:24:16 +00001105 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001106
Ted Kremenekc42f3452010-09-09 00:05:53 +00001107 // Check which enum vals aren't in switch
Alexis Hunt724f14e2014-11-28 00:53:20 +00001108 auto CI = CaseVals.begin();
1109 auto RI = CaseRanges.begin();
Ted Kremenekc42f3452010-09-09 00:05:53 +00001110 bool hasCasesNotInSwitch = false;
1111
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001112 SmallVector<DeclarationName,8> UnhandledNames;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001113
Alexis Hunt724f14e2014-11-28 00:53:20 +00001114 for (EI = EnumVals.begin(); EI != EIEnd; EI++){
Chris Lattner51679082010-09-16 17:09:42 +00001115 // Drop unneeded case values
Douglas Gregorbd6839732010-02-08 22:24:16 +00001116 while (CI != CaseVals.end() && CI->first < EI->first)
1117 CI++;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001118
Douglas Gregorbd6839732010-02-08 22:24:16 +00001119 if (CI != CaseVals.end() && CI->first == EI->first)
1120 continue;
1121
Ted Kremenekc42f3452010-09-09 00:05:53 +00001122 // Drop unneeded case ranges
Douglas Gregorbd6839732010-02-08 22:24:16 +00001123 for (; RI != CaseRanges.end(); RI++) {
Richard Smithcaf33902011-10-10 18:28:20 +00001124 llvm::APSInt Hi =
1125 RI->second->getRHS()->EvaluateKnownConstInt(Context);
Gabor Greif16e02862010-10-01 22:05:14 +00001126 AdjustAPSInt(Hi, CondWidth, CondIsSigned);
Douglas Gregorbd6839732010-02-08 22:24:16 +00001127 if (EI->first <= Hi)
1128 break;
1129 }
1130
Ted Kremenekc42f3452010-09-09 00:05:53 +00001131 if (RI == CaseRanges.end() || EI->first < RI->first) {
Ted Kremenek02627a22010-09-09 06:53:59 +00001132 hasCasesNotInSwitch = true;
David Blaikie645ae0c2012-01-21 18:12:07 +00001133 UnhandledNames.push_back(EI->second->getDeclName());
Ted Kremenek02627a22010-09-09 06:53:59 +00001134 }
Douglas Gregorbd6839732010-02-08 22:24:16 +00001135 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001136
David Blaikie60ac6382012-01-23 04:46:12 +00001137 if (TheDefaultStmt && UnhandledNames.empty())
1138 Diag(TheDefaultStmt->getDefaultLoc(), diag::warn_unreachable_default);
David Blaikie645ae0c2012-01-21 18:12:07 +00001139
Chris Lattner51679082010-09-16 17:09:42 +00001140 // Produce a nice diagnostic if multiple values aren't handled.
Benjamin Kramer3a8650a2015-03-27 17:23:14 +00001141 if (!UnhandledNames.empty()) {
1142 DiagnosticBuilder DB = Diag(CondExpr->getExprLoc(),
1143 TheDefaultStmt ? diag::warn_def_missing_case
1144 : diag::warn_missing_case)
1145 << (int)UnhandledNames.size();
1146
1147 for (size_t I = 0, E = std::min(UnhandledNames.size(), (size_t)3);
1148 I != E; ++I)
1149 DB << UnhandledNames[I];
Chris Lattner51679082010-09-16 17:09:42 +00001150 }
Ted Kremenekc42f3452010-09-09 00:05:53 +00001151
1152 if (!hasCasesNotInSwitch)
Ted Kremenek02627a22010-09-09 06:53:59 +00001153 SS->setAllEnumCasesCovered();
Douglas Gregorbd6839732010-02-08 22:24:16 +00001154 }
Chris Lattner10cb5e52007-08-23 06:23:56 +00001155 }
Chris Lattner10cb5e52007-08-23 06:23:56 +00001156
Serge Pavlov921c2ba2014-05-21 14:48:43 +00001157 if (BodyStmt)
1158 DiagnoseEmptyStmtBody(CondExpr->getLocEnd(), BodyStmt,
1159 diag::warn_empty_switch_body);
Dmitri Gribenko800ddf32012-02-14 22:14:32 +00001160
Mike Stump87c57ac2009-05-16 07:39:55 +00001161 // FIXME: If the case list was broken is some way, we don't have a good system
1162 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattner10cb5e52007-08-23 06:23:56 +00001163 if (CaseListIsErroneous)
Sebastian Redl6a8002e2009-01-11 00:38:46 +00001164 return StmtError();
1165
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001166 return SS;
Chris Lattneraf8d5812006-11-10 05:07:45 +00001167}
1168
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001169void
1170Sema::DiagnoseAssignmentEnum(QualType DstType, QualType SrcType,
1171 Expr *SrcExpr) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001172 if (Diags.isIgnored(diag::warn_not_in_enum_assignment, SrcExpr->getExprLoc()))
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001173 return;
Chad Rosier02a84392012-08-10 17:56:09 +00001174
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001175 if (const EnumType *ET = DstType->getAs<EnumType>())
Dmitri Gribenkoe6ac50a2013-12-05 23:06:53 +00001176 if (!Context.hasSameUnqualifiedType(SrcType, DstType) &&
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001177 SrcType->isIntegerType()) {
1178 if (!SrcExpr->isTypeDependent() && !SrcExpr->isValueDependent() &&
1179 SrcExpr->isIntegerConstantExpr(Context)) {
1180 // Get the bitwidth of the enum value before promotions.
Joey Gouly1ba27332013-06-06 13:48:00 +00001181 unsigned DstWidth = Context.getIntWidth(DstType);
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001182 bool DstIsSigned = DstType->isSignedIntegerOrEnumerationType();
1183
1184 llvm::APSInt RhsVal = SrcExpr->EvaluateKnownConstInt(Context);
Joey Gouly1ba27332013-06-06 13:48:00 +00001185 AdjustAPSInt(RhsVal, DstWidth, DstIsSigned);
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001186 const EnumDecl *ED = ET->getDecl();
Chad Rosier02a84392012-08-10 17:56:09 +00001187
Alexis Hunt724f14e2014-11-28 00:53:20 +00001188 if (ED->hasAttr<FlagEnumAttr>()) {
1189 if (!IsValueInFlagEnum(ED, RhsVal, true))
1190 Diag(SrcExpr->getExprLoc(), diag::warn_not_in_enum_assignment)
Dmitri Gribenkoe6ac50a2013-12-05 23:06:53 +00001191 << DstType.getUnqualifiedType();
Alexis Hunt724f14e2014-11-28 00:53:20 +00001192 } else {
1193 typedef SmallVector<std::pair<llvm::APSInt, EnumConstantDecl *>, 64>
1194 EnumValsTy;
1195 EnumValsTy EnumVals;
1196
1197 // Gather all enum values, set their type and sort them,
1198 // allowing easier comparison with rhs constant.
1199 for (auto *EDI : ED->enumerators()) {
1200 llvm::APSInt Val = EDI->getInitVal();
1201 AdjustAPSInt(Val, DstWidth, DstIsSigned);
1202 EnumVals.push_back(std::make_pair(Val, EDI));
1203 }
1204 if (EnumVals.empty())
1205 return;
1206 std::stable_sort(EnumVals.begin(), EnumVals.end(), CmpEnumVals);
1207 EnumValsTy::iterator EIend =
1208 std::unique(EnumVals.begin(), EnumVals.end(), EqEnumVals);
1209
1210 // See which values aren't in the enum.
1211 EnumValsTy::const_iterator EI = EnumVals.begin();
1212 while (EI != EIend && EI->first < RhsVal)
1213 EI++;
1214 if (EI == EIend || EI->first != RhsVal) {
1215 Diag(SrcExpr->getExprLoc(), diag::warn_not_in_enum_assignment)
1216 << DstType.getUnqualifiedType();
1217 }
Fariborz Jahanian268fec12012-07-17 18:00:08 +00001218 }
1219 }
1220 }
1221}
1222
John McCalldadc5752010-08-24 06:29:42 +00001223StmtResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001224Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond,
John McCallb268a282010-08-23 23:25:46 +00001225 Decl *CondVar, Stmt *Body) {
John McCalldadc5752010-08-24 06:29:42 +00001226 ExprResult CondResult(Cond.release());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001227
Craig Topperc3ec1492014-05-26 06:22:03 +00001228 VarDecl *ConditionVar = nullptr;
John McCall48871652010-08-21 09:40:31 +00001229 if (CondVar) {
1230 ConditionVar = cast<VarDecl>(CondVar);
Douglas Gregore60e41a2010-05-06 17:25:47 +00001231 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001232 if (CondResult.isInvalid())
1233 return StmtError();
Douglas Gregor680f8612009-11-24 21:15:44 +00001234 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001235 Expr *ConditionExpr = CondResult.get();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001236 if (!ConditionExpr)
1237 return StmtError();
Serge Pavlov09f99242014-01-23 15:05:00 +00001238 CheckBreakContinueBinding(ConditionExpr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001239
John McCallb268a282010-08-23 23:25:46 +00001240 DiagnoseUnusedExprResult(Body);
Mike Stump11289f42009-09-09 15:08:12 +00001241
Dmitri Gribenko800ddf32012-02-14 22:14:32 +00001242 if (isa<NullStmt>(Body))
1243 getCurCompoundScope().setHasEmptyLoopBodies();
1244
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001245 return new (Context)
1246 WhileStmt(Context, ConditionVar, ConditionExpr, Body, WhileLoc);
Chris Lattneraf8d5812006-11-10 05:07:45 +00001247}
1248
John McCalldadc5752010-08-24 06:29:42 +00001249StmtResult
John McCallb268a282010-08-23 23:25:46 +00001250Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
Chris Lattner815b70e2009-06-12 23:04:47 +00001251 SourceLocation WhileLoc, SourceLocation CondLParen,
John McCallb268a282010-08-23 23:25:46 +00001252 Expr *Cond, SourceLocation CondRParen) {
1253 assert(Cond && "ActOnDoStmt(): missing expression");
Sebastian Redlfbfaafc2009-01-16 23:28:06 +00001254
Serge Pavlov09f99242014-01-23 15:05:00 +00001255 CheckBreakContinueBinding(Cond);
John Wiegley01296292011-04-08 18:41:53 +00001256 ExprResult CondResult = CheckBooleanCondition(Cond, DoLoc);
Dmitri Gribenkod4bc5ac2012-11-18 22:28:42 +00001257 if (CondResult.isInvalid())
John McCalld5707ab2009-10-12 21:59:07 +00001258 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001259 Cond = CondResult.get();
Steve Naroff86272ea2007-05-29 02:14:17 +00001260
Richard Smith945f8d32013-01-14 22:39:08 +00001261 CondResult = ActOnFinishFullExpr(Cond, DoLoc);
John McCallb268a282010-08-23 23:25:46 +00001262 if (CondResult.isInvalid())
Douglas Gregore60e41a2010-05-06 17:25:47 +00001263 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001264 Cond = CondResult.get();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001265
John McCallb268a282010-08-23 23:25:46 +00001266 DiagnoseUnusedExprResult(Body);
Anders Carlsson5c5f1602009-07-30 22:39:03 +00001267
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001268 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
Chris Lattneraf8d5812006-11-10 05:07:45 +00001269}
1270
Richard Trieu451a5db2012-04-30 18:01:30 +00001271namespace {
1272 // This visitor will traverse a conditional statement and store all
1273 // the evaluated decls into a vector. Simple is set to true if none
1274 // of the excluded constructs are used.
1275 class DeclExtractor : public EvaluatedExprVisitor<DeclExtractor> {
Craig Topper4dd9b432014-08-17 23:49:53 +00001276 llvm::SmallPtrSetImpl<VarDecl*> &Decls;
Craig Topperfa159c12013-07-14 16:47:36 +00001277 SmallVectorImpl<SourceRange> &Ranges;
Richard Trieu451a5db2012-04-30 18:01:30 +00001278 bool Simple;
Richard Trieu9d228802013-05-31 22:46:45 +00001279 public:
1280 typedef EvaluatedExprVisitor<DeclExtractor> Inherited;
Richard Trieu451a5db2012-04-30 18:01:30 +00001281
Craig Topper4dd9b432014-08-17 23:49:53 +00001282 DeclExtractor(Sema &S, llvm::SmallPtrSetImpl<VarDecl*> &Decls,
Craig Topperfa159c12013-07-14 16:47:36 +00001283 SmallVectorImpl<SourceRange> &Ranges) :
Richard Trieu9d228802013-05-31 22:46:45 +00001284 Inherited(S.Context),
1285 Decls(Decls),
1286 Ranges(Ranges),
1287 Simple(true) {}
Richard Trieu451a5db2012-04-30 18:01:30 +00001288
Richard Trieu9d228802013-05-31 22:46:45 +00001289 bool isSimple() { return Simple; }
Richard Trieu451a5db2012-04-30 18:01:30 +00001290
Richard Trieu9d228802013-05-31 22:46:45 +00001291 // Replaces the method in EvaluatedExprVisitor.
1292 void VisitMemberExpr(MemberExpr* E) {
Richard Trieu451a5db2012-04-30 18:01:30 +00001293 Simple = false;
Richard Trieu9d228802013-05-31 22:46:45 +00001294 }
1295
1296 // Any Stmt not whitelisted will cause the condition to be marked complex.
1297 void VisitStmt(Stmt *S) {
1298 Simple = false;
1299 }
1300
1301 void VisitBinaryOperator(BinaryOperator *E) {
1302 Visit(E->getLHS());
1303 Visit(E->getRHS());
1304 }
1305
1306 void VisitCastExpr(CastExpr *E) {
Richard Trieu451a5db2012-04-30 18:01:30 +00001307 Visit(E->getSubExpr());
Richard Trieu9d228802013-05-31 22:46:45 +00001308 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001309
Richard Trieu9d228802013-05-31 22:46:45 +00001310 void VisitUnaryOperator(UnaryOperator *E) {
1311 // Skip checking conditionals with derefernces.
1312 if (E->getOpcode() == UO_Deref)
1313 Simple = false;
1314 else
1315 Visit(E->getSubExpr());
1316 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001317
Richard Trieu9d228802013-05-31 22:46:45 +00001318 void VisitConditionalOperator(ConditionalOperator *E) {
1319 Visit(E->getCond());
1320 Visit(E->getTrueExpr());
1321 Visit(E->getFalseExpr());
1322 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001323
Richard Trieu9d228802013-05-31 22:46:45 +00001324 void VisitParenExpr(ParenExpr *E) {
1325 Visit(E->getSubExpr());
1326 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001327
Richard Trieu9d228802013-05-31 22:46:45 +00001328 void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
1329 Visit(E->getOpaqueValue()->getSourceExpr());
1330 Visit(E->getFalseExpr());
1331 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001332
Richard Trieu9d228802013-05-31 22:46:45 +00001333 void VisitIntegerLiteral(IntegerLiteral *E) { }
1334 void VisitFloatingLiteral(FloatingLiteral *E) { }
1335 void VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { }
1336 void VisitCharacterLiteral(CharacterLiteral *E) { }
1337 void VisitGNUNullExpr(GNUNullExpr *E) { }
1338 void VisitImaginaryLiteral(ImaginaryLiteral *E) { }
Richard Trieu451a5db2012-04-30 18:01:30 +00001339
Richard Trieu9d228802013-05-31 22:46:45 +00001340 void VisitDeclRefExpr(DeclRefExpr *E) {
1341 VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
1342 if (!VD) return;
Richard Trieu451a5db2012-04-30 18:01:30 +00001343
Richard Trieu9d228802013-05-31 22:46:45 +00001344 Ranges.push_back(E->getSourceRange());
1345
1346 Decls.insert(VD);
1347 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001348
1349 }; // end class DeclExtractor
1350
1351 // DeclMatcher checks to see if the decls are used in a non-evauluated
Chad Rosier02a84392012-08-10 17:56:09 +00001352 // context.
Richard Trieu451a5db2012-04-30 18:01:30 +00001353 class DeclMatcher : public EvaluatedExprVisitor<DeclMatcher> {
Craig Topper4dd9b432014-08-17 23:49:53 +00001354 llvm::SmallPtrSetImpl<VarDecl*> &Decls;
Richard Trieu451a5db2012-04-30 18:01:30 +00001355 bool FoundDecl;
Richard Trieu451a5db2012-04-30 18:01:30 +00001356
Richard Trieu9d228802013-05-31 22:46:45 +00001357 public:
1358 typedef EvaluatedExprVisitor<DeclMatcher> Inherited;
Richard Trieu451a5db2012-04-30 18:01:30 +00001359
Craig Topper4dd9b432014-08-17 23:49:53 +00001360 DeclMatcher(Sema &S, llvm::SmallPtrSetImpl<VarDecl*> &Decls,
Richard Trieu9d228802013-05-31 22:46:45 +00001361 Stmt *Statement) :
1362 Inherited(S.Context), Decls(Decls), FoundDecl(false) {
1363 if (!Statement) return;
Richard Trieu451a5db2012-04-30 18:01:30 +00001364
Richard Trieu9d228802013-05-31 22:46:45 +00001365 Visit(Statement);
Richard Trieu451a5db2012-04-30 18:01:30 +00001366 }
1367
Richard Trieu9d228802013-05-31 22:46:45 +00001368 void VisitReturnStmt(ReturnStmt *S) {
1369 FoundDecl = true;
Richard Trieu451a5db2012-04-30 18:01:30 +00001370 }
1371
Richard Trieu9d228802013-05-31 22:46:45 +00001372 void VisitBreakStmt(BreakStmt *S) {
1373 FoundDecl = true;
Richard Trieu451a5db2012-04-30 18:01:30 +00001374 }
1375
Richard Trieu9d228802013-05-31 22:46:45 +00001376 void VisitGotoStmt(GotoStmt *S) {
1377 FoundDecl = true;
1378 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001379
Richard Trieu9d228802013-05-31 22:46:45 +00001380 void VisitCastExpr(CastExpr *E) {
1381 if (E->getCastKind() == CK_LValueToRValue)
1382 CheckLValueToRValueCast(E->getSubExpr());
1383 else
1384 Visit(E->getSubExpr());
1385 }
Richard Trieu451a5db2012-04-30 18:01:30 +00001386
Richard Trieu9d228802013-05-31 22:46:45 +00001387 void CheckLValueToRValueCast(Expr *E) {
1388 E = E->IgnoreParenImpCasts();
1389
1390 if (isa<DeclRefExpr>(E)) {
1391 return;
1392 }
1393
1394 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1395 Visit(CO->getCond());
1396 CheckLValueToRValueCast(CO->getTrueExpr());
1397 CheckLValueToRValueCast(CO->getFalseExpr());
1398 return;
1399 }
1400
1401 if (BinaryConditionalOperator *BCO =
1402 dyn_cast<BinaryConditionalOperator>(E)) {
1403 CheckLValueToRValueCast(BCO->getOpaqueValue()->getSourceExpr());
1404 CheckLValueToRValueCast(BCO->getFalseExpr());
1405 return;
1406 }
1407
1408 Visit(E);
1409 }
1410
1411 void VisitDeclRefExpr(DeclRefExpr *E) {
1412 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
1413 if (Decls.count(VD))
1414 FoundDecl = true;
1415 }
1416
1417 bool FoundDeclInUse() { return FoundDecl; }
Richard Trieu451a5db2012-04-30 18:01:30 +00001418
1419 }; // end class DeclMatcher
1420
1421 void CheckForLoopConditionalStatement(Sema &S, Expr *Second,
1422 Expr *Third, Stmt *Body) {
1423 // Condition is empty
1424 if (!Second) return;
1425
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001426 if (S.Diags.isIgnored(diag::warn_variables_not_in_loop_body,
1427 Second->getLocStart()))
Richard Trieu451a5db2012-04-30 18:01:30 +00001428 return;
1429
1430 PartialDiagnostic PDiag = S.PDiag(diag::warn_variables_not_in_loop_body);
1431 llvm::SmallPtrSet<VarDecl*, 8> Decls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001432 SmallVector<SourceRange, 10> Ranges;
Benjamin Kramerd1d76b22012-06-06 17:32:50 +00001433 DeclExtractor DE(S, Decls, Ranges);
Richard Trieu451a5db2012-04-30 18:01:30 +00001434 DE.Visit(Second);
1435
1436 // Don't analyze complex conditionals.
1437 if (!DE.isSimple()) return;
1438
1439 // No decls found.
1440 if (Decls.size() == 0) return;
1441
Richard Trieu0030f1d2012-05-04 03:01:54 +00001442 // Don't warn on volatile, static, or global variables.
Craig Topper4dd9b432014-08-17 23:49:53 +00001443 for (llvm::SmallPtrSetImpl<VarDecl*>::iterator I = Decls.begin(),
1444 E = Decls.end();
Richard Trieu451a5db2012-04-30 18:01:30 +00001445 I != E; ++I)
Richard Trieu0030f1d2012-05-04 03:01:54 +00001446 if ((*I)->getType().isVolatileQualified() ||
1447 (*I)->hasGlobalStorage()) return;
Richard Trieu451a5db2012-04-30 18:01:30 +00001448
1449 if (DeclMatcher(S, Decls, Second).FoundDeclInUse() ||
1450 DeclMatcher(S, Decls, Third).FoundDeclInUse() ||
1451 DeclMatcher(S, Decls, Body).FoundDeclInUse())
1452 return;
1453
1454 // Load decl names into diagnostic.
1455 if (Decls.size() > 4)
1456 PDiag << 0;
1457 else {
1458 PDiag << Decls.size();
Craig Topper4dd9b432014-08-17 23:49:53 +00001459 for (llvm::SmallPtrSetImpl<VarDecl*>::iterator I = Decls.begin(),
1460 E = Decls.end();
Richard Trieu451a5db2012-04-30 18:01:30 +00001461 I != E; ++I)
1462 PDiag << (*I)->getDeclName();
1463 }
1464
1465 // Load SourceRanges into diagnostic if there is room.
1466 // Otherwise, load the SourceRange of the conditional expression.
1467 if (Ranges.size() <= PartialDiagnostic::MaxArguments)
Craig Topper2341c0d2013-07-04 03:08:24 +00001468 for (SmallVectorImpl<SourceRange>::iterator I = Ranges.begin(),
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001469 E = Ranges.end();
Richard Trieu451a5db2012-04-30 18:01:30 +00001470 I != E; ++I)
1471 PDiag << *I;
1472 else
1473 PDiag << Second->getSourceRange();
1474
1475 S.Diag(Ranges.begin()->getBegin(), PDiag);
1476 }
1477
Richard Trieu4e7c9622013-08-06 21:31:54 +00001478 // If Statement is an incemement or decrement, return true and sets the
1479 // variables Increment and DRE.
1480 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment,
1481 DeclRefExpr *&DRE) {
1482 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) {
1483 switch (UO->getOpcode()) {
1484 default: return false;
1485 case UO_PostInc:
1486 case UO_PreInc:
1487 Increment = true;
1488 break;
1489 case UO_PostDec:
1490 case UO_PreDec:
1491 Increment = false;
1492 break;
1493 }
1494 DRE = dyn_cast<DeclRefExpr>(UO->getSubExpr());
1495 return DRE;
1496 }
1497
1498 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) {
1499 FunctionDecl *FD = Call->getDirectCallee();
1500 if (!FD || !FD->isOverloadedOperator()) return false;
1501 switch (FD->getOverloadedOperator()) {
1502 default: return false;
1503 case OO_PlusPlus:
1504 Increment = true;
1505 break;
1506 case OO_MinusMinus:
1507 Increment = false;
1508 break;
1509 }
1510 DRE = dyn_cast<DeclRefExpr>(Call->getArg(0));
1511 return DRE;
1512 }
1513
1514 return false;
1515 }
1516
Serge Pavlov09f99242014-01-23 15:05:00 +00001517 // A visitor to determine if a continue or break statement is a
1518 // subexpression.
1519 class BreakContinueFinder : public EvaluatedExprVisitor<BreakContinueFinder> {
1520 SourceLocation BreakLoc;
1521 SourceLocation ContinueLoc;
Richard Trieu4e7c9622013-08-06 21:31:54 +00001522 public:
Serge Pavlov09f99242014-01-23 15:05:00 +00001523 BreakContinueFinder(Sema &S, Stmt* Body) :
1524 Inherited(S.Context) {
Richard Trieu4e7c9622013-08-06 21:31:54 +00001525 Visit(Body);
1526 }
1527
Serge Pavlov09f99242014-01-23 15:05:00 +00001528 typedef EvaluatedExprVisitor<BreakContinueFinder> Inherited;
Richard Trieu4e7c9622013-08-06 21:31:54 +00001529
1530 void VisitContinueStmt(ContinueStmt* E) {
Serge Pavlov09f99242014-01-23 15:05:00 +00001531 ContinueLoc = E->getContinueLoc();
Richard Trieu4e7c9622013-08-06 21:31:54 +00001532 }
1533
Serge Pavlov09f99242014-01-23 15:05:00 +00001534 void VisitBreakStmt(BreakStmt* E) {
1535 BreakLoc = E->getBreakLoc();
1536 }
Richard Trieu4e7c9622013-08-06 21:31:54 +00001537
Serge Pavlov09f99242014-01-23 15:05:00 +00001538 bool ContinueFound() { return ContinueLoc.isValid(); }
1539 bool BreakFound() { return BreakLoc.isValid(); }
1540 SourceLocation GetContinueLoc() { return ContinueLoc; }
1541 SourceLocation GetBreakLoc() { return BreakLoc; }
1542
1543 }; // end class BreakContinueFinder
Richard Trieu4e7c9622013-08-06 21:31:54 +00001544
1545 // Emit a warning when a loop increment/decrement appears twice per loop
1546 // iteration. The conditions which trigger this warning are:
1547 // 1) The last statement in the loop body and the third expression in the
1548 // for loop are both increment or both decrement of the same variable
1549 // 2) No continue statements in the loop body.
1550 void CheckForRedundantIteration(Sema &S, Expr *Third, Stmt *Body) {
1551 // Return when there is nothing to check.
1552 if (!Body || !Third) return;
1553
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001554 if (S.Diags.isIgnored(diag::warn_redundant_loop_iteration,
1555 Third->getLocStart()))
Richard Trieu4e7c9622013-08-06 21:31:54 +00001556 return;
1557
1558 // Get the last statement from the loop body.
1559 CompoundStmt *CS = dyn_cast<CompoundStmt>(Body);
1560 if (!CS || CS->body_empty()) return;
1561 Stmt *LastStmt = CS->body_back();
1562 if (!LastStmt) return;
1563
1564 bool LoopIncrement, LastIncrement;
1565 DeclRefExpr *LoopDRE, *LastDRE;
1566
1567 if (!ProcessIterationStmt(S, Third, LoopIncrement, LoopDRE)) return;
1568 if (!ProcessIterationStmt(S, LastStmt, LastIncrement, LastDRE)) return;
1569
1570 // Check that the two statements are both increments or both decrements
Serge Pavlov09f99242014-01-23 15:05:00 +00001571 // on the same variable.
Richard Trieu4e7c9622013-08-06 21:31:54 +00001572 if (LoopIncrement != LastIncrement ||
1573 LoopDRE->getDecl() != LastDRE->getDecl()) return;
1574
Serge Pavlov09f99242014-01-23 15:05:00 +00001575 if (BreakContinueFinder(S, Body).ContinueFound()) return;
Richard Trieu4e7c9622013-08-06 21:31:54 +00001576
1577 S.Diag(LastDRE->getLocation(), diag::warn_redundant_loop_iteration)
1578 << LastDRE->getDecl() << LastIncrement;
1579 S.Diag(LoopDRE->getLocation(), diag::note_loop_iteration_here)
1580 << LoopIncrement;
1581 }
1582
Richard Trieu451a5db2012-04-30 18:01:30 +00001583} // end namespace
1584
Serge Pavlov09f99242014-01-23 15:05:00 +00001585
1586void Sema::CheckBreakContinueBinding(Expr *E) {
1587 if (!E || getLangOpts().CPlusPlus)
1588 return;
1589 BreakContinueFinder BCFinder(*this, E);
1590 Scope *BreakParent = CurScope->getBreakParent();
1591 if (BCFinder.BreakFound() && BreakParent) {
1592 if (BreakParent->getFlags() & Scope::SwitchScope) {
1593 Diag(BCFinder.GetBreakLoc(), diag::warn_break_binds_to_switch);
1594 } else {
1595 Diag(BCFinder.GetBreakLoc(), diag::warn_loop_ctrl_binds_to_inner)
1596 << "break";
1597 }
1598 } else if (BCFinder.ContinueFound() && CurScope->getContinueParent()) {
1599 Diag(BCFinder.GetContinueLoc(), diag::warn_loop_ctrl_binds_to_inner)
1600 << "continue";
1601 }
1602}
1603
John McCalldadc5752010-08-24 06:29:42 +00001604StmtResult
Sebastian Redlfbfaafc2009-01-16 23:28:06 +00001605Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001606 Stmt *First, FullExprArg second, Decl *secondVar,
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001607 FullExprArg third,
John McCallb268a282010-08-23 23:25:46 +00001608 SourceLocation RParenLoc, Stmt *Body) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001609 if (!getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00001610 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattner651d42d2008-11-20 06:38:18 +00001611 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
1612 // declare identifiers for objects having storage class 'auto' or
1613 // 'register'.
Aaron Ballman535bbcc2014-03-14 17:01:24 +00001614 for (auto *DI : DS->decls()) {
1615 VarDecl *VD = dyn_cast<VarDecl>(DI);
John McCall1c9c3fd2010-10-15 04:57:14 +00001616 if (VD && VD->isLocalVarDecl() && !VD->hasLocalStorage())
Craig Topperc3ec1492014-05-26 06:22:03 +00001617 VD = nullptr;
1618 if (!VD) {
Aaron Ballman535bbcc2014-03-14 17:01:24 +00001619 Diag(DI->getLocation(), diag::err_non_local_variable_decl_in_for);
1620 DI->setInvalidDecl();
Douglas Gregor2eb1c572013-04-08 20:52:24 +00001621 }
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00001622 }
Chris Lattner39f920f2007-08-28 05:03:08 +00001623 }
Steve Naroff86272ea2007-05-29 02:14:17 +00001624 }
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001625
Serge Pavlov09f99242014-01-23 15:05:00 +00001626 CheckBreakContinueBinding(second.get());
1627 CheckBreakContinueBinding(third.get());
1628
Richard Trieu451a5db2012-04-30 18:01:30 +00001629 CheckForLoopConditionalStatement(*this, second.get(), third.get(), Body);
Richard Trieu4e7c9622013-08-06 21:31:54 +00001630 CheckForRedundantIteration(*this, third.get(), Body);
Richard Trieu451a5db2012-04-30 18:01:30 +00001631
John McCalldadc5752010-08-24 06:29:42 +00001632 ExprResult SecondResult(second.release());
Craig Topperc3ec1492014-05-26 06:22:03 +00001633 VarDecl *ConditionVar = nullptr;
John McCall48871652010-08-21 09:40:31 +00001634 if (secondVar) {
1635 ConditionVar = cast<VarDecl>(secondVar);
Douglas Gregore60e41a2010-05-06 17:25:47 +00001636 SecondResult = CheckConditionVariable(ConditionVar, ForLoc, true);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00001637 if (SecondResult.isInvalid())
1638 return StmtError();
1639 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001640
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001641 Expr *Third = third.release().getAs<Expr>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001642
Anders Carlsson1682af52009-08-01 01:39:59 +00001643 DiagnoseUnusedExprResult(First);
1644 DiagnoseUnusedExprResult(Third);
Anders Carlsson5c5f1602009-07-30 22:39:03 +00001645 DiagnoseUnusedExprResult(Body);
1646
Dmitri Gribenko800ddf32012-02-14 22:14:32 +00001647 if (isa<NullStmt>(Body))
1648 getCurCompoundScope().setHasEmptyLoopBodies();
1649
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001650 return new (Context) ForStmt(Context, First, SecondResult.get(), ConditionVar,
1651 Third, Body, ForLoc, LParenLoc, RParenLoc);
Chris Lattneraf8d5812006-11-10 05:07:45 +00001652}
1653
John McCall34376a62010-12-04 03:47:34 +00001654/// In an Objective C collection iteration statement:
1655/// for (x in y)
1656/// x can be an arbitrary l-value expression. Bind it up as a
1657/// full-expression.
1658StmtResult Sema::ActOnForEachLValueExpr(Expr *E) {
John McCallbc153352012-03-30 05:43:39 +00001659 // Reduce placeholder expressions here. Note that this rejects the
1660 // use of pseudo-object l-values in this position.
1661 ExprResult result = CheckPlaceholderExpr(E);
1662 if (result.isInvalid()) return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001663 E = result.get();
John McCallbc153352012-03-30 05:43:39 +00001664
Richard Smith945f8d32013-01-14 22:39:08 +00001665 ExprResult FullExpr = ActOnFinishFullExpr(E);
1666 if (FullExpr.isInvalid())
1667 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001668 return StmtResult(static_cast<Stmt*>(FullExpr.get()));
John McCall34376a62010-12-04 03:47:34 +00001669}
1670
John McCall53848232011-07-27 01:07:15 +00001671ExprResult
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00001672Sema::CheckObjCForCollectionOperand(SourceLocation forLoc, Expr *collection) {
1673 if (!collection)
1674 return ExprError();
Chad Rosier02a84392012-08-10 17:56:09 +00001675
Kaelyn Takata15867822014-11-21 18:48:04 +00001676 ExprResult result = CorrectDelayedTyposInExpr(collection);
1677 if (!result.isUsable())
1678 return ExprError();
1679 collection = result.get();
1680
John McCall53848232011-07-27 01:07:15 +00001681 // Bail out early if we've got a type-dependent expression.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001682 if (collection->isTypeDependent()) return collection;
John McCall53848232011-07-27 01:07:15 +00001683
1684 // Perform normal l-value conversion.
Kaelyn Takata15867822014-11-21 18:48:04 +00001685 result = DefaultFunctionArrayLvalueConversion(collection);
John McCall53848232011-07-27 01:07:15 +00001686 if (result.isInvalid())
1687 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001688 collection = result.get();
John McCall53848232011-07-27 01:07:15 +00001689
1690 // The operand needs to have object-pointer type.
1691 // TODO: should we do a contextual conversion?
1692 const ObjCObjectPointerType *pointerType =
1693 collection->getType()->getAs<ObjCObjectPointerType>();
1694 if (!pointerType)
1695 return Diag(forLoc, diag::err_collection_expr_type)
1696 << collection->getType() << collection->getSourceRange();
1697
1698 // Check that the operand provides
1699 // - countByEnumeratingWithState:objects:count:
1700 const ObjCObjectType *objectType = pointerType->getObjectType();
1701 ObjCInterfaceDecl *iface = objectType->getInterface();
1702
1703 // If we have a forward-declared type, we can't do this check.
Douglas Gregor4123a862011-11-14 22:10:01 +00001704 // Under ARC, it is an error not to have a forward-declared class.
Chad Rosier02a84392012-08-10 17:56:09 +00001705 if (iface &&
Douglas Gregor4123a862011-11-14 22:10:01 +00001706 RequireCompleteType(forLoc, QualType(objectType, 0),
David Blaikiebbafb8a2012-03-11 07:00:24 +00001707 getLangOpts().ObjCAutoRefCount
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001708 ? diag::err_arc_collection_forward
1709 : 0,
1710 collection)) {
John McCall53848232011-07-27 01:07:15 +00001711 // Otherwise, if we have any useful type information, check that
1712 // the type declares the appropriate method.
1713 } else if (iface || !objectType->qual_empty()) {
1714 IdentifierInfo *selectorIdents[] = {
1715 &Context.Idents.get("countByEnumeratingWithState"),
1716 &Context.Idents.get("objects"),
1717 &Context.Idents.get("count")
1718 };
1719 Selector selector = Context.Selectors.getSelector(3, &selectorIdents[0]);
1720
Craig Topperc3ec1492014-05-26 06:22:03 +00001721 ObjCMethodDecl *method = nullptr;
John McCall53848232011-07-27 01:07:15 +00001722
1723 // If there's an interface, look in both the public and private APIs.
1724 if (iface) {
1725 method = iface->lookupInstanceMethod(selector);
Anna Zaksc77a3b12012-07-27 19:07:44 +00001726 if (!method) method = iface->lookupPrivateMethod(selector);
John McCall53848232011-07-27 01:07:15 +00001727 }
1728
1729 // Also check protocol qualifiers.
1730 if (!method)
1731 method = LookupMethodInQualifiedType(selector, pointerType,
1732 /*instance*/ true);
1733
1734 // If we didn't find it anywhere, give up.
1735 if (!method) {
1736 Diag(forLoc, diag::warn_collection_expr_type)
1737 << collection->getType() << selector << collection->getSourceRange();
1738 }
1739
1740 // TODO: check for an incompatible signature?
1741 }
1742
1743 // Wrap up any cleanups in the expression.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001744 return collection;
John McCall53848232011-07-27 01:07:15 +00001745}
1746
John McCalldadc5752010-08-24 06:29:42 +00001747StmtResult
Sebastian Redlfbfaafc2009-01-16 23:28:06 +00001748Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00001749 Stmt *First, Expr *collection,
1750 SourceLocation RParenLoc) {
Chad Rosier02a84392012-08-10 17:56:09 +00001751
1752 ExprResult CollectionExprResult =
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00001753 CheckObjCForCollectionOperand(ForLoc, collection);
Chad Rosier02a84392012-08-10 17:56:09 +00001754
Fariborz Jahanian93977672008-01-10 20:33:58 +00001755 if (First) {
1756 QualType FirstType;
1757 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner529efc72009-03-28 06:33:19 +00001758 if (!DS->isSingleDecl())
Sebastian Redlfbfaafc2009-01-16 23:28:06 +00001759 return StmtError(Diag((*DS->decl_begin())->getLocation(),
1760 diag::err_toomany_element_decls));
1761
Douglas Gregor2eb1c572013-04-08 20:52:24 +00001762 VarDecl *D = dyn_cast<VarDecl>(DS->getSingleDecl());
1763 if (!D || D->isInvalidDecl())
1764 return StmtError();
1765
John McCall31168b02011-06-15 23:02:42 +00001766 FirstType = D->getType();
Chris Lattner651d42d2008-11-20 06:38:18 +00001767 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
1768 // declare identifiers for objects having storage class 'auto' or
1769 // 'register'.
John McCall31168b02011-06-15 23:02:42 +00001770 if (!D->hasLocalStorage())
1771 return StmtError(Diag(D->getLocation(),
Douglas Gregor2eb1c572013-04-08 20:52:24 +00001772 diag::err_non_local_variable_decl_in_for));
Douglas Gregorc430f452013-04-08 18:25:02 +00001773
1774 // If the type contained 'auto', deduce the 'auto' to 'id'.
1775 if (FirstType->getContainedAutoType()) {
Douglas Gregorc430f452013-04-08 18:25:02 +00001776 OpaqueValueExpr OpaqueId(D->getLocation(), Context.getObjCIdType(),
1777 VK_RValue);
1778 Expr *DeducedInit = &OpaqueId;
Richard Smith061f1e22013-04-30 21:23:01 +00001779 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) ==
1780 DAR_Failed)
Douglas Gregorc430f452013-04-08 18:25:02 +00001781 DiagnoseAutoDeductionFailure(D, DeducedInit);
Richard Smith061f1e22013-04-30 21:23:01 +00001782 if (FirstType.isNull()) {
Douglas Gregorc430f452013-04-08 18:25:02 +00001783 D->setInvalidDecl();
1784 return StmtError();
1785 }
1786
Richard Smith061f1e22013-04-30 21:23:01 +00001787 D->setType(FirstType);
Douglas Gregorc430f452013-04-08 18:25:02 +00001788
1789 if (ActiveTemplateInstantiations.empty()) {
Richard Smith061f1e22013-04-30 21:23:01 +00001790 SourceLocation Loc =
1791 D->getTypeSourceInfo()->getTypeLoc().getBeginLoc();
Douglas Gregorc430f452013-04-08 18:25:02 +00001792 Diag(Loc, diag::warn_auto_var_is_id)
1793 << D->getDeclName();
1794 }
1795 }
1796
Anders Carlsson1ec2ccd2008-08-25 18:16:36 +00001797 } else {
Douglas Gregorf68a5082010-04-22 23:10:45 +00001798 Expr *FirstE = cast<Expr>(First);
John McCall086a4642010-11-24 05:12:34 +00001799 if (!FirstE->isTypeDependent() && !FirstE->isLValue())
Sebastian Redlfbfaafc2009-01-16 23:28:06 +00001800 return StmtError(Diag(First->getLocStart(),
1801 diag::err_selector_element_not_lvalue)
1802 << First->getSourceRange());
1803
Mike Stump11289f42009-09-09 15:08:12 +00001804 FirstType = static_cast<Expr*>(First)->getType();
Fariborz Jahanian8bcf1822013-10-10 21:58:04 +00001805 if (FirstType.isConstQualified())
1806 Diag(ForLoc, diag::err_selector_element_const_type)
1807 << FirstType << First->getSourceRange();
Anders Carlsson1ec2ccd2008-08-25 18:16:36 +00001808 }
Douglas Gregorf68a5082010-04-22 23:10:45 +00001809 if (!FirstType->isDependentType() &&
1810 !FirstType->isObjCObjectPointerType() &&
Fariborz Jahanian2e4a46b2009-08-14 21:53:27 +00001811 !FirstType->isBlockPointerType())
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00001812 return StmtError(Diag(ForLoc, diag::err_selector_element_type)
1813 << FirstType << First->getSourceRange());
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001814 }
Chad Rosier02a84392012-08-10 17:56:09 +00001815
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00001816 if (CollectionExprResult.isInvalid())
1817 return StmtError();
Chad Rosier02a84392012-08-10 17:56:09 +00001818
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001819 CollectionExprResult = ActOnFinishFullExpr(CollectionExprResult.get());
Richard Smith945f8d32013-01-14 22:39:08 +00001820 if (CollectionExprResult.isInvalid())
1821 return StmtError();
1822
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001823 return new (Context) ObjCForCollectionStmt(First, CollectionExprResult.get(),
1824 nullptr, ForLoc, RParenLoc);
Fariborz Jahanian732b8c22008-01-03 17:55:25 +00001825}
Chris Lattneraf8d5812006-11-10 05:07:45 +00001826
Richard Smith02e85f32011-04-14 22:09:26 +00001827/// Finish building a variable declaration for a for-range statement.
1828/// \return true if an error occurs.
1829static bool FinishForRangeVarDecl(Sema &SemaRef, VarDecl *Decl, Expr *Init,
Richard Smith061f1e22013-04-30 21:23:01 +00001830 SourceLocation Loc, int DiagID) {
Richard Smith02e85f32011-04-14 22:09:26 +00001831 // Deduce the type for the iterator variable now rather than leaving it to
1832 // AddInitializerToDecl, so we can produce a more suitable diagnostic.
Richard Smith061f1e22013-04-30 21:23:01 +00001833 QualType InitType;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00001834 if ((!isa<InitListExpr>(Init) && Init->getType()->isVoidType()) ||
Richard Smith061f1e22013-04-30 21:23:01 +00001835 SemaRef.DeduceAutoType(Decl->getTypeSourceInfo(), Init, InitType) ==
Sebastian Redl09edce02012-01-23 22:09:39 +00001836 Sema::DAR_Failed)
Richard Smith061f1e22013-04-30 21:23:01 +00001837 SemaRef.Diag(Loc, DiagID) << Init->getType();
1838 if (InitType.isNull()) {
Richard Smith02e85f32011-04-14 22:09:26 +00001839 Decl->setInvalidDecl();
1840 return true;
1841 }
Richard Smith061f1e22013-04-30 21:23:01 +00001842 Decl->setType(InitType);
Richard Smith02e85f32011-04-14 22:09:26 +00001843
John McCall31168b02011-06-15 23:02:42 +00001844 // In ARC, infer lifetime.
1845 // FIXME: ARC may want to turn this into 'const __unsafe_unretained' if
1846 // we're doing the equivalent of fast iteration.
Chad Rosier02a84392012-08-10 17:56:09 +00001847 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001848 SemaRef.inferObjCARCLifetime(Decl))
1849 Decl->setInvalidDecl();
1850
Richard Smith02e85f32011-04-14 22:09:26 +00001851 SemaRef.AddInitializerToDecl(Decl, Init, /*DirectInit=*/false,
1852 /*TypeMayContainAuto=*/false);
1853 SemaRef.FinalizeDeclaration(Decl);
Richard Smith0c502d22011-04-18 15:49:25 +00001854 SemaRef.CurContext->addHiddenDecl(Decl);
Richard Smith02e85f32011-04-14 22:09:26 +00001855 return false;
1856}
1857
Sam Panzer0f384432012-08-21 00:52:01 +00001858namespace {
1859
Richard Smith02e85f32011-04-14 22:09:26 +00001860/// Produce a note indicating which begin/end function was implicitly called
Sam Panzer0f384432012-08-21 00:52:01 +00001861/// by a C++11 for-range statement. This is often not obvious from the code,
Richard Smith02e85f32011-04-14 22:09:26 +00001862/// nor from the diagnostics produced when analysing the implicit expressions
1863/// required in a for-range statement.
1864void NoteForRangeBeginEndFunction(Sema &SemaRef, Expr *E,
Sam Panzer0f384432012-08-21 00:52:01 +00001865 Sema::BeginEndFunction BEF) {
Richard Smith02e85f32011-04-14 22:09:26 +00001866 CallExpr *CE = dyn_cast<CallExpr>(E);
1867 if (!CE)
1868 return;
1869 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
1870 if (!D)
1871 return;
1872 SourceLocation Loc = D->getLocation();
1873
1874 std::string Description;
1875 bool IsTemplate = false;
1876 if (FunctionTemplateDecl *FunTmpl = D->getPrimaryTemplate()) {
1877 Description = SemaRef.getTemplateArgumentBindingsText(
1878 FunTmpl->getTemplateParameters(), *D->getTemplateSpecializationArgs());
1879 IsTemplate = true;
1880 }
1881
1882 SemaRef.Diag(Loc, diag::note_for_range_begin_end)
1883 << BEF << IsTemplate << Description << E->getType();
1884}
1885
Sam Panzer0f384432012-08-21 00:52:01 +00001886/// Build a variable declaration for a for-range statement.
1887VarDecl *BuildForRangeVarDecl(Sema &SemaRef, SourceLocation Loc,
1888 QualType Type, const char *Name) {
1889 DeclContext *DC = SemaRef.CurContext;
1890 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
1891 TypeSourceInfo *TInfo = SemaRef.Context.getTrivialTypeSourceInfo(Type, Loc);
1892 VarDecl *Decl = VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001893 TInfo, SC_None);
Sam Panzer0f384432012-08-21 00:52:01 +00001894 Decl->setImplicit();
1895 return Decl;
Richard Smith02e85f32011-04-14 22:09:26 +00001896}
1897
1898}
1899
Fariborz Jahanian00213472012-07-06 19:04:04 +00001900static bool ObjCEnumerationCollection(Expr *Collection) {
1901 return !Collection->isTypeDependent()
Craig Topperc3ec1492014-05-26 06:22:03 +00001902 && Collection->getType()->getAs<ObjCObjectPointerType>() != nullptr;
Fariborz Jahanian00213472012-07-06 19:04:04 +00001903}
1904
Sam Panzer2c4ca0f2012-08-16 21:47:25 +00001905/// ActOnCXXForRangeStmt - Check and build a C++11 for-range statement.
Richard Smith02e85f32011-04-14 22:09:26 +00001906///
Sam Panzer2c4ca0f2012-08-16 21:47:25 +00001907/// C++11 [stmt.ranged]:
Richard Smith02e85f32011-04-14 22:09:26 +00001908/// A range-based for statement is equivalent to
1909///
1910/// {
1911/// auto && __range = range-init;
1912/// for ( auto __begin = begin-expr,
1913/// __end = end-expr;
1914/// __begin != __end;
1915/// ++__begin ) {
1916/// for-range-declaration = *__begin;
1917/// statement
1918/// }
1919/// }
1920///
1921/// The body of the loop is not available yet, since it cannot be analysed until
1922/// we have determined the type of the for-range-declaration.
1923StmtResult
Sam Panzer2c4ca0f2012-08-16 21:47:25 +00001924Sema::ActOnCXXForRangeStmt(SourceLocation ForLoc,
Richard Smith02e85f32011-04-14 22:09:26 +00001925 Stmt *First, SourceLocation ColonLoc, Expr *Range,
Richard Smitha05b3b52012-09-20 21:52:32 +00001926 SourceLocation RParenLoc, BuildForRangeKind Kind) {
Richard Smith3249fed2013-08-21 01:40:36 +00001927 if (!First)
Richard Smith02e85f32011-04-14 22:09:26 +00001928 return StmtError();
Chad Rosier02a84392012-08-10 17:56:09 +00001929
Richard Smith3249fed2013-08-21 01:40:36 +00001930 if (Range && ObjCEnumerationCollection(Range))
Sam Panzer2c4ca0f2012-08-16 21:47:25 +00001931 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc);
Richard Smith02e85f32011-04-14 22:09:26 +00001932
1933 DeclStmt *DS = dyn_cast<DeclStmt>(First);
1934 assert(DS && "first part of for range not a decl stmt");
1935
1936 if (!DS->isSingleDecl()) {
1937 Diag(DS->getStartLoc(), diag::err_type_defined_in_for_range);
1938 return StmtError();
1939 }
Richard Smith02e85f32011-04-14 22:09:26 +00001940
Richard Smith3249fed2013-08-21 01:40:36 +00001941 Decl *LoopVar = DS->getSingleDecl();
1942 if (LoopVar->isInvalidDecl() || !Range ||
1943 DiagnoseUnexpandedParameterPack(Range, UPPC_Expression)) {
1944 LoopVar->setInvalidDecl();
Richard Smith02e85f32011-04-14 22:09:26 +00001945 return StmtError();
Richard Smith3249fed2013-08-21 01:40:36 +00001946 }
Richard Smith02e85f32011-04-14 22:09:26 +00001947
1948 // Build auto && __range = range-init
1949 SourceLocation RangeLoc = Range->getLocStart();
1950 VarDecl *RangeVar = BuildForRangeVarDecl(*this, RangeLoc,
1951 Context.getAutoRRefDeductType(),
1952 "__range");
1953 if (FinishForRangeVarDecl(*this, RangeVar, Range, RangeLoc,
Richard Smith3249fed2013-08-21 01:40:36 +00001954 diag::err_for_range_deduction_failure)) {
1955 LoopVar->setInvalidDecl();
Richard Smith02e85f32011-04-14 22:09:26 +00001956 return StmtError();
Richard Smith3249fed2013-08-21 01:40:36 +00001957 }
Richard Smith02e85f32011-04-14 22:09:26 +00001958
1959 // Claim the type doesn't contain auto: we've already done the checking.
1960 DeclGroupPtrTy RangeGroup =
Craig Toppere3d2ecbe2014-06-28 23:22:33 +00001961 BuildDeclaratorGroup(MutableArrayRef<Decl *>((Decl **)&RangeVar, 1),
Rafael Espindolaab417692013-07-09 12:05:01 +00001962 /*TypeMayContainAuto=*/ false);
Richard Smith02e85f32011-04-14 22:09:26 +00001963 StmtResult RangeDecl = ActOnDeclStmt(RangeGroup, RangeLoc, RangeLoc);
Richard Smith3249fed2013-08-21 01:40:36 +00001964 if (RangeDecl.isInvalid()) {
1965 LoopVar->setInvalidDecl();
Richard Smith02e85f32011-04-14 22:09:26 +00001966 return StmtError();
Richard Smith3249fed2013-08-21 01:40:36 +00001967 }
Richard Smith02e85f32011-04-14 22:09:26 +00001968
1969 return BuildCXXForRangeStmt(ForLoc, ColonLoc, RangeDecl.get(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001970 /*BeginEndDecl=*/nullptr, /*Cond=*/nullptr,
1971 /*Inc=*/nullptr, DS, RParenLoc, Kind);
Sam Panzer0f384432012-08-21 00:52:01 +00001972}
1973
1974/// \brief Create the initialization, compare, and increment steps for
1975/// the range-based for loop expression.
1976/// This function does not handle array-based for loops,
1977/// which are created in Sema::BuildCXXForRangeStmt.
1978///
1979/// \returns a ForRangeStatus indicating success or what kind of error occurred.
1980/// BeginExpr and EndExpr are set and FRS_Success is returned on success;
1981/// CandidateSet and BEF are set and some non-success value is returned on
1982/// failure.
1983static Sema::ForRangeStatus BuildNonArrayForRange(Sema &SemaRef, Scope *S,
1984 Expr *BeginRange, Expr *EndRange,
1985 QualType RangeType,
1986 VarDecl *BeginVar,
1987 VarDecl *EndVar,
1988 SourceLocation ColonLoc,
1989 OverloadCandidateSet *CandidateSet,
1990 ExprResult *BeginExpr,
1991 ExprResult *EndExpr,
1992 Sema::BeginEndFunction *BEF) {
1993 DeclarationNameInfo BeginNameInfo(
1994 &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc);
1995 DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"),
1996 ColonLoc);
1997
1998 LookupResult BeginMemberLookup(SemaRef, BeginNameInfo,
1999 Sema::LookupMemberName);
2000 LookupResult EndMemberLookup(SemaRef, EndNameInfo, Sema::LookupMemberName);
2001
2002 if (CXXRecordDecl *D = RangeType->getAsCXXRecordDecl()) {
2003 // - if _RangeT is a class type, the unqualified-ids begin and end are
2004 // looked up in the scope of class _RangeT as if by class member access
2005 // lookup (3.4.5), and if either (or both) finds at least one
2006 // declaration, begin-expr and end-expr are __range.begin() and
2007 // __range.end(), respectively;
2008 SemaRef.LookupQualifiedName(BeginMemberLookup, D);
2009 SemaRef.LookupQualifiedName(EndMemberLookup, D);
2010
2011 if (BeginMemberLookup.empty() != EndMemberLookup.empty()) {
2012 SourceLocation RangeLoc = BeginVar->getLocation();
2013 *BEF = BeginMemberLookup.empty() ? Sema::BEF_end : Sema::BEF_begin;
2014
2015 SemaRef.Diag(RangeLoc, diag::err_for_range_member_begin_end_mismatch)
2016 << RangeLoc << BeginRange->getType() << *BEF;
2017 return Sema::FRS_DiagnosticIssued;
2018 }
2019 } else {
2020 // - otherwise, begin-expr and end-expr are begin(__range) and
2021 // end(__range), respectively, where begin and end are looked up with
2022 // argument-dependent lookup (3.4.2). For the purposes of this name
2023 // lookup, namespace std is an associated namespace.
2024
2025 }
2026
2027 *BEF = Sema::BEF_begin;
2028 Sema::ForRangeStatus RangeStatus =
2029 SemaRef.BuildForRangeBeginEndCall(S, ColonLoc, ColonLoc, BeginVar,
2030 Sema::BEF_begin, BeginNameInfo,
2031 BeginMemberLookup, CandidateSet,
2032 BeginRange, BeginExpr);
2033
2034 if (RangeStatus != Sema::FRS_Success)
2035 return RangeStatus;
2036 if (FinishForRangeVarDecl(SemaRef, BeginVar, BeginExpr->get(), ColonLoc,
2037 diag::err_for_range_iter_deduction_failure)) {
2038 NoteForRangeBeginEndFunction(SemaRef, BeginExpr->get(), *BEF);
2039 return Sema::FRS_DiagnosticIssued;
2040 }
2041
2042 *BEF = Sema::BEF_end;
2043 RangeStatus =
2044 SemaRef.BuildForRangeBeginEndCall(S, ColonLoc, ColonLoc, EndVar,
2045 Sema::BEF_end, EndNameInfo,
2046 EndMemberLookup, CandidateSet,
2047 EndRange, EndExpr);
2048 if (RangeStatus != Sema::FRS_Success)
2049 return RangeStatus;
2050 if (FinishForRangeVarDecl(SemaRef, EndVar, EndExpr->get(), ColonLoc,
2051 diag::err_for_range_iter_deduction_failure)) {
2052 NoteForRangeBeginEndFunction(SemaRef, EndExpr->get(), *BEF);
2053 return Sema::FRS_DiagnosticIssued;
2054 }
2055 return Sema::FRS_Success;
2056}
2057
2058/// Speculatively attempt to dereference an invalid range expression.
Richard Smitha05b3b52012-09-20 21:52:32 +00002059/// If the attempt fails, this function will return a valid, null StmtResult
2060/// and emit no diagnostics.
Sam Panzer0f384432012-08-21 00:52:01 +00002061static StmtResult RebuildForRangeWithDereference(Sema &SemaRef, Scope *S,
2062 SourceLocation ForLoc,
2063 Stmt *LoopVarDecl,
2064 SourceLocation ColonLoc,
2065 Expr *Range,
2066 SourceLocation RangeLoc,
2067 SourceLocation RParenLoc) {
Richard Smitha05b3b52012-09-20 21:52:32 +00002068 // Determine whether we can rebuild the for-range statement with a
2069 // dereferenced range expression.
2070 ExprResult AdjustedRange;
2071 {
2072 Sema::SFINAETrap Trap(SemaRef);
2073
2074 AdjustedRange = SemaRef.BuildUnaryOp(S, RangeLoc, UO_Deref, Range);
2075 if (AdjustedRange.isInvalid())
2076 return StmtResult();
2077
2078 StmtResult SR =
2079 SemaRef.ActOnCXXForRangeStmt(ForLoc, LoopVarDecl, ColonLoc,
2080 AdjustedRange.get(), RParenLoc,
2081 Sema::BFRK_Check);
2082 if (SR.isInvalid())
2083 return StmtResult();
2084 }
2085
2086 // The attempt to dereference worked well enough that it could produce a valid
2087 // loop. Produce a fixit, and rebuild the loop with diagnostics enabled, in
2088 // case there are any other (non-fatal) problems with it.
2089 SemaRef.Diag(RangeLoc, diag::err_for_range_dereference)
2090 << Range->getType() << FixItHint::CreateInsertion(RangeLoc, "*");
2091 return SemaRef.ActOnCXXForRangeStmt(ForLoc, LoopVarDecl, ColonLoc,
2092 AdjustedRange.get(), RParenLoc,
2093 Sema::BFRK_Rebuild);
Richard Smith02e85f32011-04-14 22:09:26 +00002094}
2095
Richard Smith3249fed2013-08-21 01:40:36 +00002096namespace {
2097/// RAII object to automatically invalidate a declaration if an error occurs.
2098struct InvalidateOnErrorScope {
2099 InvalidateOnErrorScope(Sema &SemaRef, Decl *D, bool Enabled)
2100 : Trap(SemaRef.Diags), D(D), Enabled(Enabled) {}
2101 ~InvalidateOnErrorScope() {
2102 if (Enabled && Trap.hasErrorOccurred())
2103 D->setInvalidDecl();
2104 }
2105
2106 DiagnosticErrorTrap Trap;
2107 Decl *D;
2108 bool Enabled;
2109};
2110}
2111
Richard Smitha05b3b52012-09-20 21:52:32 +00002112/// BuildCXXForRangeStmt - Build or instantiate a C++11 for-range statement.
Richard Smith02e85f32011-04-14 22:09:26 +00002113StmtResult
2114Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc,
2115 Stmt *RangeDecl, Stmt *BeginEnd, Expr *Cond,
2116 Expr *Inc, Stmt *LoopVarDecl,
Richard Smitha05b3b52012-09-20 21:52:32 +00002117 SourceLocation RParenLoc, BuildForRangeKind Kind) {
Richard Smith02e85f32011-04-14 22:09:26 +00002118 Scope *S = getCurScope();
2119
2120 DeclStmt *RangeDS = cast<DeclStmt>(RangeDecl);
2121 VarDecl *RangeVar = cast<VarDecl>(RangeDS->getSingleDecl());
2122 QualType RangeVarType = RangeVar->getType();
2123
2124 DeclStmt *LoopVarDS = cast<DeclStmt>(LoopVarDecl);
2125 VarDecl *LoopVar = cast<VarDecl>(LoopVarDS->getSingleDecl());
2126
Richard Smith3249fed2013-08-21 01:40:36 +00002127 // If we hit any errors, mark the loop variable as invalid if its type
2128 // contains 'auto'.
2129 InvalidateOnErrorScope Invalidate(*this, LoopVar,
2130 LoopVar->getType()->isUndeducedType());
2131
Richard Smith02e85f32011-04-14 22:09:26 +00002132 StmtResult BeginEndDecl = BeginEnd;
2133 ExprResult NotEqExpr = Cond, IncrExpr = Inc;
2134
Richard Smith27d807c2013-04-30 13:56:41 +00002135 if (RangeVarType->isDependentType()) {
2136 // The range is implicitly used as a placeholder when it is dependent.
Eli Friedman276dd182013-09-05 00:02:25 +00002137 RangeVar->markUsed(Context);
Richard Smith27d807c2013-04-30 13:56:41 +00002138
2139 // Deduce any 'auto's in the loop variable as 'DependentTy'. We'll fill
2140 // them in properly when we instantiate the loop.
2141 if (!LoopVar->isInvalidDecl() && Kind != BFRK_Check)
2142 LoopVar->setType(SubstAutoType(LoopVar->getType(), Context.DependentTy));
2143 } else if (!BeginEndDecl.get()) {
Richard Smith02e85f32011-04-14 22:09:26 +00002144 SourceLocation RangeLoc = RangeVar->getLocation();
2145
Ted Kremenekbed648e2011-10-10 22:36:28 +00002146 const QualType RangeVarNonRefType = RangeVarType.getNonReferenceType();
2147
2148 ExprResult BeginRangeRef = BuildDeclRefExpr(RangeVar, RangeVarNonRefType,
2149 VK_LValue, ColonLoc);
2150 if (BeginRangeRef.isInvalid())
2151 return StmtError();
2152
2153 ExprResult EndRangeRef = BuildDeclRefExpr(RangeVar, RangeVarNonRefType,
2154 VK_LValue, ColonLoc);
2155 if (EndRangeRef.isInvalid())
Richard Smith02e85f32011-04-14 22:09:26 +00002156 return StmtError();
2157
2158 QualType AutoType = Context.getAutoDeductType();
2159 Expr *Range = RangeVar->getInit();
2160 if (!Range)
2161 return StmtError();
2162 QualType RangeType = Range->getType();
2163
2164 if (RequireCompleteType(RangeLoc, RangeType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002165 diag::err_for_range_incomplete_type))
Richard Smith02e85f32011-04-14 22:09:26 +00002166 return StmtError();
2167
2168 // Build auto __begin = begin-expr, __end = end-expr.
2169 VarDecl *BeginVar = BuildForRangeVarDecl(*this, ColonLoc, AutoType,
2170 "__begin");
2171 VarDecl *EndVar = BuildForRangeVarDecl(*this, ColonLoc, AutoType,
2172 "__end");
2173
2174 // Build begin-expr and end-expr and attach to __begin and __end variables.
2175 ExprResult BeginExpr, EndExpr;
2176 if (const ArrayType *UnqAT = RangeType->getAsArrayTypeUnsafe()) {
2177 // - if _RangeT is an array type, begin-expr and end-expr are __range and
2178 // __range + __bound, respectively, where __bound is the array bound. If
2179 // _RangeT is an array of unknown size or an array of incomplete type,
2180 // the program is ill-formed;
2181
2182 // begin-expr is __range.
Ted Kremenekbed648e2011-10-10 22:36:28 +00002183 BeginExpr = BeginRangeRef;
2184 if (FinishForRangeVarDecl(*this, BeginVar, BeginRangeRef.get(), ColonLoc,
Richard Smith02e85f32011-04-14 22:09:26 +00002185 diag::err_for_range_iter_deduction_failure)) {
2186 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2187 return StmtError();
2188 }
2189
2190 // Find the array bound.
2191 ExprResult BoundExpr;
2192 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(UnqAT))
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002193 BoundExpr = IntegerLiteral::Create(
2194 Context, CAT->getSize(), Context.getPointerDiffType(), RangeLoc);
Richard Smith02e85f32011-04-14 22:09:26 +00002195 else if (const VariableArrayType *VAT =
2196 dyn_cast<VariableArrayType>(UnqAT))
2197 BoundExpr = VAT->getSizeExpr();
2198 else {
2199 // Can't be a DependentSizedArrayType or an IncompleteArrayType since
2200 // UnqAT is not incomplete and Range is not type-dependent.
David Blaikie83d382b2011-09-23 05:06:16 +00002201 llvm_unreachable("Unexpected array type in for-range");
Richard Smith02e85f32011-04-14 22:09:26 +00002202 }
2203
2204 // end-expr is __range + __bound.
Ted Kremenekbed648e2011-10-10 22:36:28 +00002205 EndExpr = ActOnBinOp(S, ColonLoc, tok::plus, EndRangeRef.get(),
Richard Smith02e85f32011-04-14 22:09:26 +00002206 BoundExpr.get());
2207 if (EndExpr.isInvalid())
2208 return StmtError();
2209 if (FinishForRangeVarDecl(*this, EndVar, EndExpr.get(), ColonLoc,
2210 diag::err_for_range_iter_deduction_failure)) {
2211 NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2212 return StmtError();
2213 }
2214 } else {
Richard Smith100b24a2014-04-17 01:52:14 +00002215 OverloadCandidateSet CandidateSet(RangeLoc,
2216 OverloadCandidateSet::CSK_Normal);
Sam Panzer0f384432012-08-21 00:52:01 +00002217 Sema::BeginEndFunction BEFFailure;
2218 ForRangeStatus RangeStatus =
2219 BuildNonArrayForRange(*this, S, BeginRangeRef.get(),
2220 EndRangeRef.get(), RangeType,
2221 BeginVar, EndVar, ColonLoc, &CandidateSet,
2222 &BeginExpr, &EndExpr, &BEFFailure);
Richard Smith02e85f32011-04-14 22:09:26 +00002223
Richard Smitha05b3b52012-09-20 21:52:32 +00002224 if (Kind == BFRK_Build && RangeStatus == FRS_NoViableFunction &&
Sam Panzer0f384432012-08-21 00:52:01 +00002225 BEFFailure == BEF_begin) {
Richard Trieu08254692013-10-11 22:16:04 +00002226 // If the range is being built from an array parameter, emit a
2227 // a diagnostic that it is being treated as a pointer.
2228 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Range)) {
2229 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
2230 QualType ArrayTy = PVD->getOriginalType();
2231 QualType PointerTy = PVD->getType();
2232 if (PointerTy->isPointerType() && ArrayTy->isArrayType()) {
2233 Diag(Range->getLocStart(), diag::err_range_on_array_parameter)
2234 << RangeLoc << PVD << ArrayTy << PointerTy;
2235 Diag(PVD->getLocation(), diag::note_declared_at);
2236 return StmtError();
2237 }
2238 }
2239 }
2240
2241 // If building the range failed, try dereferencing the range expression
2242 // unless a diagnostic was issued or the end function is problematic.
Sam Panzer0f384432012-08-21 00:52:01 +00002243 StmtResult SR = RebuildForRangeWithDereference(*this, S, ForLoc,
2244 LoopVarDecl, ColonLoc,
2245 Range, RangeLoc,
2246 RParenLoc);
Richard Smitha05b3b52012-09-20 21:52:32 +00002247 if (SR.isInvalid() || SR.isUsable())
Sam Panzer0f384432012-08-21 00:52:01 +00002248 return SR;
Richard Smith02e85f32011-04-14 22:09:26 +00002249 }
2250
Sam Panzer0f384432012-08-21 00:52:01 +00002251 // Otherwise, emit diagnostics if we haven't already.
2252 if (RangeStatus == FRS_NoViableFunction) {
Richard Smitha05b3b52012-09-20 21:52:32 +00002253 Expr *Range = BEFFailure ? EndRangeRef.get() : BeginRangeRef.get();
Sam Panzer0f384432012-08-21 00:52:01 +00002254 Diag(Range->getLocStart(), diag::err_for_range_invalid)
2255 << RangeLoc << Range->getType() << BEFFailure;
Nico Webera2a0eb92012-12-29 20:03:39 +00002256 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Range);
Sam Panzer0f384432012-08-21 00:52:01 +00002257 }
2258 // Return an error if no fix was discovered.
2259 if (RangeStatus != FRS_Success)
Richard Smith02e85f32011-04-14 22:09:26 +00002260 return StmtError();
2261 }
2262
Sam Panzer0f384432012-08-21 00:52:01 +00002263 assert(!BeginExpr.isInvalid() && !EndExpr.isInvalid() &&
2264 "invalid range expression in for loop");
2265
2266 // C++11 [dcl.spec.auto]p7: BeginType and EndType must be the same.
Richard Smith02e85f32011-04-14 22:09:26 +00002267 QualType BeginType = BeginVar->getType(), EndType = EndVar->getType();
2268 if (!Context.hasSameType(BeginType, EndType)) {
2269 Diag(RangeLoc, diag::err_for_range_begin_end_types_differ)
2270 << BeginType << EndType;
2271 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2272 NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2273 }
2274
2275 Decl *BeginEndDecls[] = { BeginVar, EndVar };
2276 // Claim the type doesn't contain auto: we've already done the checking.
2277 DeclGroupPtrTy BeginEndGroup =
Craig Toppere3d2ecbe2014-06-28 23:22:33 +00002278 BuildDeclaratorGroup(MutableArrayRef<Decl *>(BeginEndDecls, 2),
Rafael Espindolaab417692013-07-09 12:05:01 +00002279 /*TypeMayContainAuto=*/ false);
Richard Smith02e85f32011-04-14 22:09:26 +00002280 BeginEndDecl = ActOnDeclStmt(BeginEndGroup, ColonLoc, ColonLoc);
2281
Ted Kremenekbed648e2011-10-10 22:36:28 +00002282 const QualType BeginRefNonRefType = BeginType.getNonReferenceType();
2283 ExprResult BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
Richard Smith02e85f32011-04-14 22:09:26 +00002284 VK_LValue, ColonLoc);
Ted Kremenekbed648e2011-10-10 22:36:28 +00002285 if (BeginRef.isInvalid())
2286 return StmtError();
2287
Richard Smith02e85f32011-04-14 22:09:26 +00002288 ExprResult EndRef = BuildDeclRefExpr(EndVar, EndType.getNonReferenceType(),
2289 VK_LValue, ColonLoc);
Ted Kremenekbed648e2011-10-10 22:36:28 +00002290 if (EndRef.isInvalid())
2291 return StmtError();
Richard Smith02e85f32011-04-14 22:09:26 +00002292
2293 // Build and check __begin != __end expression.
2294 NotEqExpr = ActOnBinOp(S, ColonLoc, tok::exclaimequal,
2295 BeginRef.get(), EndRef.get());
2296 NotEqExpr = ActOnBooleanCondition(S, ColonLoc, NotEqExpr.get());
2297 NotEqExpr = ActOnFinishFullExpr(NotEqExpr.get());
2298 if (NotEqExpr.isInvalid()) {
Sam Panzer22a3fe12012-09-06 21:50:08 +00002299 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2300 << RangeLoc << 0 << BeginRangeRef.get()->getType();
Richard Smith02e85f32011-04-14 22:09:26 +00002301 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2302 if (!Context.hasSameType(BeginType, EndType))
2303 NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2304 return StmtError();
2305 }
2306
2307 // Build and check ++__begin expression.
Ted Kremenekbed648e2011-10-10 22:36:28 +00002308 BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2309 VK_LValue, ColonLoc);
2310 if (BeginRef.isInvalid())
2311 return StmtError();
2312
Richard Smith02e85f32011-04-14 22:09:26 +00002313 IncrExpr = ActOnUnaryOp(S, ColonLoc, tok::plusplus, BeginRef.get());
2314 IncrExpr = ActOnFinishFullExpr(IncrExpr.get());
2315 if (IncrExpr.isInvalid()) {
Sam Panzer22a3fe12012-09-06 21:50:08 +00002316 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2317 << RangeLoc << 2 << BeginRangeRef.get()->getType() ;
Richard Smith02e85f32011-04-14 22:09:26 +00002318 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2319 return StmtError();
2320 }
2321
2322 // Build and check *__begin expression.
Ted Kremenekbed648e2011-10-10 22:36:28 +00002323 BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2324 VK_LValue, ColonLoc);
2325 if (BeginRef.isInvalid())
2326 return StmtError();
2327
Richard Smith02e85f32011-04-14 22:09:26 +00002328 ExprResult DerefExpr = ActOnUnaryOp(S, ColonLoc, tok::star, BeginRef.get());
2329 if (DerefExpr.isInvalid()) {
Sam Panzer22a3fe12012-09-06 21:50:08 +00002330 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2331 << RangeLoc << 1 << BeginRangeRef.get()->getType();
Richard Smith02e85f32011-04-14 22:09:26 +00002332 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2333 return StmtError();
2334 }
2335
Richard Smitha05b3b52012-09-20 21:52:32 +00002336 // Attach *__begin as initializer for VD. Don't touch it if we're just
2337 // trying to determine whether this would be a valid range.
2338 if (!LoopVar->isInvalidDecl() && Kind != BFRK_Check) {
Richard Smith02e85f32011-04-14 22:09:26 +00002339 AddInitializerToDecl(LoopVar, DerefExpr.get(), /*DirectInit=*/false,
2340 /*TypeMayContainAuto=*/true);
2341 if (LoopVar->isInvalidDecl())
2342 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2343 }
2344 }
2345
Richard Smitha05b3b52012-09-20 21:52:32 +00002346 // Don't bother to actually allocate the result if we're just trying to
2347 // determine whether it would be valid.
2348 if (Kind == BFRK_Check)
2349 return StmtResult();
2350
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002351 return new (Context) CXXForRangeStmt(
2352 RangeDS, cast_or_null<DeclStmt>(BeginEndDecl.get()), NotEqExpr.get(),
2353 IncrExpr.get(), LoopVarDS, /*Body=*/nullptr, ForLoc, ColonLoc, RParenLoc);
Richard Smith02e85f32011-04-14 22:09:26 +00002354}
2355
Chad Rosier02a84392012-08-10 17:56:09 +00002356/// FinishObjCForCollectionStmt - Attach the body to a objective-C foreach
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00002357/// statement.
2358StmtResult Sema::FinishObjCForCollectionStmt(Stmt *S, Stmt *B) {
2359 if (!S || !B)
2360 return StmtError();
2361 ObjCForCollectionStmt * ForStmt = cast<ObjCForCollectionStmt>(S);
Chad Rosier02a84392012-08-10 17:56:09 +00002362
Fariborz Jahanian450bb6e2012-07-03 22:00:52 +00002363 ForStmt->setBody(B);
2364 return S;
2365}
2366
Richard Trieu3e1d4832015-04-13 22:08:55 +00002367// Warn when the loop variable is a const reference that creates a copy.
2368// Suggest using the non-reference type for copies. If a copy can be prevented
2369// suggest the const reference type that would do so.
2370// For instance, given "for (const &Foo : Range)", suggest
2371// "for (const Foo : Range)" to denote a copy is made for the loop. If
2372// possible, also suggest "for (const &Bar : Range)" if this type prevents
2373// the copy altogether.
2374static void DiagnoseForRangeReferenceVariableCopies(Sema &SemaRef,
2375 const VarDecl *VD,
2376 QualType RangeInitType) {
2377 const Expr *InitExpr = VD->getInit();
2378 if (!InitExpr)
2379 return;
2380
2381 QualType VariableType = VD->getType();
2382
2383 const MaterializeTemporaryExpr *MTE =
2384 dyn_cast<MaterializeTemporaryExpr>(InitExpr);
2385
2386 // No copy made.
2387 if (!MTE)
2388 return;
2389
2390 const Expr *E = MTE->GetTemporaryExpr()->IgnoreImpCasts();
2391
2392 // Searching for either UnaryOperator for dereference of a pointer or
2393 // CXXOperatorCallExpr for handling iterators.
2394 while (!isa<CXXOperatorCallExpr>(E) && !isa<UnaryOperator>(E)) {
2395 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(E)) {
2396 E = CCE->getArg(0);
2397 } else if (const CXXMemberCallExpr *Call = dyn_cast<CXXMemberCallExpr>(E)) {
2398 const MemberExpr *ME = cast<MemberExpr>(Call->getCallee());
2399 E = ME->getBase();
2400 } else {
2401 const MaterializeTemporaryExpr *MTE = cast<MaterializeTemporaryExpr>(E);
2402 E = MTE->GetTemporaryExpr();
2403 }
2404 E = E->IgnoreImpCasts();
2405 }
2406
2407 bool ReturnsReference = false;
2408 if (isa<UnaryOperator>(E)) {
2409 ReturnsReference = true;
2410 } else {
2411 const CXXOperatorCallExpr *Call = cast<CXXOperatorCallExpr>(E);
2412 const FunctionDecl *FD = Call->getDirectCallee();
2413 QualType ReturnType = FD->getReturnType();
2414 ReturnsReference = ReturnType->isReferenceType();
2415 }
2416
2417 if (ReturnsReference) {
2418 // Loop variable creates a temporary. Suggest either to go with
2419 // non-reference loop variable to indiciate a copy is made, or
2420 // the correct time to bind a const reference.
2421 SemaRef.Diag(VD->getLocation(), diag::warn_for_range_const_reference_copy)
2422 << VD << VariableType << E->getType();
2423 QualType NonReferenceType = VariableType.getNonReferenceType();
2424 NonReferenceType.removeLocalConst();
2425 QualType NewReferenceType =
2426 SemaRef.Context.getLValueReferenceType(E->getType().withConst());
2427 SemaRef.Diag(VD->getLocStart(), diag::note_use_type_or_non_reference)
2428 << NonReferenceType << NewReferenceType << VD->getSourceRange();
2429 } else {
2430 // The range always returns a copy, so a temporary is always created.
2431 // Suggest removing the reference from the loop variable.
2432 SemaRef.Diag(VD->getLocation(), diag::warn_for_range_variable_always_copy)
2433 << VD << RangeInitType;
2434 QualType NonReferenceType = VariableType.getNonReferenceType();
2435 NonReferenceType.removeLocalConst();
2436 SemaRef.Diag(VD->getLocStart(), diag::note_use_non_reference_type)
2437 << NonReferenceType << VD->getSourceRange();
2438 }
2439}
2440
2441// Warns when the loop variable can be changed to a reference type to
2442// prevent a copy. For instance, if given "for (const Foo x : Range)" suggest
2443// "for (const Foo &x : Range)" if this form does not make a copy.
2444static void DiagnoseForRangeConstVariableCopies(Sema &SemaRef,
2445 const VarDecl *VD) {
2446 const Expr *InitExpr = VD->getInit();
2447 if (!InitExpr)
2448 return;
2449
2450 QualType VariableType = VD->getType();
2451
2452 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(InitExpr)) {
2453 if (!CE->getConstructor()->isCopyConstructor())
2454 return;
2455 } else if (const CastExpr *CE = dyn_cast<CastExpr>(InitExpr)) {
2456 if (CE->getCastKind() != CK_LValueToRValue)
2457 return;
2458 } else {
2459 return;
2460 }
2461
2462 // TODO: Determine a maximum size that a POD type can be before a diagnostic
2463 // should be emitted. Also, only ignore POD types with trivial copy
2464 // constructors.
2465 if (VariableType.isPODType(SemaRef.Context))
2466 return;
2467
2468 // Suggest changing from a const variable to a const reference variable
2469 // if doing so will prevent a copy.
2470 SemaRef.Diag(VD->getLocation(), diag::warn_for_range_copy)
2471 << VD << VariableType << InitExpr->getType();
2472 SemaRef.Diag(VD->getLocStart(), diag::note_use_reference_type)
2473 << SemaRef.Context.getLValueReferenceType(VariableType)
2474 << VD->getSourceRange();
2475}
2476
2477/// DiagnoseForRangeVariableCopies - Diagnose three cases and fixes for them.
2478/// 1) for (const foo &x : foos) where foos only returns a copy. Suggest
2479/// using "const foo x" to show that a copy is made
2480/// 2) for (const bar &x : foos) where bar is a temporary intialized by bar.
2481/// Suggest either "const bar x" to keep the copying or "const foo& x" to
2482/// prevent the copy.
2483/// 3) for (const foo x : foos) where x is constructed from a reference foo.
2484/// Suggest "const foo &x" to prevent the copy.
2485static void DiagnoseForRangeVariableCopies(Sema &SemaRef,
2486 const CXXForRangeStmt *ForStmt) {
2487 if (SemaRef.Diags.isIgnored(diag::warn_for_range_const_reference_copy,
2488 ForStmt->getLocStart()) &&
2489 SemaRef.Diags.isIgnored(diag::warn_for_range_variable_always_copy,
2490 ForStmt->getLocStart()) &&
2491 SemaRef.Diags.isIgnored(diag::warn_for_range_copy,
2492 ForStmt->getLocStart())) {
2493 return;
2494 }
2495
2496 const VarDecl *VD = ForStmt->getLoopVariable();
2497 if (!VD)
2498 return;
2499
2500 QualType VariableType = VD->getType();
2501
2502 if (VariableType->isIncompleteType())
2503 return;
2504
2505 const Expr *InitExpr = VD->getInit();
2506 if (!InitExpr)
2507 return;
2508
2509 if (VariableType->isReferenceType()) {
2510 DiagnoseForRangeReferenceVariableCopies(SemaRef, VD,
2511 ForStmt->getRangeInit()->getType());
2512 } else if (VariableType.isConstQualified()) {
2513 DiagnoseForRangeConstVariableCopies(SemaRef, VD);
2514 }
2515}
2516
Richard Smith02e85f32011-04-14 22:09:26 +00002517/// FinishCXXForRangeStmt - Attach the body to a C++0x for-range statement.
2518/// This is a separate step from ActOnCXXForRangeStmt because analysis of the
2519/// body cannot be performed until after the type of the range variable is
2520/// determined.
2521StmtResult Sema::FinishCXXForRangeStmt(Stmt *S, Stmt *B) {
2522 if (!S || !B)
2523 return StmtError();
2524
Fariborz Jahanian00213472012-07-06 19:04:04 +00002525 if (isa<ObjCForCollectionStmt>(S))
2526 return FinishObjCForCollectionStmt(S, B);
Chad Rosier02a84392012-08-10 17:56:09 +00002527
Dmitri Gribenko800ddf32012-02-14 22:14:32 +00002528 CXXForRangeStmt *ForStmt = cast<CXXForRangeStmt>(S);
2529 ForStmt->setBody(B);
2530
2531 DiagnoseEmptyStmtBody(ForStmt->getRParenLoc(), B,
2532 diag::warn_empty_range_based_for_body);
2533
Richard Trieu3e1d4832015-04-13 22:08:55 +00002534 DiagnoseForRangeVariableCopies(*this, ForStmt);
2535
Richard Smith02e85f32011-04-14 22:09:26 +00002536 return S;
2537}
2538
Chris Lattnercab02a62011-02-17 20:34:02 +00002539StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc,
2540 SourceLocation LabelLoc,
2541 LabelDecl *TheDecl) {
2542 getCurFunction()->setHasBranchIntoScope();
Eli Friedman276dd182013-09-05 00:02:25 +00002543 TheDecl->markUsed(Context);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002544 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc);
Chris Lattneraf8d5812006-11-10 05:07:45 +00002545}
Chris Lattner1c310502007-05-31 06:00:00 +00002546
John McCalldadc5752010-08-24 06:29:42 +00002547StmtResult
Chris Lattner34d9a512009-04-19 01:04:21 +00002548Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
John McCallb268a282010-08-23 23:25:46 +00002549 Expr *E) {
Eli Friedman8d7ff402009-03-26 00:18:06 +00002550 // Convert operand to void*
Douglas Gregor30776d42009-05-16 00:20:29 +00002551 if (!E->isTypeDependent()) {
2552 QualType ETy = E->getType();
Chandler Carruth00216982010-01-31 10:26:25 +00002553 QualType DestTy = Context.getPointerType(Context.VoidTy.withConst());
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002554 ExprResult ExprRes = E;
Douglas Gregor30776d42009-05-16 00:20:29 +00002555 AssignConvertType ConvTy =
John Wiegley01296292011-04-08 18:41:53 +00002556 CheckSingleAssignmentConstraints(DestTy, ExprRes);
2557 if (ExprRes.isInvalid())
2558 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002559 E = ExprRes.get();
Chandler Carruth00216982010-01-31 10:26:25 +00002560 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))
Douglas Gregor30776d42009-05-16 00:20:29 +00002561 return StmtError();
2562 }
John McCalla95172b2010-08-01 00:26:45 +00002563
Richard Smith945f8d32013-01-14 22:39:08 +00002564 ExprResult ExprRes = ActOnFinishFullExpr(E);
2565 if (ExprRes.isInvalid())
2566 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002567 E = ExprRes.get();
Richard Smith945f8d32013-01-14 22:39:08 +00002568
John McCallaab3e412010-08-25 08:40:02 +00002569 getCurFunction()->setHasIndirectGoto();
John McCalla95172b2010-08-01 00:26:45 +00002570
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002571 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E);
Chris Lattneraf8d5812006-11-10 05:07:45 +00002572}
2573
Nico Weberd64657f2015-03-09 02:47:59 +00002574static void CheckJumpOutOfSEHFinally(Sema &S, SourceLocation Loc,
2575 const Scope &DestScope) {
2576 if (!S.CurrentSEHFinally.empty() &&
2577 DestScope.Contains(*S.CurrentSEHFinally.back())) {
2578 S.Diag(Loc, diag::warn_jump_out_of_seh_finally);
2579 }
2580}
2581
John McCalldadc5752010-08-24 06:29:42 +00002582StmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +00002583Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Chris Lattnereaafe1222006-11-10 05:17:58 +00002584 Scope *S = CurScope->getContinueParent();
2585 if (!S) {
2586 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl573feed2009-01-18 13:19:59 +00002587 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Chris Lattnereaafe1222006-11-10 05:17:58 +00002588 }
Nico Weberd64657f2015-03-09 02:47:59 +00002589 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S);
Sebastian Redl573feed2009-01-18 13:19:59 +00002590
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002591 return new (Context) ContinueStmt(ContinueLoc);
Chris Lattneraf8d5812006-11-10 05:07:45 +00002592}
2593
John McCalldadc5752010-08-24 06:29:42 +00002594StmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +00002595Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Chris Lattnereaafe1222006-11-10 05:17:58 +00002596 Scope *S = CurScope->getBreakParent();
2597 if (!S) {
2598 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl573feed2009-01-18 13:19:59 +00002599 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Chris Lattnereaafe1222006-11-10 05:17:58 +00002600 }
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00002601 if (S->isOpenMPLoopScope())
2602 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
2603 << "break");
Nico Weberd64657f2015-03-09 02:47:59 +00002604 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S);
Sebastian Redl573feed2009-01-18 13:19:59 +00002605
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002606 return new (Context) BreakStmt(BreakLoc);
Chris Lattneraf8d5812006-11-10 05:07:45 +00002607}
2608
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002609/// \brief Determine whether the given expression is a candidate for
Douglas Gregor5d369002011-01-21 18:05:27 +00002610/// copy elision in either a return statement or a throw expression.
Douglas Gregor6fd1b182010-05-15 06:01:05 +00002611///
Douglas Gregor5d369002011-01-21 18:05:27 +00002612/// \param ReturnType If we're determining the copy elision candidate for
2613/// a return statement, this is the return type of the function. If we're
2614/// determining the copy elision candidate for a throw expression, this will
2615/// be a NULL type.
Douglas Gregor6fd1b182010-05-15 06:01:05 +00002616///
Douglas Gregor5d369002011-01-21 18:05:27 +00002617/// \param E The expression being returned from the function or block, or
2618/// being thrown.
Douglas Gregor6fd1b182010-05-15 06:01:05 +00002619///
Douglas Gregor86394412011-05-20 15:00:53 +00002620/// \param AllowFunctionParameter Whether we allow function parameters to
2621/// be considered NRVO candidates. C++ prohibits this for NRVO itself, but
2622/// we re-use this logic to determine whether we should try to move as part of
2623/// a return or throw (which does allow function parameters).
Douglas Gregor6fd1b182010-05-15 06:01:05 +00002624///
2625/// \returns The NRVO candidate variable, if the return statement may use the
2626/// NRVO, or NULL if there is no such candidate.
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002627VarDecl *Sema::getCopyElisionCandidate(QualType ReturnType,
2628 Expr *E,
2629 bool AllowFunctionParameter) {
2630 if (!getLangOpts().CPlusPlus)
2631 return nullptr;
2632
2633 // - in a return statement in a function [where] ...
2634 // ... the expression is the name of a non-volatile automatic object ...
2635 DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParens());
Alexey Bataev19acc3d2015-01-12 10:17:46 +00002636 if (!DR || DR->refersToEnclosingVariableOrCapture())
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002637 return nullptr;
2638 VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
2639 if (!VD)
2640 return nullptr;
2641
2642 if (isCopyElisionCandidate(ReturnType, VD, AllowFunctionParameter))
2643 return VD;
2644 return nullptr;
2645}
2646
2647bool Sema::isCopyElisionCandidate(QualType ReturnType, const VarDecl *VD,
2648 bool AllowFunctionParameter) {
2649 QualType VDType = VD->getType();
Douglas Gregor222cf0e2010-05-15 00:13:29 +00002650 // - in a return statement in a function with ...
2651 // ... a class return type ...
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002652 if (!ReturnType.isNull() && !ReturnType->isDependentType()) {
Douglas Gregor5d369002011-01-21 18:05:27 +00002653 if (!ReturnType->isRecordType())
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002654 return false;
Douglas Gregor5d369002011-01-21 18:05:27 +00002655 // ... the same cv-unqualified type as the function return type ...
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002656 if (!VDType->isDependentType() &&
2657 !Context.hasSameUnqualifiedType(ReturnType, VDType))
2658 return false;
Douglas Gregor5d369002011-01-21 18:05:27 +00002659 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002660
John McCall03318c12011-11-11 03:57:31 +00002661 // ...object (other than a function or catch-clause parameter)...
2662 if (VD->getKind() != Decl::Var &&
2663 !(AllowFunctionParameter && VD->getKind() == Decl::ParmVar))
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002664 return false;
2665 if (VD->isExceptionVariable()) return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002666
John McCall03318c12011-11-11 03:57:31 +00002667 // ...automatic...
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002668 if (!VD->hasLocalStorage()) return false;
John McCall03318c12011-11-11 03:57:31 +00002669
2670 // ...non-volatile...
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002671 if (VD->getType().isVolatileQualified()) return false;
John McCall03318c12011-11-11 03:57:31 +00002672
2673 // __block variables can't be allocated in a way that permits NRVO.
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002674 if (VD->hasAttr<BlocksAttr>()) return false;
John McCall03318c12011-11-11 03:57:31 +00002675
2676 // Variables with higher required alignment than their type's ABI
2677 // alignment cannot use NRVO.
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002678 if (!VD->getType()->isDependentType() && VD->hasAttr<AlignedAttr>() &&
John McCall03318c12011-11-11 03:57:31 +00002679 Context.getDeclAlign(VD) > Context.getTypeAlignInChars(VD->getType()))
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002680 return false;
John McCall03318c12011-11-11 03:57:31 +00002681
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002682 return true;
Douglas Gregor222cf0e2010-05-15 00:13:29 +00002683}
2684
Douglas Gregor626fbed2011-01-21 21:08:57 +00002685/// \brief Perform the initialization of a potentially-movable value, which
2686/// is the result of return value.
Douglas Gregorf282a762011-01-21 19:38:21 +00002687///
2688/// This routine implements C++0x [class.copy]p33, which attempts to treat
2689/// returned lvalues as rvalues in certain cases (to prefer move construction),
2690/// then falls back to treating them as lvalues if that failed.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002691ExprResult
Douglas Gregor626fbed2011-01-21 21:08:57 +00002692Sema::PerformMoveOrCopyInitialization(const InitializedEntity &Entity,
2693 const VarDecl *NRVOCandidate,
2694 QualType ResultType,
Douglas Gregor53e191ed2011-07-06 22:04:06 +00002695 Expr *Value,
2696 bool AllowNRVO) {
Douglas Gregorf282a762011-01-21 19:38:21 +00002697 // C++0x [class.copy]p33:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002698 // When the criteria for elision of a copy operation are met or would
2699 // be met save for the fact that the source object is a function
2700 // parameter, and the object to be copied is designated by an lvalue,
Douglas Gregorf282a762011-01-21 19:38:21 +00002701 // overload resolution to select the constructor for the copy is first
2702 // performed as if the object were designated by an rvalue.
Douglas Gregorf282a762011-01-21 19:38:21 +00002703 ExprResult Res = ExprError();
Douglas Gregor53e191ed2011-07-06 22:04:06 +00002704 if (AllowNRVO &&
2705 (NRVOCandidate || getCopyElisionCandidate(ResultType, Value, true))) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002706 ImplicitCastExpr AsRvalue(ImplicitCastExpr::OnStack,
Richard Smith9dd6e8f2012-05-15 05:04:02 +00002707 Value->getType(), CK_NoOp, Value, VK_XValue);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002708
Douglas Gregorf282a762011-01-21 19:38:21 +00002709 Expr *InitExpr = &AsRvalue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002710 InitializationKind Kind
Douglas Gregor626fbed2011-01-21 21:08:57 +00002711 = InitializationKind::CreateCopy(Value->getLocStart(),
2712 Value->getLocStart());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002713 InitializationSequence Seq(*this, Entity, Kind, InitExpr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002714
2715 // [...] If overload resolution fails, or if the type of the first
Douglas Gregorf282a762011-01-21 19:38:21 +00002716 // parameter of the selected constructor is not an rvalue reference
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002717 // to the object's type (possibly cv-qualified), overload resolution
Douglas Gregorf282a762011-01-21 19:38:21 +00002718 // is performed again, considering the object as an lvalue.
Sebastian Redlc7ca5872011-06-05 12:23:28 +00002719 if (Seq) {
Douglas Gregorf282a762011-01-21 19:38:21 +00002720 for (InitializationSequence::step_iterator Step = Seq.step_begin(),
2721 StepEnd = Seq.step_end();
2722 Step != StepEnd; ++Step) {
Sebastian Redlc7ca5872011-06-05 12:23:28 +00002723 if (Step->Kind != InitializationSequence::SK_ConstructorInitialization)
Douglas Gregorf282a762011-01-21 19:38:21 +00002724 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002725
2726 CXXConstructorDecl *Constructor
Douglas Gregorf282a762011-01-21 19:38:21 +00002727 = cast<CXXConstructorDecl>(Step->Function.Function);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002728
Douglas Gregorf282a762011-01-21 19:38:21 +00002729 const RValueReferenceType *RRefType
Douglas Gregor626fbed2011-01-21 21:08:57 +00002730 = Constructor->getParamDecl(0)->getType()
2731 ->getAs<RValueReferenceType>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002732
Douglas Gregorf282a762011-01-21 19:38:21 +00002733 // If we don't meet the criteria, break out now.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002734 if (!RRefType ||
Douglas Gregor626fbed2011-01-21 21:08:57 +00002735 !Context.hasSameUnqualifiedType(RRefType->getPointeeType(),
2736 Context.getTypeDeclType(Constructor->getParent())))
Douglas Gregorf282a762011-01-21 19:38:21 +00002737 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002738
Douglas Gregorf282a762011-01-21 19:38:21 +00002739 // Promote "AsRvalue" to the heap, since we now need this
2740 // expression node to persist.
Douglas Gregor626fbed2011-01-21 21:08:57 +00002741 Value = ImplicitCastExpr::Create(Context, Value->getType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00002742 CK_NoOp, Value, nullptr, VK_XValue);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002743
Douglas Gregorf282a762011-01-21 19:38:21 +00002744 // Complete type-checking the initialization of the return type
2745 // using the constructor we found.
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002746 Res = Seq.Perform(*this, Entity, Kind, Value);
Douglas Gregorf282a762011-01-21 19:38:21 +00002747 }
2748 }
2749 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002750
Douglas Gregorf282a762011-01-21 19:38:21 +00002751 // Either we didn't meet the criteria for treating an lvalue as an rvalue,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002752 // above, or overload resolution failed. Either way, we need to try
Douglas Gregorf282a762011-01-21 19:38:21 +00002753 // (again) now with the return value expression as written.
2754 if (Res.isInvalid())
Douglas Gregor626fbed2011-01-21 21:08:57 +00002755 Res = PerformCopyInitialization(Entity, SourceLocation(), Value);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002756
Douglas Gregorf282a762011-01-21 19:38:21 +00002757 return Res;
2758}
2759
Richard Smith4db51c22013-09-25 05:02:54 +00002760/// \brief Determine whether the declared return type of the specified function
2761/// contains 'auto'.
2762static bool hasDeducedReturnType(FunctionDecl *FD) {
2763 const FunctionProtoType *FPT =
2764 FD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>();
Alp Toker314cc812014-01-25 16:55:45 +00002765 return FPT->getReturnType()->isUndeducedType();
Richard Smith4db51c22013-09-25 05:02:54 +00002766}
2767
Eli Friedman34b49062012-01-26 03:00:14 +00002768/// ActOnCapScopeReturnStmt - Utility routine to type-check return statements
2769/// for capturing scopes.
Steve Naroffc540d662008-09-03 18:15:37 +00002770///
John McCalldadc5752010-08-24 06:29:42 +00002771StmtResult
Eli Friedman34b49062012-01-26 03:00:14 +00002772Sema::ActOnCapScopeReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
2773 // If this is the first return we've seen, infer the return type.
Richard Smith9155be12013-05-12 03:09:35 +00002774 // [expr.prim.lambda]p4 in C++11; block literals follow the same rules.
Eli Friedman34b49062012-01-26 03:00:14 +00002775 CapturingScopeInfo *CurCap = cast<CapturingScopeInfo>(getCurFunction());
Jordan Rosed39e5f12012-07-02 21:19:23 +00002776 QualType FnRetType = CurCap->ReturnType;
Richard Smith4db51c22013-09-25 05:02:54 +00002777 LambdaScopeInfo *CurLambda = dyn_cast<LambdaScopeInfo>(CurCap);
Manuel Klimek2fdbea22013-08-22 12:12:24 +00002778
Richard Smith4db51c22013-09-25 05:02:54 +00002779 if (CurLambda && hasDeducedReturnType(CurLambda->CallOperator)) {
2780 // In C++1y, the return type may involve 'auto'.
2781 // FIXME: Blocks might have a return type of 'auto' explicitly specified.
2782 FunctionDecl *FD = CurLambda->CallOperator;
2783 if (CurCap->ReturnType.isNull())
Alp Toker314cc812014-01-25 16:55:45 +00002784 CurCap->ReturnType = FD->getReturnType();
Richard Smith4db51c22013-09-25 05:02:54 +00002785
2786 AutoType *AT = CurCap->ReturnType->getContainedAutoType();
2787 assert(AT && "lost auto type from lambda return type");
2788 if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
2789 FD->setInvalidDecl();
2790 return StmtError();
2791 }
Alp Toker314cc812014-01-25 16:55:45 +00002792 CurCap->ReturnType = FnRetType = FD->getReturnType();
Richard Smith4db51c22013-09-25 05:02:54 +00002793 } else if (CurCap->HasImplicitReturnType) {
2794 // For blocks/lambdas with implicit return types, we check each return
2795 // statement individually, and deduce the common return type when the block
2796 // or lambda is completed.
2797 // FIXME: Fold this into the 'auto' codepath above.
Douglas Gregor940a5502012-02-09 18:40:39 +00002798 if (RetValExp && !isa<InitListExpr>(RetValExp)) {
John Wiegley01296292011-04-08 18:41:53 +00002799 ExprResult Result = DefaultFunctionArrayLvalueConversion(RetValExp);
2800 if (Result.isInvalid())
2801 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002802 RetValExp = Result.get();
Douglas Gregor0aa91e02011-06-05 05:04:23 +00002803
Richard Smith5a0e50c2014-12-19 22:10:51 +00002804 // DR1048: even prior to C++14, we should use the 'auto' deduction rules
2805 // when deducing a return type for a lambda-expression (or by extension
2806 // for a block). These rules differ from the stated C++11 rules only in
2807 // that they remove top-level cv-qualifiers.
Richard Smith4db51c22013-09-25 05:02:54 +00002808 if (!CurContext->isDependentContext())
Richard Smith5a0e50c2014-12-19 22:10:51 +00002809 FnRetType = RetValExp->getType().getUnqualifiedType();
Richard Smith4db51c22013-09-25 05:02:54 +00002810 else
Jordan Rosed39e5f12012-07-02 21:19:23 +00002811 FnRetType = CurCap->ReturnType = Context.DependentTy;
Chad Rosier02a84392012-08-10 17:56:09 +00002812 } else {
Douglas Gregor940a5502012-02-09 18:40:39 +00002813 if (RetValExp) {
2814 // C++11 [expr.lambda.prim]p4 bans inferring the result from an
2815 // initializer list, because it is not an expression (even
2816 // though we represent it as one). We still deduce 'void'.
2817 Diag(ReturnLoc, diag::err_lambda_return_init_list)
2818 << RetValExp->getSourceRange();
2819 }
Manuel Klimek2fdbea22013-08-22 12:12:24 +00002820
Jordan Rosed39e5f12012-07-02 21:19:23 +00002821 FnRetType = Context.VoidTy;
Fariborz Jahanian5c12ca82011-12-03 23:53:56 +00002822 }
Jordan Rosed39e5f12012-07-02 21:19:23 +00002823
2824 // Although we'll properly infer the type of the block once it's completed,
2825 // make sure we provide a return type now for better error recovery.
2826 if (CurCap->ReturnType.isNull())
2827 CurCap->ReturnType = FnRetType;
Steve Naroffc540d662008-09-03 18:15:37 +00002828 }
Eli Friedman34b49062012-01-26 03:00:14 +00002829 assert(!FnRetType.isNull());
Sebastian Redl573feed2009-01-18 13:19:59 +00002830
Douglas Gregorcf11eb72012-02-15 16:20:15 +00002831 if (BlockScopeInfo *CurBlock = dyn_cast<BlockScopeInfo>(CurCap)) {
Eli Friedman34b49062012-01-26 03:00:14 +00002832 if (CurBlock->FunctionType->getAs<FunctionType>()->getNoReturnAttr()) {
2833 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr);
2834 return StmtError();
2835 }
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00002836 } else if (CapturedRegionScopeInfo *CurRegion =
2837 dyn_cast<CapturedRegionScopeInfo>(CurCap)) {
2838 Diag(ReturnLoc, diag::err_return_in_captured_stmt) << CurRegion->getRegionName();
2839 return StmtError();
Douglas Gregorcf11eb72012-02-15 16:20:15 +00002840 } else {
Richard Smith4db51c22013-09-25 05:02:54 +00002841 assert(CurLambda && "unknown kind of captured scope");
2842 if (CurLambda->CallOperator->getType()->getAs<FunctionType>()
2843 ->getNoReturnAttr()) {
Douglas Gregorcf11eb72012-02-15 16:20:15 +00002844 Diag(ReturnLoc, diag::err_noreturn_lambda_has_return_expr);
2845 return StmtError();
2846 }
2847 }
Mike Stump56ed2ea2009-04-29 21:40:37 +00002848
Steve Naroffc540d662008-09-03 18:15:37 +00002849 // Otherwise, verify that this result type matches the previous one. We are
2850 // pickier with blocks than for normal functions because we don't have GCC
2851 // compatibility to worry about here.
Craig Topperc3ec1492014-05-26 06:22:03 +00002852 const VarDecl *NRVOCandidate = nullptr;
Manuel Klimek2fdbea22013-08-22 12:12:24 +00002853 if (FnRetType->isDependentType()) {
John McCall5500ef22011-08-17 22:09:46 +00002854 // Delay processing for now. TODO: there are lots of dependent
2855 // types we can conclusively prove aren't void.
2856 } else if (FnRetType->isVoidType()) {
Sebastian Redl74b173e2012-02-22 17:38:04 +00002857 if (RetValExp && !isa<InitListExpr>(RetValExp) &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00002858 !(getLangOpts().CPlusPlus &&
John McCall5500ef22011-08-17 22:09:46 +00002859 (RetValExp->isTypeDependent() ||
2860 RetValExp->getType()->isVoidType()))) {
Fariborz Jahanian3ba24ba2012-03-21 16:45:13 +00002861 if (!getLangOpts().CPlusPlus &&
2862 RetValExp->getType()->isVoidType())
Fariborz Jahanian0740ed92012-03-21 20:28:39 +00002863 Diag(ReturnLoc, diag::ext_return_has_void_expr) << "literal" << 2;
Fariborz Jahanian3ba24ba2012-03-21 16:45:13 +00002864 else {
2865 Diag(ReturnLoc, diag::err_return_block_has_expr);
Craig Topperc3ec1492014-05-26 06:22:03 +00002866 RetValExp = nullptr;
Fariborz Jahanian3ba24ba2012-03-21 16:45:13 +00002867 }
Steve Naroffc540d662008-09-03 18:15:37 +00002868 }
Douglas Gregor6fd1b182010-05-15 06:01:05 +00002869 } else if (!RetValExp) {
John McCall5500ef22011-08-17 22:09:46 +00002870 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
2871 } else if (!RetValExp->isTypeDependent()) {
2872 // we have a non-void block with an expression, continue checking
Sebastian Redl573feed2009-01-18 13:19:59 +00002873
John McCall5500ef22011-08-17 22:09:46 +00002874 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
2875 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
2876 // function return.
Sebastian Redl573feed2009-01-18 13:19:59 +00002877
John McCall5500ef22011-08-17 22:09:46 +00002878 // In C++ the return statement is handled via a copy initialization.
2879 // the C version of which boils down to CheckSingleAssignmentConstraints.
2880 NRVOCandidate = getCopyElisionCandidate(FnRetType, RetValExp, false);
2881 InitializedEntity Entity = InitializedEntity::InitializeResult(ReturnLoc,
2882 FnRetType,
Craig Topperc3ec1492014-05-26 06:22:03 +00002883 NRVOCandidate != nullptr);
John McCall5500ef22011-08-17 22:09:46 +00002884 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRVOCandidate,
2885 FnRetType, RetValExp);
2886 if (Res.isInvalid()) {
2887 // FIXME: Cleanup temporaries here, anyway?
2888 return StmtError();
Anders Carlsson6f923f82010-01-29 18:30:20 +00002889 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002890 RetValExp = Res.get();
Ted Kremenekef9e7f82014-01-22 06:10:28 +00002891 CheckReturnValExpr(RetValExp, FnRetType, ReturnLoc);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002892 } else {
2893 NRVOCandidate = getCopyElisionCandidate(FnRetType, RetValExp, false);
Steve Naroffc540d662008-09-03 18:15:37 +00002894 }
Sebastian Redl573feed2009-01-18 13:19:59 +00002895
John McCall75f92b52011-08-17 21:34:14 +00002896 if (RetValExp) {
Richard Smith945f8d32013-01-14 22:39:08 +00002897 ExprResult ER = ActOnFinishFullExpr(RetValExp, ReturnLoc);
2898 if (ER.isInvalid())
2899 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002900 RetValExp = ER.get();
John McCall75f92b52011-08-17 21:34:14 +00002901 }
John McCall5500ef22011-08-17 22:09:46 +00002902 ReturnStmt *Result = new (Context) ReturnStmt(ReturnLoc, RetValExp,
2903 NRVOCandidate);
John McCall75f92b52011-08-17 21:34:14 +00002904
Jordan Rosed39e5f12012-07-02 21:19:23 +00002905 // If we need to check for the named return value optimization,
2906 // or if we need to infer the return type,
2907 // save the return statement in our scope for later processing.
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00002908 if (CurCap->HasImplicitReturnType || NRVOCandidate)
Douglas Gregor6fd1b182010-05-15 06:01:05 +00002909 FunctionScopes.back()->Returns.push_back(Result);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002910
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002911 return Result;
Steve Naroffc540d662008-09-03 18:15:37 +00002912}
Manuel Klimek2fdbea22013-08-22 12:12:24 +00002913
Nico Weber72889432014-09-06 01:25:55 +00002914namespace {
2915/// \brief Marks all typedefs in all local classes in a type referenced.
2916///
2917/// In a function like
2918/// auto f() {
2919/// struct S { typedef int a; };
2920/// return S();
2921/// }
2922///
2923/// the local type escapes and could be referenced in some TUs but not in
2924/// others. Pretend that all local typedefs are always referenced, to not warn
2925/// on this. This isn't necessary if f has internal linkage, or the typedef
2926/// is private.
2927class LocalTypedefNameReferencer
2928 : public RecursiveASTVisitor<LocalTypedefNameReferencer> {
2929public:
2930 LocalTypedefNameReferencer(Sema &S) : S(S) {}
2931 bool VisitRecordType(const RecordType *RT);
2932private:
2933 Sema &S;
2934};
2935bool LocalTypedefNameReferencer::VisitRecordType(const RecordType *RT) {
2936 auto *R = dyn_cast<CXXRecordDecl>(RT->getDecl());
2937 if (!R || !R->isLocalClass() || !R->isLocalClass()->isExternallyVisible() ||
2938 R->isDependentType())
2939 return true;
2940 for (auto *TmpD : R->decls())
2941 if (auto *T = dyn_cast<TypedefNameDecl>(TmpD))
2942 if (T->getAccess() != AS_private || R->hasFriends())
2943 S.MarkAnyDeclReferenced(T->getLocation(), T, /*OdrUse=*/false);
2944 return true;
2945}
2946}
2947
Saleem Abdulrasool374b5aa2014-10-16 22:42:53 +00002948TypeLoc Sema::getReturnTypeLoc(FunctionDecl *FD) const {
Saleem Abdulrasoole8aab742014-10-17 17:20:33 +00002949 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Saleem Abdulrasool374b5aa2014-10-16 22:42:53 +00002950 while (auto ATL = TL.getAs<AttributedTypeLoc>())
2951 TL = ATL.getModifiedLoc().IgnoreParens();
Saleem Abdulrasoole8aab742014-10-17 17:20:33 +00002952 return TL.castAs<FunctionProtoTypeLoc>().getReturnLoc();
Saleem Abdulrasool374b5aa2014-10-16 22:42:53 +00002953}
2954
Richard Smith2a7d4812013-05-04 07:00:32 +00002955/// Deduce the return type for a function from a returned expression, per
2956/// C++1y [dcl.spec.auto]p6.
2957bool Sema::DeduceFunctionTypeFromReturnExpr(FunctionDecl *FD,
2958 SourceLocation ReturnLoc,
2959 Expr *&RetExpr,
2960 AutoType *AT) {
Saleem Abdulrasool374b5aa2014-10-16 22:42:53 +00002961 TypeLoc OrigResultType = getReturnTypeLoc(FD);
Richard Smith2a7d4812013-05-04 07:00:32 +00002962 QualType Deduced;
Manuel Klimek2fdbea22013-08-22 12:12:24 +00002963
Richard Smithc58f38f2013-08-14 20:16:31 +00002964 if (RetExpr && isa<InitListExpr>(RetExpr)) {
2965 // If the deduction is for a return statement and the initializer is
2966 // a braced-init-list, the program is ill-formed.
Richard Smith4db51c22013-09-25 05:02:54 +00002967 Diag(RetExpr->getExprLoc(),
2968 getCurLambda() ? diag::err_lambda_return_init_list
2969 : diag::err_auto_fn_return_init_list)
2970 << RetExpr->getSourceRange();
Richard Smithc58f38f2013-08-14 20:16:31 +00002971 return true;
2972 }
2973
2974 if (FD->isDependentContext()) {
2975 // C++1y [dcl.spec.auto]p12:
2976 // Return type deduction [...] occurs when the definition is
2977 // instantiated even if the function body contains a return
2978 // statement with a non-type-dependent operand.
2979 assert(AT->isDeduced() && "should have deduced to dependent type");
2980 return false;
2981 } else if (RetExpr) {
Richard Smith2a7d4812013-05-04 07:00:32 +00002982 // If the deduction is for a return statement and the initializer is
2983 // a braced-init-list, the program is ill-formed.
2984 if (isa<InitListExpr>(RetExpr)) {
2985 Diag(RetExpr->getExprLoc(), diag::err_auto_fn_return_init_list);
2986 return true;
2987 }
2988
2989 // Otherwise, [...] deduce a value for U using the rules of template
2990 // argument deduction.
2991 DeduceAutoResult DAR = DeduceAutoType(OrigResultType, RetExpr, Deduced);
2992
2993 if (DAR == DAR_Failed && !FD->isInvalidDecl())
2994 Diag(RetExpr->getExprLoc(), diag::err_auto_fn_deduction_failure)
2995 << OrigResultType.getType() << RetExpr->getType();
2996
2997 if (DAR != DAR_Succeeded)
2998 return true;
Nico Weber72889432014-09-06 01:25:55 +00002999
3000 // If a local type is part of the returned type, mark its fields as
3001 // referenced.
3002 LocalTypedefNameReferencer Referencer(*this);
3003 Referencer.TraverseType(RetExpr->getType());
Richard Smith2a7d4812013-05-04 07:00:32 +00003004 } else {
3005 // In the case of a return with no operand, the initializer is considered
3006 // to be void().
3007 //
3008 // Deduction here can only succeed if the return type is exactly 'cv auto'
3009 // or 'decltype(auto)', so just check for that case directly.
3010 if (!OrigResultType.getType()->getAs<AutoType>()) {
3011 Diag(ReturnLoc, diag::err_auto_fn_return_void_but_not_auto)
3012 << OrigResultType.getType();
3013 return true;
3014 }
3015 // We always deduce U = void in this case.
3016 Deduced = SubstAutoType(OrigResultType.getType(), Context.VoidTy);
3017 if (Deduced.isNull())
3018 return true;
3019 }
3020
3021 // If a function with a declared return type that contains a placeholder type
3022 // has multiple return statements, the return type is deduced for each return
3023 // statement. [...] if the type deduced is not the same in each deduction,
3024 // the program is ill-formed.
3025 if (AT->isDeduced() && !FD->isInvalidDecl()) {
3026 AutoType *NewAT = Deduced->getContainedAutoType();
Richard Smithc58f38f2013-08-14 20:16:31 +00003027 if (!FD->isDependentContext() &&
3028 !Context.hasSameType(AT->getDeducedType(), NewAT->getDeducedType())) {
Richard Smith4db51c22013-09-25 05:02:54 +00003029 const LambdaScopeInfo *LambdaSI = getCurLambda();
3030 if (LambdaSI && LambdaSI->HasImplicitReturnType) {
3031 Diag(ReturnLoc, diag::err_typecheck_missing_return_type_incompatible)
3032 << NewAT->getDeducedType() << AT->getDeducedType()
3033 << true /*IsLambda*/;
3034 } else {
3035 Diag(ReturnLoc, diag::err_auto_fn_different_deductions)
3036 << (AT->isDecltypeAuto() ? 1 : 0)
3037 << NewAT->getDeducedType() << AT->getDeducedType();
3038 }
Richard Smith2a7d4812013-05-04 07:00:32 +00003039 return true;
3040 }
3041 } else if (!FD->isInvalidDecl()) {
3042 // Update all declarations of the function to have the deduced return type.
3043 Context.adjustDeducedFunctionResultType(FD, Deduced);
3044 }
3045
3046 return false;
3047}
3048
John McCalldadc5752010-08-24 06:29:42 +00003049StmtResult
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00003050Sema::ActOnReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp,
3051 Scope *CurScope) {
3052 StmtResult R = BuildReturnStmt(ReturnLoc, RetValExp);
3053 if (R.isInvalid()) {
3054 return R;
3055 }
3056
3057 if (VarDecl *VD =
3058 const_cast<VarDecl*>(cast<ReturnStmt>(R.get())->getNRVOCandidate())) {
3059 CurScope->addNRVOCandidate(VD);
3060 } else {
3061 CurScope->setNoNRVO();
3062 }
3063
Nico Weberd64657f2015-03-09 02:47:59 +00003064 CheckJumpOutOfSEHFinally(*this, ReturnLoc, *CurScope->getFnParent());
3065
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00003066 return R;
3067}
3068
3069StmtResult Sema::BuildReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Douglas Gregor4385d8b2011-05-20 15:32:55 +00003070 // Check for unexpanded parameter packs.
3071 if (RetValExp && DiagnoseUnexpandedParameterPack(RetValExp))
3072 return StmtError();
Manuel Klimek2fdbea22013-08-22 12:12:24 +00003073
Eli Friedman34b49062012-01-26 03:00:14 +00003074 if (isa<CapturingScopeInfo>(getCurFunction()))
3075 return ActOnCapScopeReturnStmt(ReturnLoc, RetValExp);
Manuel Klimek2fdbea22013-08-22 12:12:24 +00003076
Chris Lattner79413952008-12-04 23:50:19 +00003077 QualType FnRetType;
Eli Friedman410fc7a2012-03-30 01:13:43 +00003078 QualType RelatedRetType;
Craig Topperc3ec1492014-05-26 06:22:03 +00003079 const AttrVec *Attrs = nullptr;
Ted Kremenekef9e7f82014-01-22 06:10:28 +00003080 bool isObjCMethod = false;
3081
Mike Stumpd00bc1a2009-04-29 00:43:21 +00003082 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Alp Toker314cc812014-01-25 16:55:45 +00003083 FnRetType = FD->getReturnType();
Ted Kremenekef9e7f82014-01-22 06:10:28 +00003084 if (FD->hasAttrs())
3085 Attrs = &FD->getAttrs();
Richard Smith10876ef2013-01-17 01:30:42 +00003086 if (FD->isNoReturn())
Chris Lattner6e127a62009-05-31 19:32:13 +00003087 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Eli Friedmande958782012-01-05 00:49:17 +00003088 << FD->getDeclName();
Douglas Gregor33823722011-06-11 01:09:30 +00003089 } else if (ObjCMethodDecl *MD = getCurMethodDecl()) {
Alp Toker314cc812014-01-25 16:55:45 +00003090 FnRetType = MD->getReturnType();
Ted Kremenekef9e7f82014-01-22 06:10:28 +00003091 isObjCMethod = true;
3092 if (MD->hasAttrs())
3093 Attrs = &MD->getAttrs();
Douglas Gregor33823722011-06-11 01:09:30 +00003094 if (MD->hasRelatedResultType() && MD->getClassInterface()) {
3095 // In the implementation of a method with a related return type, the
Chad Rosier02a84392012-08-10 17:56:09 +00003096 // type used to type-check the validity of return statements within the
Douglas Gregor33823722011-06-11 01:09:30 +00003097 // method body is a pointer to the type of the class being implemented.
Eli Friedman410fc7a2012-03-30 01:13:43 +00003098 RelatedRetType = Context.getObjCInterfaceType(MD->getClassInterface());
3099 RelatedRetType = Context.getObjCObjectPointerType(RelatedRetType);
Douglas Gregor33823722011-06-11 01:09:30 +00003100 }
3101 } else // If we don't have a function/method context, bail.
Steve Narofff3833d72009-03-03 00:45:38 +00003102 return StmtError();
Mike Stump11289f42009-09-09 15:08:12 +00003103
Richard Smith2a7d4812013-05-04 07:00:32 +00003104 // FIXME: Add a flag to the ScopeInfo to indicate whether we're performing
3105 // deduction.
Aaron Ballmandd69ef32014-08-19 15:55:55 +00003106 if (getLangOpts().CPlusPlus14) {
Richard Smith2a7d4812013-05-04 07:00:32 +00003107 if (AutoType *AT = FnRetType->getContainedAutoType()) {
3108 FunctionDecl *FD = cast<FunctionDecl>(CurContext);
Richard Smithc58f38f2013-08-14 20:16:31 +00003109 if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
Richard Smith2a7d4812013-05-04 07:00:32 +00003110 FD->setInvalidDecl();
3111 return StmtError();
3112 } else {
Alp Toker314cc812014-01-25 16:55:45 +00003113 FnRetType = FD->getReturnType();
Richard Smith2a7d4812013-05-04 07:00:32 +00003114 }
3115 }
3116 }
3117
Richard Smithc58f38f2013-08-14 20:16:31 +00003118 bool HasDependentReturnType = FnRetType->isDependentType();
3119
Craig Topperc3ec1492014-05-26 06:22:03 +00003120 ReturnStmt *Result = nullptr;
Chris Lattner9bad62c2008-01-04 18:04:52 +00003121 if (FnRetType->isVoidType()) {
Nick Lewycky1be750a2011-06-01 07:44:31 +00003122 if (RetValExp) {
Sebastian Redleef474c2012-02-22 10:50:08 +00003123 if (isa<InitListExpr>(RetValExp)) {
3124 // We simply never allow init lists as the return value of void
3125 // functions. This is compatible because this was never allowed before,
3126 // so there's no legacy code to deal with.
3127 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3128 int FunctionKind = 0;
3129 if (isa<ObjCMethodDecl>(CurDecl))
3130 FunctionKind = 1;
3131 else if (isa<CXXConstructorDecl>(CurDecl))
3132 FunctionKind = 2;
3133 else if (isa<CXXDestructorDecl>(CurDecl))
3134 FunctionKind = 3;
3135
3136 Diag(ReturnLoc, diag::err_return_init_list)
3137 << CurDecl->getDeclName() << FunctionKind
3138 << RetValExp->getSourceRange();
3139
3140 // Drop the expression.
Craig Topperc3ec1492014-05-26 06:22:03 +00003141 RetValExp = nullptr;
Sebastian Redleef474c2012-02-22 10:50:08 +00003142 } else if (!RetValExp->isTypeDependent()) {
Nick Lewycky1be750a2011-06-01 07:44:31 +00003143 // C99 6.8.6.4p1 (ext_ since GCC warns)
3144 unsigned D = diag::ext_return_has_expr;
Fariborz Jahaniana7598482013-12-03 17:10:08 +00003145 if (RetValExp->getType()->isVoidType()) {
3146 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3147 if (isa<CXXConstructorDecl>(CurDecl) ||
3148 isa<CXXDestructorDecl>(CurDecl))
3149 D = diag::err_ctor_dtor_returns_void;
3150 else
3151 D = diag::ext_return_has_void_expr;
3152 }
Nick Lewycky1be750a2011-06-01 07:44:31 +00003153 else {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003154 ExprResult Result = RetValExp;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003155 Result = IgnoredValueConversions(Result.get());
Nick Lewycky1be750a2011-06-01 07:44:31 +00003156 if (Result.isInvalid())
3157 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003158 RetValExp = Result.get();
Nick Lewycky1be750a2011-06-01 07:44:31 +00003159 RetValExp = ImpCastExprToType(RetValExp,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003160 Context.VoidTy, CK_ToVoid).get();
Nick Lewycky1be750a2011-06-01 07:44:31 +00003161 }
Fariborz Jahaniana7598482013-12-03 17:10:08 +00003162 // return of void in constructor/destructor is illegal in C++.
3163 if (D == diag::err_ctor_dtor_returns_void) {
3164 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3165 Diag(ReturnLoc, D)
3166 << CurDecl->getDeclName() << isa<CXXDestructorDecl>(CurDecl)
3167 << RetValExp->getSourceRange();
3168 }
Nick Lewycky1be750a2011-06-01 07:44:31 +00003169 // return (some void expression); is legal in C++.
Fariborz Jahaniana7598482013-12-03 17:10:08 +00003170 else if (D != diag::ext_return_has_void_expr ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00003171 !getLangOpts().CPlusPlus) {
Nick Lewycky1be750a2011-06-01 07:44:31 +00003172 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
Chandler Carruth1406d6c2011-06-30 08:56:22 +00003173
3174 int FunctionKind = 0;
3175 if (isa<ObjCMethodDecl>(CurDecl))
3176 FunctionKind = 1;
3177 else if (isa<CXXConstructorDecl>(CurDecl))
3178 FunctionKind = 2;
3179 else if (isa<CXXDestructorDecl>(CurDecl))
3180 FunctionKind = 3;
3181
Nick Lewycky1be750a2011-06-01 07:44:31 +00003182 Diag(ReturnLoc, D)
Chandler Carruth1406d6c2011-06-30 08:56:22 +00003183 << CurDecl->getDeclName() << FunctionKind
Nick Lewycky1be750a2011-06-01 07:44:31 +00003184 << RetValExp->getSourceRange();
3185 }
Chris Lattner0cb00d62008-12-18 02:03:48 +00003186 }
Mike Stump11289f42009-09-09 15:08:12 +00003187
Sebastian Redleef474c2012-02-22 10:50:08 +00003188 if (RetValExp) {
Richard Smith945f8d32013-01-14 22:39:08 +00003189 ExprResult ER = ActOnFinishFullExpr(RetValExp, ReturnLoc);
3190 if (ER.isInvalid())
3191 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003192 RetValExp = ER.get();
Sebastian Redleef474c2012-02-22 10:50:08 +00003193 }
Steve Naroff6f49f5d2007-05-29 14:23:36 +00003194 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003195
Craig Topperc3ec1492014-05-26 06:22:03 +00003196 Result = new (Context) ReturnStmt(ReturnLoc, RetValExp, nullptr);
Richard Smith2a7d4812013-05-04 07:00:32 +00003197 } else if (!RetValExp && !HasDependentReturnType) {
David Majnemer2887ad32014-12-13 08:12:56 +00003198 FunctionDecl *FD = getCurFunctionDecl();
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003199
David Majnemer2887ad32014-12-13 08:12:56 +00003200 unsigned DiagID;
3201 if (getLangOpts().CPlusPlus11 && FD && FD->isConstexpr()) {
3202 // C++11 [stmt.return]p2
3203 DiagID = diag::err_constexpr_return_missing_expr;
3204 FD->setInvalidDecl();
3205 } else if (getLangOpts().C99) {
3206 // C99 6.8.6.4p1 (ext_ since GCC warns)
3207 DiagID = diag::ext_return_missing_expr;
3208 } else {
3209 // C90 6.6.6.4p4
3210 DiagID = diag::warn_return_missing_expr;
3211 }
3212
3213 if (FD)
Chris Lattnere3d20d92008-11-23 21:45:46 +00003214 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003215 else
Chris Lattnere3d20d92008-11-23 21:45:46 +00003216 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
David Majnemer2887ad32014-12-13 08:12:56 +00003217
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003218 Result = new (Context) ReturnStmt(ReturnLoc);
3219 } else {
Richard Smith2a7d4812013-05-04 07:00:32 +00003220 assert(RetValExp || HasDependentReturnType);
Craig Topperc3ec1492014-05-26 06:22:03 +00003221 const VarDecl *NRVOCandidate = nullptr;
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00003222
3223 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType;
3224
3225 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
3226 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
3227 // function return.
3228
3229 // In C++ the return statement is handled via a copy initialization,
3230 // the C version of which boils down to CheckSingleAssignmentConstraints.
3231 if (RetValExp)
3232 NRVOCandidate = getCopyElisionCandidate(FnRetType, RetValExp, false);
Richard Smith2a7d4812013-05-04 07:00:32 +00003233 if (!HasDependentReturnType && !RetValExp->isTypeDependent()) {
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003234 // we have a non-void function with an expression, continue checking
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003235 InitializedEntity Entity = InitializedEntity::InitializeResult(ReturnLoc,
John McCall5ec7e7d2013-03-19 07:04:25 +00003236 RetType,
Craig Topperc3ec1492014-05-26 06:22:03 +00003237 NRVOCandidate != nullptr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003238 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRVOCandidate,
John McCall5ec7e7d2013-03-19 07:04:25 +00003239 RetType, RetValExp);
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003240 if (Res.isInvalid()) {
John McCall5ec7e7d2013-03-19 07:04:25 +00003241 // FIXME: Clean up temporaries here anyway?
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003242 return StmtError();
3243 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003244 RetValExp = Res.getAs<Expr>();
John McCall5ec7e7d2013-03-19 07:04:25 +00003245
3246 // If we have a related result type, we need to implicitly
3247 // convert back to the formal result type. We can't pretend to
3248 // initialize the result again --- we might end double-retaining
Fariborz Jahanianb248ca52013-07-11 16:48:06 +00003249 // --- so instead we initialize a notional temporary.
John McCall5ec7e7d2013-03-19 07:04:25 +00003250 if (!RelatedRetType.isNull()) {
Fariborz Jahanianb248ca52013-07-11 16:48:06 +00003251 Entity = InitializedEntity::InitializeRelatedResult(getCurMethodDecl(),
3252 FnRetType);
John McCall5ec7e7d2013-03-19 07:04:25 +00003253 Res = PerformCopyInitialization(Entity, ReturnLoc, RetValExp);
3254 if (Res.isInvalid()) {
3255 // FIXME: Clean up temporaries here anyway?
3256 return StmtError();
3257 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003258 RetValExp = Res.getAs<Expr>();
John McCall5ec7e7d2013-03-19 07:04:25 +00003259 }
3260
Artyom Skrobov9f213442014-01-24 11:10:39 +00003261 CheckReturnValExpr(RetValExp, FnRetType, ReturnLoc, isObjCMethod, Attrs,
3262 getCurFunctionDecl());
Douglas Gregorffe14e32009-11-14 01:20:54 +00003263 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003264
John McCallacf0ee52010-10-08 02:01:28 +00003265 if (RetValExp) {
Richard Smith945f8d32013-01-14 22:39:08 +00003266 ExprResult ER = ActOnFinishFullExpr(RetValExp, ReturnLoc);
3267 if (ER.isInvalid())
3268 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003269 RetValExp = ER.get();
John McCallacf0ee52010-10-08 02:01:28 +00003270 }
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003271 Result = new (Context) ReturnStmt(ReturnLoc, RetValExp, NRVOCandidate);
Douglas Gregor4619e432008-12-05 23:32:09 +00003272 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003273
3274 // If we need to check for the named return value optimization, save the
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003275 // return statement in our scope for later processing.
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00003276 if (Result->getNRVOCandidate())
Douglas Gregor6fd1b182010-05-15 06:01:05 +00003277 FunctionScopes.back()->Returns.push_back(Result);
Chad Rosiercc6a9082012-06-20 18:51:04 +00003278
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003279 return Result;
Chris Lattneraf8d5812006-11-10 05:07:45 +00003280}
3281
John McCalldadc5752010-08-24 06:29:42 +00003282StmtResult
Sebastian Redl481bf3f2009-01-18 17:43:11 +00003283Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
John McCall48871652010-08-21 09:40:31 +00003284 SourceLocation RParen, Decl *Parm,
John McCallb268a282010-08-23 23:25:46 +00003285 Stmt *Body) {
John McCall48871652010-08-21 09:40:31 +00003286 VarDecl *Var = cast_or_null<VarDecl>(Parm);
Douglas Gregorf3564192010-04-26 17:32:49 +00003287 if (Var && Var->isInvalidDecl())
3288 return StmtError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003289
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003290 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body);
Fariborz Jahanian9e63b982007-11-01 23:59:59 +00003291}
3292
John McCalldadc5752010-08-24 06:29:42 +00003293StmtResult
John McCallb268a282010-08-23 23:25:46 +00003294Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003295 return new (Context) ObjCAtFinallyStmt(AtLoc, Body);
Fariborz Jahanian71234d82007-11-02 00:18:53 +00003296}
Fariborz Jahanianf859ef22007-11-02 15:39:31 +00003297
John McCalldadc5752010-08-24 06:29:42 +00003298StmtResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003299Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
John McCallb268a282010-08-23 23:25:46 +00003300 MultiStmtArg CatchStmts, Stmt *Finally) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003301 if (!getLangOpts().ObjCExceptions)
Anders Carlssonce8dd3a2011-02-19 23:53:54 +00003302 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@try";
3303
John McCallaab3e412010-08-25 08:40:02 +00003304 getCurFunction()->setHasBranchProtectedScope();
Douglas Gregor96c79492010-04-23 22:50:49 +00003305 unsigned NumCatchStmts = CatchStmts.size();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003306 return ObjCAtTryStmt::Create(Context, AtLoc, Try, CatchStmts.data(),
3307 NumCatchStmts, Finally);
Fariborz Jahanianf859ef22007-11-02 15:39:31 +00003308}
3309
John McCall0bd3e402012-05-08 21:41:25 +00003310StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) {
Douglas Gregor2900c162010-04-22 21:44:01 +00003311 if (Throw) {
John Wiegley01296292011-04-08 18:41:53 +00003312 ExprResult Result = DefaultLvalueConversion(Throw);
3313 if (Result.isInvalid())
3314 return StmtError();
John McCall15317a22010-12-15 04:42:30 +00003315
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003316 Result = ActOnFinishFullExpr(Result.get());
Richard Smith945f8d32013-01-14 22:39:08 +00003317 if (Result.isInvalid())
3318 return StmtError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003319 Throw = Result.get();
Richard Smith945f8d32013-01-14 22:39:08 +00003320
Douglas Gregor2900c162010-04-22 21:44:01 +00003321 QualType ThrowType = Throw->getType();
3322 // Make sure the expression type is an ObjC pointer or "void *".
3323 if (!ThrowType->isDependentType() &&
3324 !ThrowType->isObjCObjectPointerType()) {
3325 const PointerType *PT = ThrowType->getAs<PointerType>();
3326 if (!PT || !PT->getPointeeType()->isVoidType())
3327 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
3328 << Throw->getType() << Throw->getSourceRange());
3329 }
3330 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003331
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003332 return new (Context) ObjCAtThrowStmt(AtLoc, Throw);
Douglas Gregor2900c162010-04-22 21:44:01 +00003333}
3334
John McCalldadc5752010-08-24 06:29:42 +00003335StmtResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003336Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
Douglas Gregor2900c162010-04-22 21:44:01 +00003337 Scope *CurScope) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003338 if (!getLangOpts().ObjCExceptions)
Anders Carlssonce8dd3a2011-02-19 23:53:54 +00003339 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@throw";
3340
John McCallb268a282010-08-23 23:25:46 +00003341 if (!Throw) {
Nico Weber9af63b22015-03-09 02:34:29 +00003342 // @throw without an expression designates a rethrow (which must occur
Steve Naroff5ee2c022009-02-11 20:05:44 +00003343 // in the context of an @catch clause).
3344 Scope *AtCatchParent = CurScope;
3345 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
3346 AtCatchParent = AtCatchParent->getParent();
3347 if (!AtCatchParent)
Steve Naroffc49b22a2009-02-12 18:09:32 +00003348 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003349 }
John McCallb268a282010-08-23 23:25:46 +00003350 return BuildObjCAtThrowStmt(AtLoc, Throw);
Fariborz Jahanianadfbbc32007-11-07 02:00:49 +00003351}
Fariborz Jahanianf859ef22007-11-02 15:39:31 +00003352
John McCalld9bb7432011-07-27 21:50:02 +00003353ExprResult
3354Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) {
3355 ExprResult result = DefaultLvalueConversion(operand);
3356 if (result.isInvalid())
3357 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003358 operand = result.get();
John McCalld9bb7432011-07-27 21:50:02 +00003359
3360 // Make sure the expression type is an ObjC pointer or "void *".
3361 QualType type = operand->getType();
3362 if (!type->isDependentType() &&
3363 !type->isObjCObjectPointerType()) {
3364 const PointerType *pointerType = type->getAs<PointerType>();
Jordan Rose5790d522014-08-12 16:20:36 +00003365 if (!pointerType || !pointerType->getPointeeType()->isVoidType()) {
3366 if (getLangOpts().CPlusPlus) {
3367 if (RequireCompleteType(atLoc, type,
3368 diag::err_incomplete_receiver_type))
3369 return Diag(atLoc, diag::error_objc_synchronized_expects_object)
3370 << type << operand->getSourceRange();
3371
3372 ExprResult result = PerformContextuallyConvertToObjCPointer(operand);
3373 if (!result.isUsable())
3374 return Diag(atLoc, diag::error_objc_synchronized_expects_object)
3375 << type << operand->getSourceRange();
3376
3377 operand = result.get();
3378 } else {
3379 return Diag(atLoc, diag::error_objc_synchronized_expects_object)
3380 << type << operand->getSourceRange();
3381 }
3382 }
John McCalld9bb7432011-07-27 21:50:02 +00003383 }
3384
3385 // The operand to @synchronized is a full-expression.
Richard Smith945f8d32013-01-14 22:39:08 +00003386 return ActOnFinishFullExpr(operand);
John McCalld9bb7432011-07-27 21:50:02 +00003387}
3388
John McCalldadc5752010-08-24 06:29:42 +00003389StmtResult
John McCallb268a282010-08-23 23:25:46 +00003390Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, Expr *SyncExpr,
3391 Stmt *SyncBody) {
John McCalld9bb7432011-07-27 21:50:02 +00003392 // We can't jump into or indirect-jump out of a @synchronized block.
John McCallaab3e412010-08-25 08:40:02 +00003393 getCurFunction()->setHasBranchProtectedScope();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003394 return new (Context) ObjCAtSynchronizedStmt(AtLoc, SyncExpr, SyncBody);
Fariborz Jahanian48085b82008-01-29 19:14:59 +00003395}
Sebastian Redl54c04d42008-12-22 19:15:10 +00003396
3397/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
3398/// and creates a proper catch handler from them.
John McCalldadc5752010-08-24 06:29:42 +00003399StmtResult
John McCall48871652010-08-21 09:40:31 +00003400Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,
John McCallb268a282010-08-23 23:25:46 +00003401 Stmt *HandlerBlock) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00003402 // There's nothing to test that ActOnExceptionDecl didn't already test.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003403 return new (Context)
3404 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
Sebastian Redl54c04d42008-12-22 19:15:10 +00003405}
Sebastian Redl9b244a82008-12-22 21:35:02 +00003406
John McCall31168b02011-06-15 23:02:42 +00003407StmtResult
3408Sema::ActOnObjCAutoreleasePoolStmt(SourceLocation AtLoc, Stmt *Body) {
3409 getCurFunction()->setHasBranchProtectedScope();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003410 return new (Context) ObjCAutoreleasePoolStmt(AtLoc, Body);
John McCall31168b02011-06-15 23:02:42 +00003411}
3412
Aaron Ballman8aee642902015-04-08 00:05:29 +00003413class CatchHandlerType {
3414 QualType QT;
3415 unsigned IsPointer : 1;
Dan Gohman28ade552010-07-26 21:25:24 +00003416
Aaron Ballman8aee642902015-04-08 00:05:29 +00003417 // This is a special constructor to be used only with DenseMapInfo's
3418 // getEmptyKey() and getTombstoneKey() functions.
3419 friend struct llvm::DenseMapInfo<CatchHandlerType>;
3420 enum Unique { ForDenseMap };
3421 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {}
3422
Sebastian Redl63c4da02009-07-29 17:15:45 +00003423public:
Aaron Ballman8aee642902015-04-08 00:05:29 +00003424 /// Used when creating a CatchHandlerType from a handler type; will determine
3425 /// whether the type is a pointer or reference and will strip off the the top
3426 /// level pointer and cv-qualifiers.
3427 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) {
3428 if (QT->isPointerType())
3429 IsPointer = true;
Sebastian Redl63c4da02009-07-29 17:15:45 +00003430
Aaron Ballman8aee642902015-04-08 00:05:29 +00003431 if (IsPointer || QT->isReferenceType())
3432 QT = QT->getPointeeType();
3433 QT = QT.getUnqualifiedType();
3434 }
3435
3436 /// Used when creating a CatchHandlerType from a base class type; pretends the
3437 /// type passed in had the pointer qualifier, does not need to get an
3438 /// unqualified type.
3439 CatchHandlerType(QualType QT, bool IsPointer)
3440 : QT(QT), IsPointer(IsPointer) {}
3441
3442 QualType underlying() const { return QT; }
3443 bool isPointer() const { return IsPointer; }
3444
3445 friend bool operator==(const CatchHandlerType &LHS,
3446 const CatchHandlerType &RHS) {
3447 // If the pointer qualification does not match, we can return early.
3448 if (LHS.IsPointer != RHS.IsPointer)
Sebastian Redl63c4da02009-07-29 17:15:45 +00003449 return false;
Aaron Ballman8aee642902015-04-08 00:05:29 +00003450 // Otherwise, check the underlying type without cv-qualifiers.
3451 return LHS.QT == RHS.QT;
Sebastian Redl63c4da02009-07-29 17:15:45 +00003452 }
3453};
3454
Aaron Ballman8aee642902015-04-08 00:05:29 +00003455namespace llvm {
3456template <> struct DenseMapInfo<CatchHandlerType> {
3457 static CatchHandlerType getEmptyKey() {
3458 return CatchHandlerType(DenseMapInfo<QualType>::getEmptyKey(),
3459 CatchHandlerType::ForDenseMap);
3460 }
3461
3462 static CatchHandlerType getTombstoneKey() {
3463 return CatchHandlerType(DenseMapInfo<QualType>::getTombstoneKey(),
3464 CatchHandlerType::ForDenseMap);
3465 }
3466
3467 static unsigned getHashValue(const CatchHandlerType &Base) {
3468 return DenseMapInfo<QualType>::getHashValue(Base.underlying());
3469 }
3470
3471 static bool isEqual(const CatchHandlerType &LHS,
3472 const CatchHandlerType &RHS) {
3473 return LHS == RHS;
3474 }
3475};
3476
3477// It's OK to treat CatchHandlerType as a POD type.
3478template <> struct isPodLike<CatchHandlerType> {
3479 static const bool value = true;
3480};
3481}
3482
3483namespace {
3484class CatchTypePublicBases {
3485 ASTContext &Ctx;
3486 const llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> &TypesToCheck;
3487 const bool CheckAgainstPointer;
3488
3489 CXXCatchStmt *FoundHandler;
3490 CanQualType FoundHandlerType;
3491
3492public:
3493 CatchTypePublicBases(
3494 ASTContext &Ctx,
3495 const llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> &T, bool C)
3496 : Ctx(Ctx), TypesToCheck(T), CheckAgainstPointer(C),
3497 FoundHandler(nullptr) {}
3498
3499 CXXCatchStmt *getFoundHandler() const { return FoundHandler; }
3500 CanQualType getFoundHandlerType() const { return FoundHandlerType; }
3501
3502 static bool FindPublicBasesOfType(const CXXBaseSpecifier *S, CXXBasePath &,
3503 void *User) {
3504 auto &PBOT = *reinterpret_cast<CatchTypePublicBases *>(User);
3505 if (S->getAccessSpecifier() == AccessSpecifier::AS_public) {
3506 CatchHandlerType Check(S->getType(), PBOT.CheckAgainstPointer);
3507 auto M = PBOT.TypesToCheck;
3508 auto I = M.find(Check);
3509 if (I != M.end()) {
3510 PBOT.FoundHandler = I->second;
3511 PBOT.FoundHandlerType = PBOT.Ctx.getCanonicalType(S->getType());
3512 return true;
3513 }
3514 }
3515 return false;
3516 }
3517};
Dan Gohman28ade552010-07-26 21:25:24 +00003518}
3519
Sebastian Redl9b244a82008-12-22 21:35:02 +00003520/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
3521/// handlers and creates a try statement from them.
Robert Wilhelmcafda822013-08-22 09:20:03 +00003522StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
3523 ArrayRef<Stmt *> Handlers) {
Anders Carlssond99dbcc2011-02-23 03:46:46 +00003524 // Don't report an error if 'try' is used in system headers.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003525 if (!getLangOpts().CXXExceptions &&
Anders Carlssond99dbcc2011-02-23 03:46:46 +00003526 !getSourceManager().isInSystemHeader(TryLoc))
Aaron Ballman8aee642902015-04-08 00:05:29 +00003527 Diag(TryLoc, diag::err_exceptions_disabled) << "try";
Anders Carlsson68b36af2011-02-19 19:26:44 +00003528
Alexander Musmana8e9d2e2014-06-03 10:16:47 +00003529 if (getCurScope() && getCurScope()->isOpenMPSimdDirectiveScope())
3530 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try";
3531
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003532 sema::FunctionScopeInfo *FSI = getCurFunction();
3533
Reid Klecknere7175912015-02-02 22:15:31 +00003534 // C++ try is incompatible with SEH __try.
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003535 if (!getLangOpts().Borland && FSI->FirstSEHTryLoc.isValid()) {
Reid Klecknere7175912015-02-02 22:15:31 +00003536 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try);
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003537 Diag(FSI->FirstSEHTryLoc, diag::note_conflicting_try_here) << "'__try'";
Reid Klecknere7175912015-02-02 22:15:31 +00003538 }
3539
Robert Wilhelmcafda822013-08-22 09:20:03 +00003540 const unsigned NumHandlers = Handlers.size();
Aaron Ballman8aee642902015-04-08 00:05:29 +00003541 assert(!Handlers.empty() &&
Sebastian Redl9b244a82008-12-22 21:35:02 +00003542 "The parser shouldn't call this if there are no handlers.");
Sebastian Redl9b244a82008-12-22 21:35:02 +00003543
Aaron Ballman8aee642902015-04-08 00:05:29 +00003544 llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> HandledTypes;
Mike Stump11289f42009-09-09 15:08:12 +00003545 for (unsigned i = 0; i < NumHandlers; ++i) {
Aaron Ballman8aee642902015-04-08 00:05:29 +00003546 CXXCatchStmt *H = cast<CXXCatchStmt>(Handlers[i]);
Mike Stump11289f42009-09-09 15:08:12 +00003547
Aaron Ballman8aee642902015-04-08 00:05:29 +00003548 // Diagnose when the handler is a catch-all handler, but it isn't the last
3549 // handler for the try block. [except.handle]p5. Also, skip exception
3550 // declarations that are invalid, since we can't usefully report on them.
3551 if (!H->getExceptionDecl()) {
3552 if (i < NumHandlers - 1)
3553 return StmtError(Diag(H->getLocStart(), diag::err_early_catch_all));
Sebastian Redl63c4da02009-07-29 17:15:45 +00003554 continue;
Aaron Ballman8aee642902015-04-08 00:05:29 +00003555 } else if (H->getExceptionDecl()->isInvalidDecl())
3556 continue;
3557
3558 // Walk the type hierarchy to diagnose when this type has already been
3559 // handled (duplication), or cannot be handled (derivation inversion). We
3560 // ignore top-level cv-qualifiers, per [except.handle]p3
Aaron Ballmanaa301de2015-04-08 00:13:33 +00003561 CatchHandlerType HandlerCHT =
3562 (QualType)Context.getCanonicalType(H->getCaughtType());
Aaron Ballman8aee642902015-04-08 00:05:29 +00003563
3564 // We can ignore whether the type is a reference or a pointer; we need the
3565 // underlying declaration type in order to get at the underlying record
3566 // decl, if there is one.
3567 QualType Underlying = HandlerCHT.underlying();
3568 if (auto *RD = Underlying->getAsCXXRecordDecl()) {
3569 if (!RD->hasDefinition())
3570 continue;
3571 // Check that none of the public, unambiguous base classes are in the
3572 // map ([except.handle]p1). Give the base classes the same pointer
3573 // qualification as the original type we are basing off of. This allows
3574 // comparison against the handler type using the same top-level pointer
3575 // as the original type.
3576 CXXBasePaths Paths;
3577 Paths.setOrigin(RD);
3578 CatchTypePublicBases CTPB(Context, HandledTypes, HandlerCHT.isPointer());
3579 if (RD->lookupInBases(CatchTypePublicBases::FindPublicBasesOfType, &CTPB,
3580 Paths)) {
3581 const CXXCatchStmt *Problem = CTPB.getFoundHandler();
3582 if (!Paths.isAmbiguous(CTPB.getFoundHandlerType())) {
3583 Diag(H->getExceptionDecl()->getTypeSpecStartLoc(),
3584 diag::warn_exception_caught_by_earlier_handler)
3585 << H->getCaughtType();
3586 Diag(Problem->getExceptionDecl()->getTypeSpecStartLoc(),
3587 diag::note_previous_exception_handler)
3588 << Problem->getCaughtType();
3589 }
3590 }
Sebastian Redl63c4da02009-07-29 17:15:45 +00003591 }
Mike Stump11289f42009-09-09 15:08:12 +00003592
Aaron Ballman8aee642902015-04-08 00:05:29 +00003593 // Add the type the list of ones we have handled; diagnose if we've already
3594 // handled it.
3595 auto R = HandledTypes.insert(std::make_pair(H->getCaughtType(), H));
3596 if (!R.second) {
3597 const CXXCatchStmt *Problem = R.first->second;
3598 Diag(H->getExceptionDecl()->getTypeSpecStartLoc(),
3599 diag::warn_exception_caught_by_earlier_handler)
3600 << H->getCaughtType();
3601 Diag(Problem->getExceptionDecl()->getTypeSpecStartLoc(),
3602 diag::note_previous_exception_handler)
3603 << Problem->getCaughtType();
Sebastian Redl63c4da02009-07-29 17:15:45 +00003604 }
3605 }
Mike Stump11289f42009-09-09 15:08:12 +00003606
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003607 FSI->setHasCXXTry(TryLoc);
John McCalla95172b2010-08-01 00:26:45 +00003608
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003609 return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers);
Sebastian Redl9b244a82008-12-22 21:35:02 +00003610}
John Wiegley1c0675e2011-04-28 01:08:34 +00003611
Reid Klecknere7175912015-02-02 22:15:31 +00003612StmtResult Sema::ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc,
3613 Stmt *TryBlock, Stmt *Handler) {
John Wiegley1c0675e2011-04-28 01:08:34 +00003614 assert(TryBlock && Handler);
3615
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003616 sema::FunctionScopeInfo *FSI = getCurFunction();
3617
Reid Klecknere7175912015-02-02 22:15:31 +00003618 // SEH __try is incompatible with C++ try. Borland appears to support this,
3619 // however.
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003620 if (!getLangOpts().Borland) {
3621 if (FSI->FirstCXXTryLoc.isValid()) {
3622 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try);
3623 Diag(FSI->FirstCXXTryLoc, diag::note_conflicting_try_here) << "'try'";
3624 }
Reid Klecknere7175912015-02-02 22:15:31 +00003625 }
John Wiegley1c0675e2011-04-28 01:08:34 +00003626
Reid Klecknerdeeddec2015-02-05 18:56:03 +00003627 FSI->setHasSEHTry(TryLoc);
3628
3629 // Reject __try in Obj-C methods, blocks, and captured decls, since we don't
3630 // track if they use SEH.
3631 DeclContext *DC = CurContext;
3632 while (DC && !DC->isFunctionOrMethod())
3633 DC = DC->getParent();
3634 FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(DC);
3635 if (FD)
3636 FD->setUsesSEHTry(true);
3637 else
3638 Diag(TryLoc, diag::err_seh_try_outside_functions);
Reid Klecknere7175912015-02-02 22:15:31 +00003639
3640 return SEHTryStmt::Create(Context, IsCXXTry, TryLoc, TryBlock, Handler);
John Wiegley1c0675e2011-04-28 01:08:34 +00003641}
3642
3643StmtResult
3644Sema::ActOnSEHExceptBlock(SourceLocation Loc,
3645 Expr *FilterExpr,
3646 Stmt *Block) {
3647 assert(FilterExpr && Block);
3648
3649 if(!FilterExpr->getType()->isIntegerType()) {
Francois Pichetfbf7e172011-06-02 00:47:27 +00003650 return StmtError(Diag(FilterExpr->getExprLoc(),
3651 diag::err_filter_expression_integral)
3652 << FilterExpr->getType());
John Wiegley1c0675e2011-04-28 01:08:34 +00003653 }
3654
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003655 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block);
John Wiegley1c0675e2011-04-28 01:08:34 +00003656}
3657
Nico Weberd64657f2015-03-09 02:47:59 +00003658void Sema::ActOnStartSEHFinallyBlock() {
3659 CurrentSEHFinally.push_back(CurScope);
3660}
3661
Nico Weberce903292015-03-09 03:17:15 +00003662void Sema::ActOnAbortSEHFinallyBlock() {
3663 CurrentSEHFinally.pop_back();
3664}
3665
Nico Weberd64657f2015-03-09 02:47:59 +00003666StmtResult Sema::ActOnFinishSEHFinallyBlock(SourceLocation Loc, Stmt *Block) {
John Wiegley1c0675e2011-04-28 01:08:34 +00003667 assert(Block);
Nico Weberd64657f2015-03-09 02:47:59 +00003668 CurrentSEHFinally.pop_back();
3669 return SEHFinallyStmt::Create(Context, Loc, Block);
John Wiegley1c0675e2011-04-28 01:08:34 +00003670}
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00003671
Nico Weberc7d05962014-07-06 22:32:59 +00003672StmtResult
3673Sema::ActOnSEHLeaveStmt(SourceLocation Loc, Scope *CurScope) {
Nico Webereb61d4d2014-07-06 22:53:19 +00003674 Scope *SEHTryParent = CurScope;
3675 while (SEHTryParent && !SEHTryParent->isSEHTryScope())
3676 SEHTryParent = SEHTryParent->getParent();
3677 if (!SEHTryParent)
3678 return StmtError(Diag(Loc, diag::err_ms___leave_not_in___try));
Nico Weberd64657f2015-03-09 02:47:59 +00003679 CheckJumpOutOfSEHFinally(*this, Loc, *SEHTryParent);
Nico Webereb61d4d2014-07-06 22:53:19 +00003680
Nico Weber9b982072014-07-07 00:12:30 +00003681 return new (Context) SEHLeaveStmt(Loc);
Nico Weberc7d05962014-07-06 22:32:59 +00003682}
3683
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00003684StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
3685 bool IsIfExists,
3686 NestedNameSpecifierLoc QualifierLoc,
3687 DeclarationNameInfo NameInfo,
3688 Stmt *Nested)
3689{
3690 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
Chad Rosier02a84392012-08-10 17:56:09 +00003691 QualifierLoc, NameInfo,
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00003692 cast<CompoundStmt>(Nested));
3693}
3694
3695
Chad Rosier02a84392012-08-10 17:56:09 +00003696StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00003697 bool IsIfExists,
Chad Rosier02a84392012-08-10 17:56:09 +00003698 CXXScopeSpec &SS,
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00003699 UnqualifiedId &Name,
3700 Stmt *Nested) {
Chad Rosier02a84392012-08-10 17:56:09 +00003701 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00003702 SS.getWithLocInContext(Context),
3703 GetNameFromUnqualifiedId(Name),
3704 Nested);
3705}
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003706
3707RecordDecl*
Ben Langmuir37943a72013-05-03 19:00:33 +00003708Sema::CreateCapturedStmtRecordDecl(CapturedDecl *&CD, SourceLocation Loc,
3709 unsigned NumParams) {
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003710 DeclContext *DC = CurContext;
3711 while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext()))
3712 DC = DC->getParent();
3713
Craig Topperc3ec1492014-05-26 06:22:03 +00003714 RecordDecl *RD = nullptr;
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003715 if (getLangOpts().CPlusPlus)
Craig Topperc3ec1492014-05-26 06:22:03 +00003716 RD = CXXRecordDecl::Create(Context, TTK_Struct, DC, Loc, Loc,
3717 /*Id=*/nullptr);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003718 else
Craig Topperc3ec1492014-05-26 06:22:03 +00003719 RD = RecordDecl::Create(Context, TTK_Struct, DC, Loc, Loc, /*Id=*/nullptr);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003720
Alexey Bataev330de032014-10-29 12:21:55 +00003721 RD->setCapturedRecord();
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003722 DC->addDecl(RD);
3723 RD->setImplicit();
3724 RD->startDefinition();
3725
Alexey Bataev9959db52014-05-06 10:08:46 +00003726 assert(NumParams > 0 && "CapturedStmt requires context parameter");
Ben Langmuir37943a72013-05-03 19:00:33 +00003727 CD = CapturedDecl::Create(Context, CurContext, NumParams);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003728 DC->addDecl(CD);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003729 return RD;
3730}
3731
3732static void buildCapturedStmtCaptureList(
3733 SmallVectorImpl<CapturedStmt::Capture> &Captures,
3734 SmallVectorImpl<Expr *> &CaptureInits,
3735 ArrayRef<CapturingScopeInfo::Capture> Candidates) {
3736
3737 typedef ArrayRef<CapturingScopeInfo::Capture>::const_iterator CaptureIter;
3738 for (CaptureIter Cap = Candidates.begin(); Cap != Candidates.end(); ++Cap) {
3739
3740 if (Cap->isThisCapture()) {
3741 Captures.push_back(CapturedStmt::Capture(Cap->getLocation(),
3742 CapturedStmt::VCK_This));
Richard Smithba71c082013-05-16 06:20:58 +00003743 CaptureInits.push_back(Cap->getInitExpr());
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003744 continue;
Alexey Bataev330de032014-10-29 12:21:55 +00003745 } else if (Cap->isVLATypeCapture()) {
3746 Captures.push_back(
3747 CapturedStmt::Capture(Cap->getLocation(), CapturedStmt::VCK_VLAType));
3748 CaptureInits.push_back(nullptr);
3749 continue;
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003750 }
3751
3752 assert(Cap->isReferenceCapture() &&
3753 "non-reference capture not yet implemented");
3754
3755 Captures.push_back(CapturedStmt::Capture(Cap->getLocation(),
3756 CapturedStmt::VCK_ByRef,
3757 Cap->getVariable()));
Richard Smithba71c082013-05-16 06:20:58 +00003758 CaptureInits.push_back(Cap->getInitExpr());
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003759 }
3760}
3761
3762void Sema::ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
Wei Pan17fbf6e2013-05-04 03:59:06 +00003763 CapturedRegionKind Kind,
3764 unsigned NumParams) {
Alexey Bataev9959db52014-05-06 10:08:46 +00003765 CapturedDecl *CD = nullptr;
Ben Langmuir37943a72013-05-03 19:00:33 +00003766 RecordDecl *RD = CreateCapturedStmtRecordDecl(CD, Loc, NumParams);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003767
Alexey Bataev9959db52014-05-06 10:08:46 +00003768 // Build the context parameter
3769 DeclContext *DC = CapturedDecl::castToDeclContext(CD);
3770 IdentifierInfo *ParamName = &Context.Idents.get("__context");
3771 QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD));
3772 ImplicitParamDecl *Param
3773 = ImplicitParamDecl::Create(Context, DC, Loc, ParamName, ParamType);
3774 DC->addDecl(Param);
3775
3776 CD->setContextParam(0, Param);
3777
3778 // Enter the capturing scope for this captured region.
3779 PushCapturedRegionScope(CurScope, CD, RD, Kind);
3780
3781 if (CurScope)
3782 PushDeclContext(CurScope, CD);
3783 else
3784 CurContext = CD;
3785
3786 PushExpressionEvaluationContext(PotentiallyEvaluated);
3787}
3788
3789void Sema::ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
3790 CapturedRegionKind Kind,
3791 ArrayRef<CapturedParamNameType> Params) {
3792 CapturedDecl *CD = nullptr;
3793 RecordDecl *RD = CreateCapturedStmtRecordDecl(CD, Loc, Params.size());
3794
3795 // Build the context parameter
3796 DeclContext *DC = CapturedDecl::castToDeclContext(CD);
3797 bool ContextIsFound = false;
3798 unsigned ParamNum = 0;
3799 for (ArrayRef<CapturedParamNameType>::iterator I = Params.begin(),
3800 E = Params.end();
3801 I != E; ++I, ++ParamNum) {
3802 if (I->second.isNull()) {
3803 assert(!ContextIsFound &&
3804 "null type has been found already for '__context' parameter");
3805 IdentifierInfo *ParamName = &Context.Idents.get("__context");
3806 QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD));
3807 ImplicitParamDecl *Param
3808 = ImplicitParamDecl::Create(Context, DC, Loc, ParamName, ParamType);
3809 DC->addDecl(Param);
3810 CD->setContextParam(ParamNum, Param);
3811 ContextIsFound = true;
3812 } else {
3813 IdentifierInfo *ParamName = &Context.Idents.get(I->first);
3814 ImplicitParamDecl *Param
3815 = ImplicitParamDecl::Create(Context, DC, Loc, ParamName, I->second);
3816 DC->addDecl(Param);
3817 CD->setParam(ParamNum, Param);
3818 }
3819 }
3820 assert(ContextIsFound && "no null type for '__context' parameter");
Alexey Bataev301a2d92014-05-14 10:40:54 +00003821 if (!ContextIsFound) {
3822 // Add __context implicitly if it is not specified.
3823 IdentifierInfo *ParamName = &Context.Idents.get("__context");
3824 QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD));
3825 ImplicitParamDecl *Param =
3826 ImplicitParamDecl::Create(Context, DC, Loc, ParamName, ParamType);
3827 DC->addDecl(Param);
3828 CD->setContextParam(ParamNum, Param);
3829 }
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003830 // Enter the capturing scope for this captured region.
3831 PushCapturedRegionScope(CurScope, CD, RD, Kind);
3832
3833 if (CurScope)
3834 PushDeclContext(CurScope, CD);
3835 else
3836 CurContext = CD;
3837
3838 PushExpressionEvaluationContext(PotentiallyEvaluated);
3839}
3840
Wei Pan17fbf6e2013-05-04 03:59:06 +00003841void Sema::ActOnCapturedRegionError() {
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003842 DiscardCleanupsInEvaluationContext();
3843 PopExpressionEvaluationContext();
3844
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003845 CapturedRegionScopeInfo *RSI = getCurCapturedRegion();
3846 RecordDecl *Record = RSI->TheRecordDecl;
3847 Record->setInvalidDecl();
3848
Aaron Ballman62e47c42014-03-10 13:43:55 +00003849 SmallVector<Decl*, 4> Fields(Record->fields());
Alexey Bataev9959db52014-05-06 10:08:46 +00003850 ActOnFields(/*Scope=*/nullptr, Record->getLocation(), Record, Fields,
3851 SourceLocation(), SourceLocation(), /*AttributeList=*/nullptr);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003852
Wei Pan17fbf6e2013-05-04 03:59:06 +00003853 PopDeclContext();
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003854 PopFunctionScopeInfo();
3855}
3856
3857StmtResult Sema::ActOnCapturedRegionEnd(Stmt *S) {
3858 CapturedRegionScopeInfo *RSI = getCurCapturedRegion();
3859
3860 SmallVector<CapturedStmt::Capture, 4> Captures;
3861 SmallVector<Expr *, 4> CaptureInits;
3862 buildCapturedStmtCaptureList(Captures, CaptureInits, RSI->Captures);
3863
3864 CapturedDecl *CD = RSI->TheCapturedDecl;
3865 RecordDecl *RD = RSI->TheRecordDecl;
3866
Wei Pan17fbf6e2013-05-04 03:59:06 +00003867 CapturedStmt *Res = CapturedStmt::Create(getASTContext(), S,
3868 RSI->CapRegionKind, Captures,
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003869 CaptureInits, CD, RD);
3870
3871 CD->setBody(Res->getCapturedStmt());
3872 RD->completeDefinition();
3873
Wei Pan17fbf6e2013-05-04 03:59:06 +00003874 DiscardCleanupsInEvaluationContext();
3875 PopExpressionEvaluationContext();
3876
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003877 PopDeclContext();
3878 PopFunctionScopeInfo();
3879
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003880 return Res;
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00003881}