blob: 9bd8678c876ab9ee75324f6d0bdc5a8a47448245 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for statements.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Chris Lattnerf4021e72007-08-23 05:46:52 +000015#include "clang/AST/ASTContext.h"
Fariborz Jahaniana18e70b2013-01-09 23:04:56 +000016#include "clang/AST/ASTDiagnostic.h"
John McCall1cd76e82011-11-11 03:57:31 +000017#include "clang/AST/CharUnits.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Richard Trieu694e7962012-04-30 18:01:30 +000019#include "clang/AST/EvaluatedExprVisitor.h"
Douglas Gregor84fb9c02009-11-23 13:46:08 +000020#include "clang/AST/ExprCXX.h"
Chris Lattner419cfb32009-08-16 16:57:27 +000021#include "clang/AST/ExprObjC.h"
Chris Lattner16f00492009-04-26 01:32:48 +000022#include "clang/AST/StmtCXX.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000023#include "clang/AST/StmtObjC.h"
John McCall209acbd2010-04-06 22:24:14 +000024#include "clang/AST/TypeLoc.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000025#include "clang/Lex/Preprocessor.h"
26#include "clang/Sema/Initialization.h"
27#include "clang/Sema/Lookup.h"
28#include "clang/Sema/Scope.h"
29#include "clang/Sema/ScopeInfo.h"
Chris Lattnerca57b4b2011-02-21 21:40:33 +000030#include "llvm/ADT/ArrayRef.h"
Sebastian Redlc447aba2009-07-29 17:15:45 +000031#include "llvm/ADT/STLExtras.h"
Richard Trieu694e7962012-04-30 18:01:30 +000032#include "llvm/ADT/SmallPtrSet.h"
Douglas Gregor50de5e32012-05-16 16:11:17 +000033#include "llvm/ADT/SmallString.h"
Sebastian Redlc447aba2009-07-29 17:15:45 +000034#include "llvm/ADT/SmallVector.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000035using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000036using namespace sema;
Reid Spencer5f016e22007-07-11 17:01:13 +000037
Richard Smith41956372013-01-14 22:39:08 +000038StmtResult Sema::ActOnExprStmt(ExprResult FE) {
39 if (FE.isInvalid())
40 return StmtError();
41
42 FE = ActOnFinishFullExpr(FE.get(), FE.get()->getExprLoc(),
43 /*DiscardedValue*/ true);
44 if (FE.isInvalid())
Douglas Gregorbebbe0d2010-12-15 01:34:56 +000045 return StmtError();
46
Chris Lattner834a72a2008-07-25 23:18:17 +000047 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
48 // void expression for its side effects. Conversion to void allows any
49 // operand, even incomplete types.
Sebastian Redla60528c2008-12-21 12:04:03 +000050
Chris Lattner834a72a2008-07-25 23:18:17 +000051 // Same thing in for stmt first clause (when expr) and third clause.
Richard Smith41956372013-01-14 22:39:08 +000052 return Owned(static_cast<Stmt*>(FE.take()));
Reid Spencer5f016e22007-07-11 17:01:13 +000053}
54
55
John McCallb760f112013-03-22 02:10:40 +000056StmtResult Sema::ActOnExprStmtError() {
57 DiscardCleanupsInEvaluationContext();
58 return StmtError();
59}
60
Argyrios Kyrtzidisb7d98d32011-04-27 05:04:02 +000061StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc,
Argyrios Kyrtzidise2ca8282011-09-01 21:53:45 +000062 bool HasLeadingEmptyMacro) {
63 return Owned(new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro));
Reid Spencer5f016e22007-07-11 17:01:13 +000064}
65
Chris Lattner337e5502011-02-18 01:27:55 +000066StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
67 SourceLocation EndLoc) {
Serge Pavlov18062392013-08-27 13:15:56 +000068 DeclGroupRef DG = dg.get();
Mike Stump1eb44332009-09-09 15:08:12 +000069
Chris Lattner20401692009-04-12 20:13:14 +000070 // If we have an invalid decl, just return an error.
71 if (DG.isNull()) return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +000072
Chris Lattner24e1e702009-03-04 04:23:07 +000073 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000074}
75
Fariborz Jahaniana7cf23a2009-11-19 22:12:37 +000076void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
Serge Pavlov18062392013-08-27 13:15:56 +000077 DeclGroupRef DG = dg.get();
Wei Pan55c7d022013-05-03 21:07:45 +000078
Douglas Gregor12849d02013-04-08 20:52:24 +000079 // If we don't have a declaration, or we have an invalid declaration,
80 // just return.
81 if (DG.isNull() || !DG.isSingleDecl())
82 return;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000083
Douglas Gregor12849d02013-04-08 20:52:24 +000084 Decl *decl = DG.getSingleDecl();
85 if (!decl || decl->isInvalidDecl())
86 return;
87
88 // Only variable declarations are permitted.
89 VarDecl *var = dyn_cast<VarDecl>(decl);
90 if (!var) {
91 Diag(decl->getLocation(), diag::err_non_variable_decl_in_for);
92 decl->setInvalidDecl();
93 return;
94 }
John McCallf85e1932011-06-15 23:02:42 +000095
John McCall7acddac2011-06-17 06:42:21 +000096 // foreach variables are never actually initialized in the way that
97 // the parser came up with.
98 var->setInit(0);
John McCallf85e1932011-06-15 23:02:42 +000099
John McCall7acddac2011-06-17 06:42:21 +0000100 // In ARC, we don't need to retain the iteration variable of a fast
101 // enumeration loop. Rather than actually trying to catch that
102 // during declaration processing, we remove the consequences here.
David Blaikie4e4d0842012-03-11 07:00:24 +0000103 if (getLangOpts().ObjCAutoRefCount) {
John McCall7acddac2011-06-17 06:42:21 +0000104 QualType type = var->getType();
105
106 // Only do this if we inferred the lifetime. Inferred lifetime
107 // will show up as a local qualifier because explicit lifetime
108 // should have shown up as an AttributedType instead.
109 if (type.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong) {
110 // Add 'const' and mark the variable as pseudo-strong.
111 var->setType(type.withConst());
112 var->setARCPseudoStrong(true);
John McCallf85e1932011-06-15 23:02:42 +0000113 }
114 }
Fariborz Jahaniana7cf23a2009-11-19 22:12:37 +0000115}
116
Chandler Carruthec8058f2011-08-17 09:34:37 +0000117/// \brief Diagnose unused '==' and '!=' as likely typos for '=' or '|='.
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000118///
119/// Adding a cast to void (or other expression wrappers) will prevent the
120/// warning from firing.
Chandler Carruthec8058f2011-08-17 09:34:37 +0000121static bool DiagnoseUnusedComparison(Sema &S, const Expr *E) {
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000122 SourceLocation Loc;
Chandler Carruth50bf68f2011-08-17 08:38:11 +0000123 bool IsNotEqual, CanAssign;
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000124
125 if (const BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
126 if (Op->getOpcode() != BO_EQ && Op->getOpcode() != BO_NE)
Chandler Carruthec8058f2011-08-17 09:34:37 +0000127 return false;
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000128
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000129 Loc = Op->getOperatorLoc();
Chandler Carruth50bf68f2011-08-17 08:38:11 +0000130 IsNotEqual = Op->getOpcode() == BO_NE;
131 CanAssign = Op->getLHS()->IgnoreParenImpCasts()->isLValue();
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000132 } else if (const CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
133 if (Op->getOperator() != OO_EqualEqual &&
134 Op->getOperator() != OO_ExclaimEqual)
Chandler Carruthec8058f2011-08-17 09:34:37 +0000135 return false;
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000136
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000137 Loc = Op->getOperatorLoc();
Chandler Carruth50bf68f2011-08-17 08:38:11 +0000138 IsNotEqual = Op->getOperator() == OO_ExclaimEqual;
139 CanAssign = Op->getArg(0)->IgnoreParenImpCasts()->isLValue();
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000140 } else {
141 // Not a typo-prone comparison.
Chandler Carruthec8058f2011-08-17 09:34:37 +0000142 return false;
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000143 }
144
145 // Suppress warnings when the operator, suspicious as it may be, comes from
146 // a macro expansion.
Matt Beaumont-Gayc3cd6f72013-01-12 00:54:16 +0000147 if (S.SourceMgr.isMacroBodyExpansion(Loc))
Chandler Carruthec8058f2011-08-17 09:34:37 +0000148 return false;
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000149
Chandler Carruthec8058f2011-08-17 09:34:37 +0000150 S.Diag(Loc, diag::warn_unused_comparison)
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000151 << (unsigned)IsNotEqual << E->getSourceRange();
152
Chandler Carruth50bf68f2011-08-17 08:38:11 +0000153 // If the LHS is a plausible entity to assign to, provide a fixit hint to
154 // correct common typos.
155 if (CanAssign) {
156 if (IsNotEqual)
157 S.Diag(Loc, diag::note_inequality_comparison_to_or_assign)
158 << FixItHint::CreateReplacement(Loc, "|=");
159 else
160 S.Diag(Loc, diag::note_equality_comparison_to_assign)
161 << FixItHint::CreateReplacement(Loc, "=");
162 }
Chandler Carruthec8058f2011-08-17 09:34:37 +0000163
164 return true;
Chandler Carruth9d8eb3b2011-08-17 08:38:04 +0000165}
166
Anders Carlsson636463e2009-07-30 22:17:18 +0000167void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +0000168 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
169 return DiagnoseUnusedExprResult(Label->getSubStmt());
170
Anders Carlsson75443112009-07-30 22:39:03 +0000171 const Expr *E = dyn_cast_or_null<Expr>(S);
Anders Carlsson636463e2009-07-30 22:17:18 +0000172 if (!E)
173 return;
Matt Beaumont-Gay87b73ba2013-01-17 02:06:08 +0000174 SourceLocation ExprLoc = E->IgnoreParens()->getExprLoc();
Matt Beaumont-Gay9016bb72013-02-26 19:34:08 +0000175 // In most cases, we don't want to warn if the expression is written in a
176 // macro body, or if the macro comes from a system header. If the offending
177 // expression is a call to a function with the warn_unused_result attribute,
178 // we warn no matter the location. Because of the order in which the various
179 // checks need to happen, we factor out the macro-related test here.
180 bool ShouldSuppress =
181 SourceMgr.isMacroBodyExpansion(ExprLoc) ||
182 SourceMgr.isInSystemMacro(ExprLoc);
Anders Carlsson636463e2009-07-30 22:17:18 +0000183
Eli Friedmana6115062012-05-24 00:47:05 +0000184 const Expr *WarnExpr;
Anders Carlsson636463e2009-07-30 22:17:18 +0000185 SourceLocation Loc;
186 SourceRange R1, R2;
Matt Beaumont-Gay87b73ba2013-01-17 02:06:08 +0000187 if (!E->isUnusedResultAWarning(WarnExpr, Loc, R1, R2, Context))
Anders Carlsson636463e2009-07-30 22:17:18 +0000188 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000189
Chris Lattner06b3a062012-08-31 22:39:21 +0000190 // If this is a GNU statement expression expanded from a macro, it is probably
191 // unused because it is a function-like macro that can be used as either an
192 // expression or statement. Don't warn, because it is almost certainly a
193 // false positive.
194 if (isa<StmtExpr>(E) && Loc.isMacroID())
195 return;
196
Chris Lattner419cfb32009-08-16 16:57:27 +0000197 // Okay, we have an unused result. Depending on what the base expression is,
198 // we might want to make a more specific diagnostic. Check for one of these
199 // cases now.
200 unsigned DiagID = diag::warn_unused_expr;
John McCall4765fa02010-12-06 08:20:24 +0000201 if (const ExprWithCleanups *Temps = dyn_cast<ExprWithCleanups>(E))
Douglas Gregor4dffad62010-02-11 22:55:30 +0000202 E = Temps->getSubExpr();
Chandler Carruth34d49472011-02-21 00:56:56 +0000203 if (const CXXBindTemporaryExpr *TempExpr = dyn_cast<CXXBindTemporaryExpr>(E))
204 E = TempExpr->getSubExpr();
John McCall12f78a62010-12-02 01:19:52 +0000205
Chandler Carruthec8058f2011-08-17 09:34:37 +0000206 if (DiagnoseUnusedComparison(*this, E))
207 return;
208
Eli Friedmana6115062012-05-24 00:47:05 +0000209 E = WarnExpr;
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000210 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
John McCall0faede62010-03-12 07:11:26 +0000211 if (E->getType()->isVoidType())
212 return;
213
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000214 // If the callee has attribute pure, const, or warn_unused_result, warn with
Matt Beaumont-Gay9016bb72013-02-26 19:34:08 +0000215 // a more specific message to make it clear what is happening. If the call
216 // is written in a macro body, only warn if it has the warn_unused_result
217 // attribute.
Nuno Lopesd20254f2009-12-20 23:11:08 +0000218 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000219 if (FD->getAttr<WarnUnusedResultAttr>()) {
Matt Beaumont-Gay42d7b2d2011-08-04 23:11:04 +0000220 Diag(Loc, diag::warn_unused_result) << R1 << R2;
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000221 return;
222 }
Matt Beaumont-Gay9016bb72013-02-26 19:34:08 +0000223 if (ShouldSuppress)
224 return;
Chris Lattnerbc8d42c2009-10-13 04:53:48 +0000225 if (FD->getAttr<PureAttr>()) {
226 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "pure";
227 return;
228 }
229 if (FD->getAttr<ConstAttr>()) {
230 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "const";
231 return;
232 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000233 }
Matt Beaumont-Gay9016bb72013-02-26 19:34:08 +0000234 } else if (ShouldSuppress)
235 return;
236
237 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000238 if (getLangOpts().ObjCAutoRefCount && ME->isDelegateInitCall()) {
John McCallf85e1932011-06-15 23:02:42 +0000239 Diag(Loc, diag::err_arc_unused_init_message) << R1;
240 return;
241 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +0000242 const ObjCMethodDecl *MD = ME->getMethodDecl();
243 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
Matt Beaumont-Gay42d7b2d2011-08-04 23:11:04 +0000244 Diag(Loc, diag::warn_unused_result) << R1 << R2;
Fariborz Jahanianf0317742010-03-30 18:22:15 +0000245 return;
246 }
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000247 } else if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
248 const Expr *Source = POE->getSyntacticForm();
249 if (isa<ObjCSubscriptRefExpr>(Source))
250 DiagID = diag::warn_unused_container_subscript_expr;
251 else
252 DiagID = diag::warn_unused_property_expr;
Douglas Gregord6e44a32010-04-16 22:09:46 +0000253 } else if (const CXXFunctionalCastExpr *FC
254 = dyn_cast<CXXFunctionalCastExpr>(E)) {
255 if (isa<CXXConstructExpr>(FC->getSubExpr()) ||
256 isa<CXXTemporaryObjectExpr>(FC->getSubExpr()))
257 return;
Fariborz Jahanianf0317742010-03-30 18:22:15 +0000258 }
John McCall209acbd2010-04-06 22:24:14 +0000259 // Diagnose "(void*) blah" as a typo for "(void) blah".
260 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
261 TypeSourceInfo *TI = CE->getTypeInfoAsWritten();
262 QualType T = TI->getType();
263
264 // We really do want to use the non-canonical type here.
265 if (T == Context.VoidPtrTy) {
David Blaikie39e6ab42013-02-18 22:06:02 +0000266 PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
John McCall209acbd2010-04-06 22:24:14 +0000267
268 Diag(Loc, diag::warn_unused_voidptr)
269 << FixItHint::CreateRemoval(TL.getStarLoc());
270 return;
271 }
272 }
273
Eli Friedmana6115062012-05-24 00:47:05 +0000274 if (E->isGLValue() && E->getType().isVolatileQualified()) {
275 Diag(Loc, diag::warn_unused_volatile) << R1 << R2;
276 return;
277 }
278
Ted Kremenek351ba912011-02-23 01:52:04 +0000279 DiagRuntimeBehavior(Loc, 0, PDiag(DiagID) << R1 << R2);
Anders Carlsson636463e2009-07-30 22:17:18 +0000280}
281
Dmitri Gribenko625bb562012-02-14 22:14:32 +0000282void Sema::ActOnStartOfCompoundStmt() {
283 PushCompoundScope();
284}
285
286void Sema::ActOnFinishOfCompoundStmt() {
287 PopCompoundScope();
288}
289
290sema::CompoundScopeInfo &Sema::getCurCompoundScope() const {
291 return getCurFunction()->CompoundScopes.back();
292}
293
Robert Wilhelmc895f4d2013-08-19 20:51:20 +0000294StmtResult Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
295 ArrayRef<Stmt *> Elts, bool isStmtExpr) {
296 const unsigned NumElts = Elts.size();
297
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000298 // If we're in C89 mode, check that we don't have any decls after stmts. If
299 // so, emit an extension diagnostic.
David Blaikie4e4d0842012-03-11 07:00:24 +0000300 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus) {
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000301 // Note that __extension__ can be around a decl.
302 unsigned i = 0;
303 // Skip over all declarations.
304 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
305 /*empty*/;
306
307 // We found the end of the list or a statement. Scan for another declstmt.
308 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
309 /*empty*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000311 if (i != NumElts) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000312 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000313 Diag(D->getLocation(), diag::ext_mixed_decls_code);
314 }
315 }
Chris Lattner98414c12007-08-31 21:49:55 +0000316 // Warn about unused expressions in statements.
317 for (unsigned i = 0; i != NumElts; ++i) {
Anders Carlsson636463e2009-07-30 22:17:18 +0000318 // Ignore statements that are last in a statement expression.
319 if (isStmtExpr && i == NumElts - 1)
Chris Lattner98414c12007-08-31 21:49:55 +0000320 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Anders Carlsson636463e2009-07-30 22:17:18 +0000322 DiagnoseUnusedExprResult(Elts[i]);
Chris Lattner98414c12007-08-31 21:49:55 +0000323 }
Sebastian Redla60528c2008-12-21 12:04:03 +0000324
Dmitri Gribenko625bb562012-02-14 22:14:32 +0000325 // Check for suspicious empty body (null statement) in `for' and `while'
326 // statements. Don't do anything for template instantiations, this just adds
327 // noise.
328 if (NumElts != 0 && !CurrentInstantiationScope &&
329 getCurCompoundScope().HasEmptyLoopBodies) {
330 for (unsigned i = 0; i != NumElts - 1; ++i)
331 DiagnoseEmptyLoopBody(Elts[i], Elts[i + 1]);
332 }
333
Robert Wilhelmc895f4d2013-08-19 20:51:20 +0000334 return Owned(new (Context) CompoundStmt(Context, Elts, L, R));
Reid Spencer5f016e22007-07-11 17:01:13 +0000335}
336
John McCall60d7b3a2010-08-24 06:29:42 +0000337StmtResult
John McCall9ae2f072010-08-23 23:25:46 +0000338Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
339 SourceLocation DotDotDotLoc, Expr *RHSVal,
Chris Lattner24e1e702009-03-04 04:23:07 +0000340 SourceLocation ColonLoc) {
John McCall9ae2f072010-08-23 23:25:46 +0000341 assert((LHSVal != 0) && "missing expression in case statement");
Sebastian Redl117054a2008-12-28 16:13:43 +0000342
John McCall781472f2010-08-25 08:40:02 +0000343 if (getCurFunction()->SwitchStack.empty()) {
Chris Lattner8a87e572007-07-23 17:05:23 +0000344 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner24e1e702009-03-04 04:23:07 +0000345 return StmtError();
Chris Lattner8a87e572007-07-23 17:05:23 +0000346 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000347
Richard Smith80ad52f2013-01-02 11:42:31 +0000348 if (!getLangOpts().CPlusPlus11) {
Richard Smith8ef7b202012-01-18 23:55:52 +0000349 // C99 6.8.4.2p3: The expression shall be an integer constant.
350 // However, GCC allows any evaluatable integer expression.
Richard Smith282e7e62012-02-04 09:53:13 +0000351 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent()) {
352 LHSVal = VerifyIntegerConstantExpression(LHSVal).take();
353 if (!LHSVal)
354 return StmtError();
355 }
Richard Smith8ef7b202012-01-18 23:55:52 +0000356
357 // GCC extension: The expression shall be an integer constant.
358
Richard Smith282e7e62012-02-04 09:53:13 +0000359 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
360 RHSVal = VerifyIntegerConstantExpression(RHSVal).take();
361 // Recover from an error by just forgetting about it.
Richard Smith8ef7b202012-01-18 23:55:52 +0000362 }
363 }
Ben Langmuira0152d42013-04-29 13:07:42 +0000364
Fariborz Jahanianad48a502013-01-24 22:11:45 +0000365 LHSVal = ActOnFinishFullExpr(LHSVal, LHSVal->getExprLoc(), false,
366 getLangOpts().CPlusPlus11).take();
367 if (RHSVal)
368 RHSVal = ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false,
369 getLangOpts().CPlusPlus11).take();
Richard Smith8ef7b202012-01-18 23:55:52 +0000370
Douglas Gregordbb26db2009-05-15 23:57:33 +0000371 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
372 ColonLoc);
John McCall781472f2010-08-25 08:40:02 +0000373 getCurFunction()->SwitchStack.back()->addSwitchCase(CS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000374 return Owned(CS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000375}
376
Chris Lattner24e1e702009-03-04 04:23:07 +0000377/// ActOnCaseStmtBody - This installs a statement as the body of a case.
John McCall9ae2f072010-08-23 23:25:46 +0000378void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
Chandler Carruth5440bfa2011-08-18 02:04:29 +0000379 DiagnoseUnusedExprResult(SubStmt);
380
Chris Lattner24e1e702009-03-04 04:23:07 +0000381 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
Chris Lattner24e1e702009-03-04 04:23:07 +0000382 CS->setSubStmt(SubStmt);
383}
384
John McCall60d7b3a2010-08-24 06:29:42 +0000385StmtResult
Mike Stump1eb44332009-09-09 15:08:12 +0000386Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000387 Stmt *SubStmt, Scope *CurScope) {
Chandler Carruth5440bfa2011-08-18 02:04:29 +0000388 DiagnoseUnusedExprResult(SubStmt);
389
John McCall781472f2010-08-25 08:40:02 +0000390 if (getCurFunction()->SwitchStack.empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000391 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl117054a2008-12-28 16:13:43 +0000392 return Owned(SubStmt);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000393 }
Sebastian Redl117054a2008-12-28 16:13:43 +0000394
Douglas Gregordbb26db2009-05-15 23:57:33 +0000395 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
John McCall781472f2010-08-25 08:40:02 +0000396 getCurFunction()->SwitchStack.back()->addSwitchCase(DS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000397 return Owned(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000398}
399
John McCall60d7b3a2010-08-24 06:29:42 +0000400StmtResult
Chris Lattner57ad3782011-02-17 20:34:02 +0000401Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
402 SourceLocation ColonLoc, Stmt *SubStmt) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000403 // If the label was multiply defined, reject it now.
404 if (TheDecl->getStmt()) {
405 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
406 Diag(TheDecl->getLocation(), diag::note_previous_definition);
Sebastian Redlde307472009-01-11 00:38:46 +0000407 return Owned(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 }
Sebastian Redlde307472009-01-11 00:38:46 +0000409
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000410 // Otherwise, things are good. Fill in the declaration and return it.
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000411 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
412 TheDecl->setStmt(LS);
Abramo Bagnaraac702782012-10-15 21:07:44 +0000413 if (!TheDecl->isGnuLocal()) {
414 TheDecl->setLocStart(IdentLoc);
Abramo Bagnara203548b2011-03-03 18:24:14 +0000415 TheDecl->setLocation(IdentLoc);
Abramo Bagnaraac702782012-10-15 21:07:44 +0000416 }
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000417 return Owned(LS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000418}
419
Richard Smith534986f2012-04-14 00:33:13 +0000420StmtResult Sema::ActOnAttributedStmt(SourceLocation AttrLoc,
Alexander Kornienko49908902012-07-09 10:04:07 +0000421 ArrayRef<const Attr*> Attrs,
Richard Smith534986f2012-04-14 00:33:13 +0000422 Stmt *SubStmt) {
Alexander Kornienko49908902012-07-09 10:04:07 +0000423 // Fill in the declaration and return it.
424 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt);
Richard Smith534986f2012-04-14 00:33:13 +0000425 return Owned(LS);
426}
427
John McCall60d7b3a2010-08-24 06:29:42 +0000428StmtResult
John McCalld226f652010-08-21 09:40:31 +0000429Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000430 Stmt *thenStmt, SourceLocation ElseLoc,
431 Stmt *elseStmt) {
Argyrios Kyrtzidis820b23d2013-02-15 18:34:13 +0000432 // If the condition was invalid, discard the if statement. We could recover
433 // better by replacing it with a valid expr, but don't do that yet.
434 if (!CondVal.get() && !CondVar) {
435 getCurFunction()->setHasDroppedStmt();
436 return StmtError();
437 }
438
John McCall60d7b3a2010-08-24 06:29:42 +0000439 ExprResult CondResult(CondVal.release());
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Douglas Gregor8cfe5a72009-11-23 23:44:04 +0000441 VarDecl *ConditionVar = 0;
John McCalld226f652010-08-21 09:40:31 +0000442 if (CondVar) {
443 ConditionVar = cast<VarDecl>(CondVar);
Douglas Gregor586596f2010-05-06 17:25:47 +0000444 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000445 if (CondResult.isInvalid())
446 return StmtError();
Douglas Gregor8cfe5a72009-11-23 23:44:04 +0000447 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000448 Expr *ConditionExpr = CondResult.takeAs<Expr>();
449 if (!ConditionExpr)
450 return StmtError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000451
Anders Carlsson75443112009-07-30 22:39:03 +0000452 DiagnoseUnusedExprResult(thenStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000453
John McCall9ae2f072010-08-23 23:25:46 +0000454 if (!elseStmt) {
Dmitri Gribenko625bb562012-02-14 22:14:32 +0000455 DiagnoseEmptyStmtBody(ConditionExpr->getLocEnd(), thenStmt,
456 diag::warn_empty_if_body);
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000457 }
458
Anders Carlsson75443112009-07-30 22:39:03 +0000459 DiagnoseUnusedExprResult(elseStmt);
Mike Stump1eb44332009-09-09 15:08:12 +0000460
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000461 return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr,
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000462 thenStmt, ElseLoc, elseStmt));
Reid Spencer5f016e22007-07-11 17:01:13 +0000463}
464
Chris Lattnerf4021e72007-08-23 05:46:52 +0000465/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
466/// the specified width and sign. If an overflow occurs, detect it and emit
467/// the specified diagnostic.
468void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
469 unsigned NewWidth, bool NewSign,
Mike Stump1eb44332009-09-09 15:08:12 +0000470 SourceLocation Loc,
Chris Lattnerf4021e72007-08-23 05:46:52 +0000471 unsigned DiagID) {
472 // Perform a conversion to the promoted condition type if needed.
473 if (NewWidth > Val.getBitWidth()) {
474 // If this is an extension, just do it.
Jay Foad9f71a8f2010-12-07 08:25:34 +0000475 Val = Val.extend(NewWidth);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000476 Val.setIsSigned(NewSign);
Douglas Gregorf9f627d2010-03-01 01:04:55 +0000477
478 // If the input was signed and negative and the output is
479 // unsigned, don't bother to warn: this is implementation-defined
480 // behavior.
481 // FIXME: Introduce a second, default-ignored warning for this case?
Chris Lattnerf4021e72007-08-23 05:46:52 +0000482 } else if (NewWidth < Val.getBitWidth()) {
483 // If this is a truncation, check for overflow.
484 llvm::APSInt ConvVal(Val);
Jay Foad9f71a8f2010-12-07 08:25:34 +0000485 ConvVal = ConvVal.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000486 ConvVal.setIsSigned(NewSign);
Jay Foad9f71a8f2010-12-07 08:25:34 +0000487 ConvVal = ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000488 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000489 if (ConvVal != Val)
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000490 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Chris Lattnerf4021e72007-08-23 05:46:52 +0000492 // Regardless of whether a diagnostic was emitted, really do the
493 // truncation.
Jay Foad9f71a8f2010-12-07 08:25:34 +0000494 Val = Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000495 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000496 } else if (NewSign != Val.isSigned()) {
497 // Convert the sign to match the sign of the condition. This can cause
498 // overflow as well: unsigned(INTMIN)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000499 // We don't diagnose this overflow, because it is implementation-defined
Douglas Gregor2853eac2010-02-18 00:56:01 +0000500 // behavior.
501 // FIXME: Introduce a second, default-ignored warning for this case?
Chris Lattnerf4021e72007-08-23 05:46:52 +0000502 llvm::APSInt OldVal(Val);
503 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000504 }
505}
506
Chris Lattner0471f5b2007-08-23 18:29:20 +0000507namespace {
508 struct CaseCompareFunctor {
509 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
510 const llvm::APSInt &RHS) {
511 return LHS.first < RHS;
512 }
Chris Lattner0e85a272007-09-03 18:31:57 +0000513 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
514 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
515 return LHS.first < RHS.first;
516 }
Chris Lattner0471f5b2007-08-23 18:29:20 +0000517 bool operator()(const llvm::APSInt &LHS,
518 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
519 return LHS < RHS.first;
520 }
521 };
522}
523
Chris Lattner764a7ce2007-09-21 18:15:22 +0000524/// CmpCaseVals - Comparison predicate for sorting case values.
525///
526static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
527 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
528 if (lhs.first < rhs.first)
529 return true;
530
531 if (lhs.first == rhs.first &&
532 lhs.second->getCaseLoc().getRawEncoding()
533 < rhs.second->getCaseLoc().getRawEncoding())
534 return true;
535 return false;
536}
537
Douglas Gregorba915af2010-02-08 22:24:16 +0000538/// CmpEnumVals - Comparison predicate for sorting enumeration values.
539///
540static bool CmpEnumVals(const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
541 const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
542{
543 return lhs.first < rhs.first;
544}
545
546/// EqEnumVals - Comparison preficate for uniqing enumeration values.
547///
548static bool EqEnumVals(const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
549 const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
550{
551 return lhs.first == rhs.first;
552}
553
Chris Lattner5f048812009-10-16 16:45:22 +0000554/// GetTypeBeforeIntegralPromotion - Returns the pre-promotion type of
555/// potentially integral-promoted expression @p expr.
John McCalla8e0cd82011-08-06 07:30:58 +0000556static QualType GetTypeBeforeIntegralPromotion(Expr *&expr) {
557 if (ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(expr))
558 expr = cleanups->getSubExpr();
559 while (ImplicitCastExpr *impcast = dyn_cast<ImplicitCastExpr>(expr)) {
560 if (impcast->getCastKind() != CK_IntegralCast) break;
561 expr = impcast->getSubExpr();
Chris Lattner5f048812009-10-16 16:45:22 +0000562 }
563 return expr->getType();
564}
565
John McCall60d7b3a2010-08-24 06:29:42 +0000566StmtResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000567Sema::ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, Expr *Cond,
John McCalld226f652010-08-21 09:40:31 +0000568 Decl *CondVar) {
John McCall60d7b3a2010-08-24 06:29:42 +0000569 ExprResult CondResult;
John McCall9ae2f072010-08-23 23:25:46 +0000570
Douglas Gregor586596f2010-05-06 17:25:47 +0000571 VarDecl *ConditionVar = 0;
John McCalld226f652010-08-21 09:40:31 +0000572 if (CondVar) {
573 ConditionVar = cast<VarDecl>(CondVar);
John McCall9ae2f072010-08-23 23:25:46 +0000574 CondResult = CheckConditionVariable(ConditionVar, SourceLocation(), false);
575 if (CondResult.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +0000576 return StmtError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000577
John McCall9ae2f072010-08-23 23:25:46 +0000578 Cond = CondResult.release();
Douglas Gregor586596f2010-05-06 17:25:47 +0000579 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000580
John McCall9ae2f072010-08-23 23:25:46 +0000581 if (!Cond)
Douglas Gregor586596f2010-05-06 17:25:47 +0000582 return StmtError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000583
Douglas Gregorab41fe92012-05-04 22:38:52 +0000584 class SwitchConvertDiagnoser : public ICEConvertDiagnoser {
585 Expr *Cond;
Chad Rosier8e1e0542012-06-20 18:51:04 +0000586
Douglas Gregorab41fe92012-05-04 22:38:52 +0000587 public:
588 SwitchConvertDiagnoser(Expr *Cond)
Richard Smith097e0a22013-05-21 19:05:48 +0000589 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/true, false, true),
590 Cond(Cond) {}
Chad Rosier8e1e0542012-06-20 18:51:04 +0000591
Richard Smith097e0a22013-05-21 19:05:48 +0000592 virtual SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
593 QualType T) {
Douglas Gregorab41fe92012-05-04 22:38:52 +0000594 return S.Diag(Loc, diag::err_typecheck_statement_requires_integer) << T;
595 }
Chad Rosier8e1e0542012-06-20 18:51:04 +0000596
Richard Smith097e0a22013-05-21 19:05:48 +0000597 virtual SemaDiagnosticBuilder diagnoseIncomplete(
598 Sema &S, SourceLocation Loc, QualType T) {
Douglas Gregorab41fe92012-05-04 22:38:52 +0000599 return S.Diag(Loc, diag::err_switch_incomplete_class_type)
600 << T << Cond->getSourceRange();
601 }
Chad Rosier8e1e0542012-06-20 18:51:04 +0000602
Richard Smith097e0a22013-05-21 19:05:48 +0000603 virtual SemaDiagnosticBuilder diagnoseExplicitConv(
604 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) {
Douglas Gregorab41fe92012-05-04 22:38:52 +0000605 return S.Diag(Loc, diag::err_switch_explicit_conversion) << T << ConvTy;
606 }
Chad Rosier8e1e0542012-06-20 18:51:04 +0000607
Richard Smith097e0a22013-05-21 19:05:48 +0000608 virtual SemaDiagnosticBuilder noteExplicitConv(
609 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) {
Douglas Gregorab41fe92012-05-04 22:38:52 +0000610 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
611 << ConvTy->isEnumeralType() << ConvTy;
612 }
Chad Rosier8e1e0542012-06-20 18:51:04 +0000613
Richard Smith097e0a22013-05-21 19:05:48 +0000614 virtual SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
615 QualType T) {
Douglas Gregorab41fe92012-05-04 22:38:52 +0000616 return S.Diag(Loc, diag::err_switch_multiple_conversions) << T;
617 }
Chad Rosier8e1e0542012-06-20 18:51:04 +0000618
Richard Smith097e0a22013-05-21 19:05:48 +0000619 virtual SemaDiagnosticBuilder noteAmbiguous(
620 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) {
Douglas Gregorab41fe92012-05-04 22:38:52 +0000621 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
622 << ConvTy->isEnumeralType() << ConvTy;
623 }
Chad Rosier8e1e0542012-06-20 18:51:04 +0000624
Richard Smith097e0a22013-05-21 19:05:48 +0000625 virtual SemaDiagnosticBuilder diagnoseConversion(
626 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) {
627 llvm_unreachable("conversion functions are permitted");
Douglas Gregorab41fe92012-05-04 22:38:52 +0000628 }
629 } SwitchDiagnoser(Cond);
630
Richard Smith097e0a22013-05-21 19:05:48 +0000631 CondResult =
632 PerformContextualImplicitConversion(SwitchLoc, Cond, SwitchDiagnoser);
John McCall9ae2f072010-08-23 23:25:46 +0000633 if (CondResult.isInvalid()) return StmtError();
634 Cond = CondResult.take();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000635
John McCalla8e0cd82011-08-06 07:30:58 +0000636 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
637 CondResult = UsualUnaryConversions(Cond);
638 if (CondResult.isInvalid()) return StmtError();
639 Cond = CondResult.take();
640
John McCalld226f652010-08-21 09:40:31 +0000641 if (!CondVar) {
Richard Smith41956372013-01-14 22:39:08 +0000642 CondResult = ActOnFinishFullExpr(Cond, SwitchLoc);
John McCall9ae2f072010-08-23 23:25:46 +0000643 if (CondResult.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +0000644 return StmtError();
John McCall9ae2f072010-08-23 23:25:46 +0000645 Cond = CondResult.take();
Douglas Gregor586596f2010-05-06 17:25:47 +0000646 }
John McCallb60a77e2010-08-01 00:26:45 +0000647
John McCall781472f2010-08-25 08:40:02 +0000648 getCurFunction()->setHasBranchIntoScope();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000649
John McCall9ae2f072010-08-23 23:25:46 +0000650 SwitchStmt *SS = new (Context) SwitchStmt(Context, ConditionVar, Cond);
John McCall781472f2010-08-25 08:40:02 +0000651 getCurFunction()->SwitchStack.push_back(SS);
Douglas Gregor586596f2010-05-06 17:25:47 +0000652 return Owned(SS);
Chris Lattner7e52de42010-01-24 01:50:29 +0000653}
654
Gabor Greif28164ab2010-10-01 22:05:14 +0000655static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
656 if (Val.getBitWidth() < BitWidth)
Jay Foad9f71a8f2010-12-07 08:25:34 +0000657 Val = Val.extend(BitWidth);
Gabor Greif28164ab2010-10-01 22:05:14 +0000658 else if (Val.getBitWidth() > BitWidth)
Jay Foad9f71a8f2010-12-07 08:25:34 +0000659 Val = Val.trunc(BitWidth);
Gabor Greif28164ab2010-10-01 22:05:14 +0000660 Val.setIsSigned(IsSigned);
661}
662
John McCall60d7b3a2010-08-24 06:29:42 +0000663StmtResult
John McCall9ae2f072010-08-23 23:25:46 +0000664Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch,
665 Stmt *BodyStmt) {
666 SwitchStmt *SS = cast<SwitchStmt>(Switch);
John McCall781472f2010-08-25 08:40:02 +0000667 assert(SS == getCurFunction()->SwitchStack.back() &&
668 "switch stack missing push/pop!");
Sebastian Redlde307472009-01-11 00:38:46 +0000669
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000670 SS->setBody(BodyStmt, SwitchLoc);
John McCall781472f2010-08-25 08:40:02 +0000671 getCurFunction()->SwitchStack.pop_back();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000672
Chris Lattnerf4021e72007-08-23 05:46:52 +0000673 Expr *CondExpr = SS->getCond();
John McCalla8e0cd82011-08-06 07:30:58 +0000674 if (!CondExpr) return StmtError();
675
676 QualType CondType = CondExpr->getType();
677
John McCall0fb97082010-05-18 03:19:21 +0000678 Expr *CondExprBeforePromotion = CondExpr;
Douglas Gregor84fb9c02009-11-23 13:46:08 +0000679 QualType CondTypeBeforePromotion =
John McCalla8e0cd82011-08-06 07:30:58 +0000680 GetTypeBeforeIntegralPromotion(CondExprBeforePromotion);
Douglas Gregor84fb9c02009-11-23 13:46:08 +0000681
Chris Lattner5f048812009-10-16 16:45:22 +0000682 // C++ 6.4.2.p2:
683 // Integral promotions are performed (on the switch condition).
684 //
685 // A case value unrepresentable by the original switch condition
686 // type (before the promotion) doesn't make sense, even when it can
687 // be represented by the promoted type. Therefore we need to find
688 // the pre-promotion type of the switch condition.
Edward O'Callaghan12356b12009-10-17 19:32:54 +0000689 if (!CondExpr->isTypeDependent()) {
Douglas Gregoracb0bd82010-06-29 23:25:20 +0000690 // We have already converted the expression to an integral or enumeration
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000691 // type, when we started the switch statement. If we don't have an
Douglas Gregoracb0bd82010-06-29 23:25:20 +0000692 // appropriate type now, just return an error.
693 if (!CondType->isIntegralOrEnumerationType())
Edward O'Callaghan12356b12009-10-17 19:32:54 +0000694 return StmtError();
Edward O'Callaghan12356b12009-10-17 19:32:54 +0000695
Chris Lattner2b334bb2010-04-16 23:34:13 +0000696 if (CondExpr->isKnownToHaveBooleanValue()) {
Edward O'Callaghan12356b12009-10-17 19:32:54 +0000697 // switch(bool_expr) {...} is often a programmer error, e.g.
698 // switch(n && mask) { ... } // Doh - should be "n & mask".
699 // One can always use an if statement instead of switch(bool_expr).
700 Diag(SwitchLoc, diag::warn_bool_switch_condition)
701 << CondExpr->getSourceRange();
702 }
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000703 }
Sebastian Redlde307472009-01-11 00:38:46 +0000704
Chris Lattnerf4021e72007-08-23 05:46:52 +0000705 // Get the bitwidth of the switched-on value before promotions. We must
706 // convert the integer case values to this width before comparison.
Mike Stump1eb44332009-09-09 15:08:12 +0000707 bool HasDependentValue
Douglas Gregordbb26db2009-05-15 23:57:33 +0000708 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
Mike Stump1eb44332009-09-09 15:08:12 +0000709 unsigned CondWidth
Chris Lattner1d6ab7a2011-02-24 07:31:28 +0000710 = HasDependentValue ? 0 : Context.getIntWidth(CondTypeBeforePromotion);
Chad Rosier1093f492012-08-10 17:56:09 +0000711 bool CondIsSigned
Douglas Gregor575a1c92011-05-20 16:38:50 +0000712 = CondTypeBeforePromotion->isSignedIntegerOrEnumerationType();
Mike Stump1eb44332009-09-09 15:08:12 +0000713
Chris Lattnerf4021e72007-08-23 05:46:52 +0000714 // Accumulate all of the case values in a vector so that we can sort them
715 // and detect duplicates. This vector contains the APInt for the case after
716 // it has been converted to the condition type.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000717 typedef SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
Chris Lattner0471f5b2007-08-23 18:29:20 +0000718 CaseValsTy CaseVals;
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Chris Lattnerf4021e72007-08-23 05:46:52 +0000720 // Keep track of any GNU case ranges we see. The APSInt is the low value.
Douglas Gregorba915af2010-02-08 22:24:16 +0000721 typedef std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRangesTy;
722 CaseRangesTy CaseRanges;
Mike Stump1eb44332009-09-09 15:08:12 +0000723
Chris Lattnerf4021e72007-08-23 05:46:52 +0000724 DefaultStmt *TheDefaultStmt = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000725
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000726 bool CaseListIsErroneous = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000727
Douglas Gregordbb26db2009-05-15 23:57:33 +0000728 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000729 SC = SC->getNextSwitchCase()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000730
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000731 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000732 if (TheDefaultStmt) {
733 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner5f4a6822008-11-23 23:12:31 +0000734 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redlde307472009-01-11 00:38:46 +0000735
Chris Lattnerf4021e72007-08-23 05:46:52 +0000736 // FIXME: Remove the default statement from the switch block so that
Mike Stump390b4cc2009-05-16 07:39:55 +0000737 // we'll return a valid AST. This requires recursing down the AST and
738 // finding it, not something we are set up to do right now. For now,
739 // just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000740 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000741 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000742 TheDefaultStmt = DS;
Mike Stump1eb44332009-09-09 15:08:12 +0000743
Chris Lattnerf4021e72007-08-23 05:46:52 +0000744 } else {
745 CaseStmt *CS = cast<CaseStmt>(SC);
Mike Stump1eb44332009-09-09 15:08:12 +0000746
Chris Lattner1e0a3902008-01-16 19:17:22 +0000747 Expr *Lo = CS->getLHS();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000748
749 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
750 HasDependentValue = true;
751 break;
752 }
Mike Stump1eb44332009-09-09 15:08:12 +0000753
Richard Smith8ef7b202012-01-18 23:55:52 +0000754 llvm::APSInt LoVal;
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Richard Smith80ad52f2013-01-02 11:42:31 +0000756 if (getLangOpts().CPlusPlus11) {
Richard Smith8ef7b202012-01-18 23:55:52 +0000757 // C++11 [stmt.switch]p2: the constant-expression shall be a converted
758 // constant expression of the promoted type of the switch condition.
759 ExprResult ConvLo =
760 CheckConvertedConstantExpression(Lo, CondType, LoVal, CCEK_CaseValue);
761 if (ConvLo.isInvalid()) {
762 CaseListIsErroneous = true;
763 continue;
764 }
765 Lo = ConvLo.take();
766 } else {
767 // We already verified that the expression has a i-c-e value (C99
768 // 6.8.4.2p3) - get that value now.
Fariborz Jahanianad48a502013-01-24 22:11:45 +0000769 LoVal = Lo->EvaluateKnownConstInt(Context);
Richard Smith8ef7b202012-01-18 23:55:52 +0000770
771 // If the LHS is not the same type as the condition, insert an implicit
772 // cast.
773 Lo = DefaultLvalueConversion(Lo).take();
774 Lo = ImpCastExprToType(Lo, CondType, CK_IntegralCast).take();
775 }
776
777 // Convert the value to the same width/sign as the condition had prior to
778 // integral promotions.
779 //
780 // FIXME: This causes us to reject valid code:
781 // switch ((char)c) { case 256: case 0: return 0; }
782 // Here we claim there is a duplicated condition value, but there is not.
Chris Lattnerf4021e72007-08-23 05:46:52 +0000783 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
Gabor Greif28164ab2010-10-01 22:05:14 +0000784 Lo->getLocStart(),
Chris Lattnerf4021e72007-08-23 05:46:52 +0000785 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000786
Chris Lattner1e0a3902008-01-16 19:17:22 +0000787 CS->setLHS(Lo);
Mike Stump1eb44332009-09-09 15:08:12 +0000788
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000789 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000790 if (CS->getRHS()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000791 if (CS->getRHS()->isTypeDependent() ||
Douglas Gregordbb26db2009-05-15 23:57:33 +0000792 CS->getRHS()->isValueDependent()) {
793 HasDependentValue = true;
794 break;
795 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000796 CaseRanges.push_back(std::make_pair(LoVal, CS));
Mike Stump1eb44332009-09-09 15:08:12 +0000797 } else
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000798 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000799 }
800 }
Douglas Gregordbb26db2009-05-15 23:57:33 +0000801
802 if (!HasDependentValue) {
John McCall0fb97082010-05-18 03:19:21 +0000803 // If we don't have a default statement, check whether the
804 // condition is constant.
805 llvm::APSInt ConstantCondValue;
806 bool HasConstantCond = false;
John McCall0fb97082010-05-18 03:19:21 +0000807 if (!HasDependentValue && !TheDefaultStmt) {
Richard Smith51f47082011-10-29 00:50:52 +0000808 HasConstantCond
Richard Smith80d4b552011-12-28 19:48:30 +0000809 = CondExprBeforePromotion->EvaluateAsInt(ConstantCondValue, Context,
810 Expr::SE_AllowSideEffects);
811 assert(!HasConstantCond ||
812 (ConstantCondValue.getBitWidth() == CondWidth &&
813 ConstantCondValue.isSigned() == CondIsSigned));
John McCall0fb97082010-05-18 03:19:21 +0000814 }
Richard Smith80d4b552011-12-28 19:48:30 +0000815 bool ShouldCheckConstantCond = HasConstantCond;
John McCall0fb97082010-05-18 03:19:21 +0000816
Douglas Gregordbb26db2009-05-15 23:57:33 +0000817 // Sort all the scalar case values so we can easily detect duplicates.
818 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
819
820 if (!CaseVals.empty()) {
John McCall0fb97082010-05-18 03:19:21 +0000821 for (unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
822 if (ShouldCheckConstantCond &&
823 CaseVals[i].first == ConstantCondValue)
824 ShouldCheckConstantCond = false;
825
826 if (i != 0 && CaseVals[i].first == CaseVals[i-1].first) {
Douglas Gregordbb26db2009-05-15 23:57:33 +0000827 // If we have a duplicate, report it.
Douglas Gregor3940ce82012-05-16 05:32:58 +0000828 // First, determine if either case value has a name
829 StringRef PrevString, CurrString;
830 Expr *PrevCase = CaseVals[i-1].second->getLHS()->IgnoreParenCasts();
831 Expr *CurrCase = CaseVals[i].second->getLHS()->IgnoreParenCasts();
832 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
833 PrevString = DeclRef->getDecl()->getName();
834 }
835 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
836 CurrString = DeclRef->getDecl()->getName();
837 }
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000838 SmallString<16> CaseValStr;
Douglas Gregor50de5e32012-05-16 16:11:17 +0000839 CaseVals[i-1].first.toString(CaseValStr);
Douglas Gregor3940ce82012-05-16 05:32:58 +0000840
841 if (PrevString == CurrString)
842 Diag(CaseVals[i].second->getLHS()->getLocStart(),
843 diag::err_duplicate_case) <<
Douglas Gregor50de5e32012-05-16 16:11:17 +0000844 (PrevString.empty() ? CaseValStr.str() : PrevString);
Douglas Gregor3940ce82012-05-16 05:32:58 +0000845 else
846 Diag(CaseVals[i].second->getLHS()->getLocStart(),
847 diag::err_duplicate_case_differing_expr) <<
Douglas Gregor50de5e32012-05-16 16:11:17 +0000848 (PrevString.empty() ? CaseValStr.str() : PrevString) <<
849 (CurrString.empty() ? CaseValStr.str() : CurrString) <<
Douglas Gregor3940ce82012-05-16 05:32:58 +0000850 CaseValStr;
851
John McCall0fb97082010-05-18 03:19:21 +0000852 Diag(CaseVals[i-1].second->getLHS()->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000853 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000854 // FIXME: We really want to remove the bogus case stmt from the
855 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000856 CaseListIsErroneous = true;
857 }
858 }
859 }
Mike Stump1eb44332009-09-09 15:08:12 +0000860
Douglas Gregordbb26db2009-05-15 23:57:33 +0000861 // Detect duplicate case ranges, which usually don't exist at all in
862 // the first place.
863 if (!CaseRanges.empty()) {
864 // Sort all the case ranges by their low value so we can easily detect
865 // overlaps between ranges.
866 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Mike Stump1eb44332009-09-09 15:08:12 +0000867
Douglas Gregordbb26db2009-05-15 23:57:33 +0000868 // Scan the ranges, computing the high values and removing empty ranges.
869 std::vector<llvm::APSInt> HiVals;
870 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
John McCall0fb97082010-05-18 03:19:21 +0000871 llvm::APSInt &LoVal = CaseRanges[i].first;
Douglas Gregordbb26db2009-05-15 23:57:33 +0000872 CaseStmt *CR = CaseRanges[i].second;
873 Expr *Hi = CR->getRHS();
Richard Smith8ef7b202012-01-18 23:55:52 +0000874 llvm::APSInt HiVal;
875
Richard Smith80ad52f2013-01-02 11:42:31 +0000876 if (getLangOpts().CPlusPlus11) {
Richard Smith8ef7b202012-01-18 23:55:52 +0000877 // C++11 [stmt.switch]p2: the constant-expression shall be a converted
878 // constant expression of the promoted type of the switch condition.
879 ExprResult ConvHi =
880 CheckConvertedConstantExpression(Hi, CondType, HiVal,
881 CCEK_CaseValue);
882 if (ConvHi.isInvalid()) {
883 CaseListIsErroneous = true;
884 continue;
885 }
886 Hi = ConvHi.take();
887 } else {
888 HiVal = Hi->EvaluateKnownConstInt(Context);
889
890 // If the RHS is not the same type as the condition, insert an
891 // implicit cast.
892 Hi = DefaultLvalueConversion(Hi).take();
893 Hi = ImpCastExprToType(Hi, CondType, CK_IntegralCast).take();
894 }
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Douglas Gregordbb26db2009-05-15 23:57:33 +0000896 // Convert the value to the same width/sign as the condition.
897 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
Gabor Greif28164ab2010-10-01 22:05:14 +0000898 Hi->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000899 diag::warn_case_value_overflow);
Mike Stump1eb44332009-09-09 15:08:12 +0000900
Douglas Gregordbb26db2009-05-15 23:57:33 +0000901 CR->setRHS(Hi);
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Douglas Gregordbb26db2009-05-15 23:57:33 +0000903 // If the low value is bigger than the high value, the case is empty.
John McCall0fb97082010-05-18 03:19:21 +0000904 if (LoVal > HiVal) {
Douglas Gregordbb26db2009-05-15 23:57:33 +0000905 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
906 << SourceRange(CR->getLHS()->getLocStart(),
Gabor Greif28164ab2010-10-01 22:05:14 +0000907 Hi->getLocEnd());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000908 CaseRanges.erase(CaseRanges.begin()+i);
909 --i, --e;
910 continue;
911 }
John McCall0fb97082010-05-18 03:19:21 +0000912
913 if (ShouldCheckConstantCond &&
914 LoVal <= ConstantCondValue &&
915 ConstantCondValue <= HiVal)
916 ShouldCheckConstantCond = false;
917
Douglas Gregordbb26db2009-05-15 23:57:33 +0000918 HiVals.push_back(HiVal);
919 }
Mike Stump1eb44332009-09-09 15:08:12 +0000920
Douglas Gregordbb26db2009-05-15 23:57:33 +0000921 // Rescan the ranges, looking for overlap with singleton values and other
922 // ranges. Since the range list is sorted, we only need to compare case
923 // ranges with their neighbors.
924 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
925 llvm::APSInt &CRLo = CaseRanges[i].first;
926 llvm::APSInt &CRHi = HiVals[i];
927 CaseStmt *CR = CaseRanges[i].second;
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Douglas Gregordbb26db2009-05-15 23:57:33 +0000929 // Check to see whether the case range overlaps with any
930 // singleton cases.
931 CaseStmt *OverlapStmt = 0;
932 llvm::APSInt OverlapVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +0000933
Douglas Gregordbb26db2009-05-15 23:57:33 +0000934 // Find the smallest value >= the lower bound. If I is in the
935 // case range, then we have overlap.
936 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
937 CaseVals.end(), CRLo,
938 CaseCompareFunctor());
939 if (I != CaseVals.end() && I->first < CRHi) {
940 OverlapVal = I->first; // Found overlap with scalar.
941 OverlapStmt = I->second;
942 }
Mike Stump1eb44332009-09-09 15:08:12 +0000943
Douglas Gregordbb26db2009-05-15 23:57:33 +0000944 // Find the smallest value bigger than the upper bound.
945 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
946 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
947 OverlapVal = (I-1)->first; // Found overlap with scalar.
948 OverlapStmt = (I-1)->second;
949 }
Mike Stump1eb44332009-09-09 15:08:12 +0000950
Douglas Gregordbb26db2009-05-15 23:57:33 +0000951 // Check to see if this case stmt overlaps with the subsequent
952 // case range.
953 if (i && CRLo <= HiVals[i-1]) {
954 OverlapVal = HiVals[i-1]; // Found overlap with range.
955 OverlapStmt = CaseRanges[i-1].second;
956 }
Mike Stump1eb44332009-09-09 15:08:12 +0000957
Douglas Gregordbb26db2009-05-15 23:57:33 +0000958 if (OverlapStmt) {
959 // If we have a duplicate, report it.
960 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
961 << OverlapVal.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000962 Diag(OverlapStmt->getLHS()->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000963 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000964 // FIXME: We really want to remove the bogus case stmt from the
965 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000966 CaseListIsErroneous = true;
967 }
Chris Lattnerf3348502007-08-23 14:29:07 +0000968 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000969 }
Douglas Gregorba915af2010-02-08 22:24:16 +0000970
John McCall0fb97082010-05-18 03:19:21 +0000971 // Complain if we have a constant condition and we didn't find a match.
972 if (!CaseListIsErroneous && ShouldCheckConstantCond) {
973 // TODO: it would be nice if we printed enums as enums, chars as
974 // chars, etc.
975 Diag(CondExpr->getExprLoc(), diag::warn_missing_case_for_condition)
976 << ConstantCondValue.toString(10)
977 << CondExpr->getSourceRange();
978 }
979
980 // Check to see if switch is over an Enum and handles all of its
Ted Kremenek559fb552010-09-09 00:05:53 +0000981 // values. We only issue a warning if there is not 'default:', but
982 // we still do the analysis to preserve this information in the AST
983 // (which can be used by flow-based analyes).
John McCall0fb97082010-05-18 03:19:21 +0000984 //
Chris Lattnerce784612010-09-16 17:09:42 +0000985 const EnumType *ET = CondTypeBeforePromotion->getAs<EnumType>();
Ted Kremenek559fb552010-09-09 00:05:53 +0000986
Douglas Gregorba915af2010-02-08 22:24:16 +0000987 // If switch has default case, then ignore it.
Ted Kremenek559fb552010-09-09 00:05:53 +0000988 if (!CaseListIsErroneous && !HasConstantCond && ET) {
Douglas Gregorba915af2010-02-08 22:24:16 +0000989 const EnumDecl *ED = ET->getDecl();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000990 typedef SmallVector<std::pair<llvm::APSInt, EnumConstantDecl*>, 64>
Francois Pichet58f14c02011-06-02 00:47:27 +0000991 EnumValsTy;
Douglas Gregorba915af2010-02-08 22:24:16 +0000992 EnumValsTy EnumVals;
993
John McCall0fb97082010-05-18 03:19:21 +0000994 // Gather all enum values, set their type and sort them,
995 // allowing easier comparison with CaseVals.
996 for (EnumDecl::enumerator_iterator EDI = ED->enumerator_begin();
Gabor Greif28164ab2010-10-01 22:05:14 +0000997 EDI != ED->enumerator_end(); ++EDI) {
998 llvm::APSInt Val = EDI->getInitVal();
999 AdjustAPSInt(Val, CondWidth, CondIsSigned);
David Blaikie581deb32012-06-06 20:45:41 +00001000 EnumVals.push_back(std::make_pair(Val, *EDI));
Douglas Gregorba915af2010-02-08 22:24:16 +00001001 }
1002 std::stable_sort(EnumVals.begin(), EnumVals.end(), CmpEnumVals);
John McCall0fb97082010-05-18 03:19:21 +00001003 EnumValsTy::iterator EIend =
1004 std::unique(EnumVals.begin(), EnumVals.end(), EqEnumVals);
Ted Kremenek559fb552010-09-09 00:05:53 +00001005
1006 // See which case values aren't in enum.
David Blaikie93667502012-01-22 02:31:55 +00001007 EnumValsTy::const_iterator EI = EnumVals.begin();
1008 for (CaseValsTy::const_iterator CI = CaseVals.begin();
1009 CI != CaseVals.end(); CI++) {
1010 while (EI != EIend && EI->first < CI->first)
1011 EI++;
1012 if (EI == EIend || EI->first > CI->first)
1013 Diag(CI->second->getLHS()->getExprLoc(), diag::warn_not_in_enum)
Fariborz Jahanian54faba42012-03-21 20:56:29 +00001014 << CondTypeBeforePromotion;
David Blaikie93667502012-01-22 02:31:55 +00001015 }
1016 // See which of case ranges aren't in enum
1017 EI = EnumVals.begin();
1018 for (CaseRangesTy::const_iterator RI = CaseRanges.begin();
1019 RI != CaseRanges.end() && EI != EIend; RI++) {
1020 while (EI != EIend && EI->first < RI->first)
1021 EI++;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001022
David Blaikie93667502012-01-22 02:31:55 +00001023 if (EI == EIend || EI->first != RI->first) {
1024 Diag(RI->second->getLHS()->getExprLoc(), diag::warn_not_in_enum)
Fariborz Jahanian54faba42012-03-21 20:56:29 +00001025 << CondTypeBeforePromotion;
Ted Kremenek47bb27f2010-09-09 06:53:59 +00001026 }
David Blaikie93667502012-01-22 02:31:55 +00001027
Chad Rosier1093f492012-08-10 17:56:09 +00001028 llvm::APSInt Hi =
David Blaikie93667502012-01-22 02:31:55 +00001029 RI->second->getRHS()->EvaluateKnownConstInt(Context);
1030 AdjustAPSInt(Hi, CondWidth, CondIsSigned);
1031 while (EI != EIend && EI->first < Hi)
1032 EI++;
1033 if (EI == EIend || EI->first != Hi)
1034 Diag(RI->second->getRHS()->getExprLoc(), diag::warn_not_in_enum)
Fariborz Jahanian54faba42012-03-21 20:56:29 +00001035 << CondTypeBeforePromotion;
Douglas Gregorba915af2010-02-08 22:24:16 +00001036 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001037
Ted Kremenek559fb552010-09-09 00:05:53 +00001038 // Check which enum vals aren't in switch
Douglas Gregorba915af2010-02-08 22:24:16 +00001039 CaseValsTy::const_iterator CI = CaseVals.begin();
1040 CaseRangesTy::const_iterator RI = CaseRanges.begin();
Ted Kremenek559fb552010-09-09 00:05:53 +00001041 bool hasCasesNotInSwitch = false;
1042
Chris Lattner5f9e2722011-07-23 10:55:15 +00001043 SmallVector<DeclarationName,8> UnhandledNames;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001044
David Blaikie93667502012-01-22 02:31:55 +00001045 for (EI = EnumVals.begin(); EI != EIend; EI++){
Chris Lattnerce784612010-09-16 17:09:42 +00001046 // Drop unneeded case values
Douglas Gregorba915af2010-02-08 22:24:16 +00001047 llvm::APSInt CIVal;
1048 while (CI != CaseVals.end() && CI->first < EI->first)
1049 CI++;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001050
Douglas Gregorba915af2010-02-08 22:24:16 +00001051 if (CI != CaseVals.end() && CI->first == EI->first)
1052 continue;
1053
Ted Kremenek559fb552010-09-09 00:05:53 +00001054 // Drop unneeded case ranges
Douglas Gregorba915af2010-02-08 22:24:16 +00001055 for (; RI != CaseRanges.end(); RI++) {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001056 llvm::APSInt Hi =
1057 RI->second->getRHS()->EvaluateKnownConstInt(Context);
Gabor Greif28164ab2010-10-01 22:05:14 +00001058 AdjustAPSInt(Hi, CondWidth, CondIsSigned);
Douglas Gregorba915af2010-02-08 22:24:16 +00001059 if (EI->first <= Hi)
1060 break;
1061 }
1062
Ted Kremenek559fb552010-09-09 00:05:53 +00001063 if (RI == CaseRanges.end() || EI->first < RI->first) {
Ted Kremenek47bb27f2010-09-09 06:53:59 +00001064 hasCasesNotInSwitch = true;
David Blaikie31ceb612012-01-21 18:12:07 +00001065 UnhandledNames.push_back(EI->second->getDeclName());
Ted Kremenek47bb27f2010-09-09 06:53:59 +00001066 }
Douglas Gregorba915af2010-02-08 22:24:16 +00001067 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001068
David Blaikie585d7792012-01-23 04:46:12 +00001069 if (TheDefaultStmt && UnhandledNames.empty())
1070 Diag(TheDefaultStmt->getDefaultLoc(), diag::warn_unreachable_default);
David Blaikie31ceb612012-01-21 18:12:07 +00001071
Chris Lattnerce784612010-09-16 17:09:42 +00001072 // Produce a nice diagnostic if multiple values aren't handled.
1073 switch (UnhandledNames.size()) {
1074 case 0: break;
1075 case 1:
Chad Rosier1093f492012-08-10 17:56:09 +00001076 Diag(CondExpr->getExprLoc(), TheDefaultStmt
David Blaikie585d7792012-01-23 04:46:12 +00001077 ? diag::warn_def_missing_case1 : diag::warn_missing_case1)
Chris Lattnerce784612010-09-16 17:09:42 +00001078 << UnhandledNames[0];
1079 break;
1080 case 2:
Chad Rosier1093f492012-08-10 17:56:09 +00001081 Diag(CondExpr->getExprLoc(), TheDefaultStmt
David Blaikie585d7792012-01-23 04:46:12 +00001082 ? diag::warn_def_missing_case2 : diag::warn_missing_case2)
Chris Lattnerce784612010-09-16 17:09:42 +00001083 << UnhandledNames[0] << UnhandledNames[1];
1084 break;
1085 case 3:
David Blaikie585d7792012-01-23 04:46:12 +00001086 Diag(CondExpr->getExprLoc(), TheDefaultStmt
1087 ? diag::warn_def_missing_case3 : diag::warn_missing_case3)
Chris Lattnerce784612010-09-16 17:09:42 +00001088 << UnhandledNames[0] << UnhandledNames[1] << UnhandledNames[2];
1089 break;
1090 default:
David Blaikie585d7792012-01-23 04:46:12 +00001091 Diag(CondExpr->getExprLoc(), TheDefaultStmt
1092 ? diag::warn_def_missing_cases : diag::warn_missing_cases)
Chris Lattnerce784612010-09-16 17:09:42 +00001093 << (unsigned)UnhandledNames.size()
1094 << UnhandledNames[0] << UnhandledNames[1] << UnhandledNames[2];
1095 break;
1096 }
Ted Kremenek559fb552010-09-09 00:05:53 +00001097
1098 if (!hasCasesNotInSwitch)
Ted Kremenek47bb27f2010-09-09 06:53:59 +00001099 SS->setAllEnumCasesCovered();
Douglas Gregorba915af2010-02-08 22:24:16 +00001100 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +00001101 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +00001102
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001103 DiagnoseEmptyStmtBody(CondExpr->getLocEnd(), BodyStmt,
1104 diag::warn_empty_switch_body);
1105
Mike Stump390b4cc2009-05-16 07:39:55 +00001106 // FIXME: If the case list was broken is some way, we don't have a good system
1107 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +00001108 if (CaseListIsErroneous)
Sebastian Redlde307472009-01-11 00:38:46 +00001109 return StmtError();
1110
Sebastian Redlde307472009-01-11 00:38:46 +00001111 return Owned(SS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001112}
1113
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001114void
1115Sema::DiagnoseAssignmentEnum(QualType DstType, QualType SrcType,
1116 Expr *SrcExpr) {
Joey Gouly48a1e812013-06-06 13:48:00 +00001117 if (Diags.getDiagnosticLevel(diag::warn_not_in_enum_assignment,
1118 SrcExpr->getExprLoc()) ==
1119 DiagnosticsEngine::Ignored)
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001120 return;
Chad Rosier1093f492012-08-10 17:56:09 +00001121
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001122 if (const EnumType *ET = DstType->getAs<EnumType>())
1123 if (!Context.hasSameType(SrcType, DstType) &&
1124 SrcType->isIntegerType()) {
1125 if (!SrcExpr->isTypeDependent() && !SrcExpr->isValueDependent() &&
1126 SrcExpr->isIntegerConstantExpr(Context)) {
1127 // Get the bitwidth of the enum value before promotions.
Joey Gouly48a1e812013-06-06 13:48:00 +00001128 unsigned DstWidth = Context.getIntWidth(DstType);
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001129 bool DstIsSigned = DstType->isSignedIntegerOrEnumerationType();
1130
1131 llvm::APSInt RhsVal = SrcExpr->EvaluateKnownConstInt(Context);
Joey Gouly48a1e812013-06-06 13:48:00 +00001132 AdjustAPSInt(RhsVal, DstWidth, DstIsSigned);
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001133 const EnumDecl *ED = ET->getDecl();
Joey Gouly48a1e812013-06-06 13:48:00 +00001134 typedef SmallVector<std::pair<llvm::APSInt, EnumConstantDecl *>, 64>
1135 EnumValsTy;
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001136 EnumValsTy EnumVals;
Chad Rosier1093f492012-08-10 17:56:09 +00001137
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001138 // Gather all enum values, set their type and sort them,
1139 // allowing easier comparison with rhs constant.
1140 for (EnumDecl::enumerator_iterator EDI = ED->enumerator_begin();
1141 EDI != ED->enumerator_end(); ++EDI) {
1142 llvm::APSInt Val = EDI->getInitVal();
Joey Gouly48a1e812013-06-06 13:48:00 +00001143 AdjustAPSInt(Val, DstWidth, DstIsSigned);
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001144 EnumVals.push_back(std::make_pair(Val, *EDI));
1145 }
1146 if (EnumVals.empty())
1147 return;
1148 std::stable_sort(EnumVals.begin(), EnumVals.end(), CmpEnumVals);
1149 EnumValsTy::iterator EIend =
Joey Gouly48a1e812013-06-06 13:48:00 +00001150 std::unique(EnumVals.begin(), EnumVals.end(), EqEnumVals);
Chad Rosier1093f492012-08-10 17:56:09 +00001151
Joey Gouly48a1e812013-06-06 13:48:00 +00001152 // See which values aren't in the enum.
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001153 EnumValsTy::const_iterator EI = EnumVals.begin();
1154 while (EI != EIend && EI->first < RhsVal)
1155 EI++;
1156 if (EI == EIend || EI->first != RhsVal) {
Joey Gouly48a1e812013-06-06 13:48:00 +00001157 Diag(SrcExpr->getExprLoc(), diag::warn_not_in_enum_assignment)
Fariborz Jahanian379b2812012-07-17 18:00:08 +00001158 << DstType;
1159 }
1160 }
1161 }
1162}
1163
John McCall60d7b3a2010-08-24 06:29:42 +00001164StmtResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001165Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond,
John McCall9ae2f072010-08-23 23:25:46 +00001166 Decl *CondVar, Stmt *Body) {
John McCall60d7b3a2010-08-24 06:29:42 +00001167 ExprResult CondResult(Cond.release());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001168
Douglas Gregor5656e142009-11-24 21:15:44 +00001169 VarDecl *ConditionVar = 0;
John McCalld226f652010-08-21 09:40:31 +00001170 if (CondVar) {
1171 ConditionVar = cast<VarDecl>(CondVar);
Douglas Gregor586596f2010-05-06 17:25:47 +00001172 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001173 if (CondResult.isInvalid())
1174 return StmtError();
Douglas Gregor5656e142009-11-24 21:15:44 +00001175 }
John McCall9ae2f072010-08-23 23:25:46 +00001176 Expr *ConditionExpr = CondResult.take();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001177 if (!ConditionExpr)
1178 return StmtError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001179
John McCall9ae2f072010-08-23 23:25:46 +00001180 DiagnoseUnusedExprResult(Body);
Mike Stump1eb44332009-09-09 15:08:12 +00001181
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001182 if (isa<NullStmt>(Body))
1183 getCurCompoundScope().setHasEmptyLoopBodies();
1184
Douglas Gregor43dec6b2010-06-21 23:44:13 +00001185 return Owned(new (Context) WhileStmt(Context, ConditionVar, ConditionExpr,
John McCall9ae2f072010-08-23 23:25:46 +00001186 Body, WhileLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001187}
1188
John McCall60d7b3a2010-08-24 06:29:42 +00001189StmtResult
John McCall9ae2f072010-08-23 23:25:46 +00001190Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
Chris Lattner98913592009-06-12 23:04:47 +00001191 SourceLocation WhileLoc, SourceLocation CondLParen,
John McCall9ae2f072010-08-23 23:25:46 +00001192 Expr *Cond, SourceLocation CondRParen) {
1193 assert(Cond && "ActOnDoStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +00001194
John Wiegley429bb272011-04-08 18:41:53 +00001195 ExprResult CondResult = CheckBooleanCondition(Cond, DoLoc);
Dmitri Gribenko898a7a22012-11-18 22:28:42 +00001196 if (CondResult.isInvalid())
John McCall5a881bb2009-10-12 21:59:07 +00001197 return StmtError();
John Wiegley429bb272011-04-08 18:41:53 +00001198 Cond = CondResult.take();
Reid Spencer5f016e22007-07-11 17:01:13 +00001199
Richard Smith41956372013-01-14 22:39:08 +00001200 CondResult = ActOnFinishFullExpr(Cond, DoLoc);
John McCall9ae2f072010-08-23 23:25:46 +00001201 if (CondResult.isInvalid())
Douglas Gregor586596f2010-05-06 17:25:47 +00001202 return StmtError();
John McCall9ae2f072010-08-23 23:25:46 +00001203 Cond = CondResult.take();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001204
John McCall9ae2f072010-08-23 23:25:46 +00001205 DiagnoseUnusedExprResult(Body);
Anders Carlsson75443112009-07-30 22:39:03 +00001206
John McCall9ae2f072010-08-23 23:25:46 +00001207 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
Reid Spencer5f016e22007-07-11 17:01:13 +00001208}
1209
Richard Trieu694e7962012-04-30 18:01:30 +00001210namespace {
1211 // This visitor will traverse a conditional statement and store all
1212 // the evaluated decls into a vector. Simple is set to true if none
1213 // of the excluded constructs are used.
1214 class DeclExtractor : public EvaluatedExprVisitor<DeclExtractor> {
1215 llvm::SmallPtrSet<VarDecl*, 8> &Decls;
Craig Topperad5b69d2013-07-14 16:47:36 +00001216 SmallVectorImpl<SourceRange> &Ranges;
Richard Trieu694e7962012-04-30 18:01:30 +00001217 bool Simple;
Richard Trieu923cada2013-05-31 22:46:45 +00001218 public:
1219 typedef EvaluatedExprVisitor<DeclExtractor> Inherited;
Richard Trieu694e7962012-04-30 18:01:30 +00001220
Richard Trieu923cada2013-05-31 22:46:45 +00001221 DeclExtractor(Sema &S, llvm::SmallPtrSet<VarDecl*, 8> &Decls,
Craig Topperad5b69d2013-07-14 16:47:36 +00001222 SmallVectorImpl<SourceRange> &Ranges) :
Richard Trieu923cada2013-05-31 22:46:45 +00001223 Inherited(S.Context),
1224 Decls(Decls),
1225 Ranges(Ranges),
1226 Simple(true) {}
Richard Trieu694e7962012-04-30 18:01:30 +00001227
Richard Trieu923cada2013-05-31 22:46:45 +00001228 bool isSimple() { return Simple; }
Richard Trieu694e7962012-04-30 18:01:30 +00001229
Richard Trieu923cada2013-05-31 22:46:45 +00001230 // Replaces the method in EvaluatedExprVisitor.
1231 void VisitMemberExpr(MemberExpr* E) {
Richard Trieu694e7962012-04-30 18:01:30 +00001232 Simple = false;
Richard Trieu923cada2013-05-31 22:46:45 +00001233 }
1234
1235 // Any Stmt not whitelisted will cause the condition to be marked complex.
1236 void VisitStmt(Stmt *S) {
1237 Simple = false;
1238 }
1239
1240 void VisitBinaryOperator(BinaryOperator *E) {
1241 Visit(E->getLHS());
1242 Visit(E->getRHS());
1243 }
1244
1245 void VisitCastExpr(CastExpr *E) {
Richard Trieu694e7962012-04-30 18:01:30 +00001246 Visit(E->getSubExpr());
Richard Trieu923cada2013-05-31 22:46:45 +00001247 }
Richard Trieu694e7962012-04-30 18:01:30 +00001248
Richard Trieu923cada2013-05-31 22:46:45 +00001249 void VisitUnaryOperator(UnaryOperator *E) {
1250 // Skip checking conditionals with derefernces.
1251 if (E->getOpcode() == UO_Deref)
1252 Simple = false;
1253 else
1254 Visit(E->getSubExpr());
1255 }
Richard Trieu694e7962012-04-30 18:01:30 +00001256
Richard Trieu923cada2013-05-31 22:46:45 +00001257 void VisitConditionalOperator(ConditionalOperator *E) {
1258 Visit(E->getCond());
1259 Visit(E->getTrueExpr());
1260 Visit(E->getFalseExpr());
1261 }
Richard Trieu694e7962012-04-30 18:01:30 +00001262
Richard Trieu923cada2013-05-31 22:46:45 +00001263 void VisitParenExpr(ParenExpr *E) {
1264 Visit(E->getSubExpr());
1265 }
Richard Trieu694e7962012-04-30 18:01:30 +00001266
Richard Trieu923cada2013-05-31 22:46:45 +00001267 void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
1268 Visit(E->getOpaqueValue()->getSourceExpr());
1269 Visit(E->getFalseExpr());
1270 }
Richard Trieu694e7962012-04-30 18:01:30 +00001271
Richard Trieu923cada2013-05-31 22:46:45 +00001272 void VisitIntegerLiteral(IntegerLiteral *E) { }
1273 void VisitFloatingLiteral(FloatingLiteral *E) { }
1274 void VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { }
1275 void VisitCharacterLiteral(CharacterLiteral *E) { }
1276 void VisitGNUNullExpr(GNUNullExpr *E) { }
1277 void VisitImaginaryLiteral(ImaginaryLiteral *E) { }
Richard Trieu694e7962012-04-30 18:01:30 +00001278
Richard Trieu923cada2013-05-31 22:46:45 +00001279 void VisitDeclRefExpr(DeclRefExpr *E) {
1280 VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
1281 if (!VD) return;
Richard Trieu694e7962012-04-30 18:01:30 +00001282
Richard Trieu923cada2013-05-31 22:46:45 +00001283 Ranges.push_back(E->getSourceRange());
1284
1285 Decls.insert(VD);
1286 }
Richard Trieu694e7962012-04-30 18:01:30 +00001287
1288 }; // end class DeclExtractor
1289
1290 // DeclMatcher checks to see if the decls are used in a non-evauluated
Chad Rosier1093f492012-08-10 17:56:09 +00001291 // context.
Richard Trieu694e7962012-04-30 18:01:30 +00001292 class DeclMatcher : public EvaluatedExprVisitor<DeclMatcher> {
1293 llvm::SmallPtrSet<VarDecl*, 8> &Decls;
1294 bool FoundDecl;
Richard Trieu694e7962012-04-30 18:01:30 +00001295
Richard Trieu923cada2013-05-31 22:46:45 +00001296 public:
1297 typedef EvaluatedExprVisitor<DeclMatcher> Inherited;
Richard Trieu694e7962012-04-30 18:01:30 +00001298
Richard Trieu923cada2013-05-31 22:46:45 +00001299 DeclMatcher(Sema &S, llvm::SmallPtrSet<VarDecl*, 8> &Decls,
1300 Stmt *Statement) :
1301 Inherited(S.Context), Decls(Decls), FoundDecl(false) {
1302 if (!Statement) return;
Richard Trieu694e7962012-04-30 18:01:30 +00001303
Richard Trieu923cada2013-05-31 22:46:45 +00001304 Visit(Statement);
Richard Trieu694e7962012-04-30 18:01:30 +00001305 }
1306
Richard Trieu923cada2013-05-31 22:46:45 +00001307 void VisitReturnStmt(ReturnStmt *S) {
1308 FoundDecl = true;
Richard Trieu694e7962012-04-30 18:01:30 +00001309 }
1310
Richard Trieu923cada2013-05-31 22:46:45 +00001311 void VisitBreakStmt(BreakStmt *S) {
1312 FoundDecl = true;
Richard Trieu694e7962012-04-30 18:01:30 +00001313 }
1314
Richard Trieu923cada2013-05-31 22:46:45 +00001315 void VisitGotoStmt(GotoStmt *S) {
1316 FoundDecl = true;
1317 }
Richard Trieu694e7962012-04-30 18:01:30 +00001318
Richard Trieu923cada2013-05-31 22:46:45 +00001319 void VisitCastExpr(CastExpr *E) {
1320 if (E->getCastKind() == CK_LValueToRValue)
1321 CheckLValueToRValueCast(E->getSubExpr());
1322 else
1323 Visit(E->getSubExpr());
1324 }
Richard Trieu694e7962012-04-30 18:01:30 +00001325
Richard Trieu923cada2013-05-31 22:46:45 +00001326 void CheckLValueToRValueCast(Expr *E) {
1327 E = E->IgnoreParenImpCasts();
1328
1329 if (isa<DeclRefExpr>(E)) {
1330 return;
1331 }
1332
1333 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1334 Visit(CO->getCond());
1335 CheckLValueToRValueCast(CO->getTrueExpr());
1336 CheckLValueToRValueCast(CO->getFalseExpr());
1337 return;
1338 }
1339
1340 if (BinaryConditionalOperator *BCO =
1341 dyn_cast<BinaryConditionalOperator>(E)) {
1342 CheckLValueToRValueCast(BCO->getOpaqueValue()->getSourceExpr());
1343 CheckLValueToRValueCast(BCO->getFalseExpr());
1344 return;
1345 }
1346
1347 Visit(E);
1348 }
1349
1350 void VisitDeclRefExpr(DeclRefExpr *E) {
1351 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
1352 if (Decls.count(VD))
1353 FoundDecl = true;
1354 }
1355
1356 bool FoundDeclInUse() { return FoundDecl; }
Richard Trieu694e7962012-04-30 18:01:30 +00001357
1358 }; // end class DeclMatcher
1359
1360 void CheckForLoopConditionalStatement(Sema &S, Expr *Second,
1361 Expr *Third, Stmt *Body) {
1362 // Condition is empty
1363 if (!Second) return;
1364
1365 if (S.Diags.getDiagnosticLevel(diag::warn_variables_not_in_loop_body,
1366 Second->getLocStart())
1367 == DiagnosticsEngine::Ignored)
1368 return;
1369
1370 PartialDiagnostic PDiag = S.PDiag(diag::warn_variables_not_in_loop_body);
1371 llvm::SmallPtrSet<VarDecl*, 8> Decls;
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001372 SmallVector<SourceRange, 10> Ranges;
Benjamin Kramerfacde172012-06-06 17:32:50 +00001373 DeclExtractor DE(S, Decls, Ranges);
Richard Trieu694e7962012-04-30 18:01:30 +00001374 DE.Visit(Second);
1375
1376 // Don't analyze complex conditionals.
1377 if (!DE.isSimple()) return;
1378
1379 // No decls found.
1380 if (Decls.size() == 0) return;
1381
Richard Trieu90875992012-05-04 03:01:54 +00001382 // Don't warn on volatile, static, or global variables.
Richard Trieu694e7962012-04-30 18:01:30 +00001383 for (llvm::SmallPtrSet<VarDecl*, 8>::iterator I = Decls.begin(),
1384 E = Decls.end();
1385 I != E; ++I)
Richard Trieu90875992012-05-04 03:01:54 +00001386 if ((*I)->getType().isVolatileQualified() ||
1387 (*I)->hasGlobalStorage()) return;
Richard Trieu694e7962012-04-30 18:01:30 +00001388
1389 if (DeclMatcher(S, Decls, Second).FoundDeclInUse() ||
1390 DeclMatcher(S, Decls, Third).FoundDeclInUse() ||
1391 DeclMatcher(S, Decls, Body).FoundDeclInUse())
1392 return;
1393
1394 // Load decl names into diagnostic.
1395 if (Decls.size() > 4)
1396 PDiag << 0;
1397 else {
1398 PDiag << Decls.size();
1399 for (llvm::SmallPtrSet<VarDecl*, 8>::iterator I = Decls.begin(),
1400 E = Decls.end();
1401 I != E; ++I)
1402 PDiag << (*I)->getDeclName();
1403 }
1404
1405 // Load SourceRanges into diagnostic if there is room.
1406 // Otherwise, load the SourceRange of the conditional expression.
1407 if (Ranges.size() <= PartialDiagnostic::MaxArguments)
Craig Topper09d19ef2013-07-04 03:08:24 +00001408 for (SmallVectorImpl<SourceRange>::iterator I = Ranges.begin(),
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001409 E = Ranges.end();
Richard Trieu694e7962012-04-30 18:01:30 +00001410 I != E; ++I)
1411 PDiag << *I;
1412 else
1413 PDiag << Second->getSourceRange();
1414
1415 S.Diag(Ranges.begin()->getBegin(), PDiag);
1416 }
1417
Richard Trieuacdbbc72013-08-06 21:31:54 +00001418 // If Statement is an incemement or decrement, return true and sets the
1419 // variables Increment and DRE.
1420 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment,
1421 DeclRefExpr *&DRE) {
1422 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) {
1423 switch (UO->getOpcode()) {
1424 default: return false;
1425 case UO_PostInc:
1426 case UO_PreInc:
1427 Increment = true;
1428 break;
1429 case UO_PostDec:
1430 case UO_PreDec:
1431 Increment = false;
1432 break;
1433 }
1434 DRE = dyn_cast<DeclRefExpr>(UO->getSubExpr());
1435 return DRE;
1436 }
1437
1438 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) {
1439 FunctionDecl *FD = Call->getDirectCallee();
1440 if (!FD || !FD->isOverloadedOperator()) return false;
1441 switch (FD->getOverloadedOperator()) {
1442 default: return false;
1443 case OO_PlusPlus:
1444 Increment = true;
1445 break;
1446 case OO_MinusMinus:
1447 Increment = false;
1448 break;
1449 }
1450 DRE = dyn_cast<DeclRefExpr>(Call->getArg(0));
1451 return DRE;
1452 }
1453
1454 return false;
1455 }
1456
1457 // A visitor to determine if a continue statement is a subexpression.
1458 class ContinueFinder : public EvaluatedExprVisitor<ContinueFinder> {
1459 bool Found;
1460 public:
1461 ContinueFinder(Sema &S, Stmt* Body) :
1462 Inherited(S.Context),
1463 Found(false) {
1464 Visit(Body);
1465 }
1466
1467 typedef EvaluatedExprVisitor<ContinueFinder> Inherited;
1468
1469 void VisitContinueStmt(ContinueStmt* E) {
1470 Found = true;
1471 }
1472
1473 bool ContinueFound() { return Found; }
1474
1475 }; // end class ContinueFinder
1476
1477 // Emit a warning when a loop increment/decrement appears twice per loop
1478 // iteration. The conditions which trigger this warning are:
1479 // 1) The last statement in the loop body and the third expression in the
1480 // for loop are both increment or both decrement of the same variable
1481 // 2) No continue statements in the loop body.
1482 void CheckForRedundantIteration(Sema &S, Expr *Third, Stmt *Body) {
1483 // Return when there is nothing to check.
1484 if (!Body || !Third) return;
1485
1486 if (S.Diags.getDiagnosticLevel(diag::warn_redundant_loop_iteration,
1487 Third->getLocStart())
1488 == DiagnosticsEngine::Ignored)
1489 return;
1490
1491 // Get the last statement from the loop body.
1492 CompoundStmt *CS = dyn_cast<CompoundStmt>(Body);
1493 if (!CS || CS->body_empty()) return;
1494 Stmt *LastStmt = CS->body_back();
1495 if (!LastStmt) return;
1496
1497 bool LoopIncrement, LastIncrement;
1498 DeclRefExpr *LoopDRE, *LastDRE;
1499
1500 if (!ProcessIterationStmt(S, Third, LoopIncrement, LoopDRE)) return;
1501 if (!ProcessIterationStmt(S, LastStmt, LastIncrement, LastDRE)) return;
1502
1503 // Check that the two statements are both increments or both decrements
1504 // on the same varaible.
1505 if (LoopIncrement != LastIncrement ||
1506 LoopDRE->getDecl() != LastDRE->getDecl()) return;
1507
1508 if (ContinueFinder(S, Body).ContinueFound()) return;
1509
1510 S.Diag(LastDRE->getLocation(), diag::warn_redundant_loop_iteration)
1511 << LastDRE->getDecl() << LastIncrement;
1512 S.Diag(LoopDRE->getLocation(), diag::note_loop_iteration_here)
1513 << LoopIncrement;
1514 }
1515
Richard Trieu694e7962012-04-30 18:01:30 +00001516} // end namespace
1517
John McCall60d7b3a2010-08-24 06:29:42 +00001518StmtResult
Sebastian Redlf05b1522009-01-16 23:28:06 +00001519Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001520 Stmt *First, FullExprArg second, Decl *secondVar,
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001521 FullExprArg third,
John McCall9ae2f072010-08-23 23:25:46 +00001522 SourceLocation RParenLoc, Stmt *Body) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001523 if (!getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001524 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001525 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
1526 // declare identifiers for objects having storage class 'auto' or
1527 // 'register'.
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001528 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
1529 DI!=DE; ++DI) {
1530 VarDecl *VD = dyn_cast<VarDecl>(*DI);
John McCallb6bbcc92010-10-15 04:57:14 +00001531 if (VD && VD->isLocalVarDecl() && !VD->hasLocalStorage())
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001532 VD = 0;
Douglas Gregor12849d02013-04-08 20:52:24 +00001533 if (VD == 0) {
1534 Diag((*DI)->getLocation(), diag::err_non_local_variable_decl_in_for);
1535 (*DI)->setInvalidDecl();
1536 }
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001537 }
Chris Lattnerae3b7012007-08-28 05:03:08 +00001538 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001539 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001540
Richard Trieu694e7962012-04-30 18:01:30 +00001541 CheckForLoopConditionalStatement(*this, second.get(), third.get(), Body);
Richard Trieuacdbbc72013-08-06 21:31:54 +00001542 CheckForRedundantIteration(*this, third.get(), Body);
Richard Trieu694e7962012-04-30 18:01:30 +00001543
John McCall60d7b3a2010-08-24 06:29:42 +00001544 ExprResult SecondResult(second.release());
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001545 VarDecl *ConditionVar = 0;
John McCalld226f652010-08-21 09:40:31 +00001546 if (secondVar) {
1547 ConditionVar = cast<VarDecl>(secondVar);
Douglas Gregor586596f2010-05-06 17:25:47 +00001548 SecondResult = CheckConditionVariable(ConditionVar, ForLoc, true);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001549 if (SecondResult.isInvalid())
1550 return StmtError();
1551 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001552
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00001553 Expr *Third = third.release().takeAs<Expr>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001554
Anders Carlsson3af708f2009-08-01 01:39:59 +00001555 DiagnoseUnusedExprResult(First);
1556 DiagnoseUnusedExprResult(Third);
Anders Carlsson75443112009-07-30 22:39:03 +00001557 DiagnoseUnusedExprResult(Body);
1558
Dmitri Gribenko625bb562012-02-14 22:14:32 +00001559 if (isa<NullStmt>(Body))
1560 getCurCompoundScope().setHasEmptyLoopBodies();
1561
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001562 return Owned(new (Context) ForStmt(Context, First,
1563 SecondResult.take(), ConditionVar,
1564 Third, Body, ForLoc, LParenLoc,
Douglas Gregor43dec6b2010-06-21 23:44:13 +00001565 RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001566}
1567
John McCallf6a16482010-12-04 03:47:34 +00001568/// In an Objective C collection iteration statement:
1569/// for (x in y)
1570/// x can be an arbitrary l-value expression. Bind it up as a
1571/// full-expression.
1572StmtResult Sema::ActOnForEachLValueExpr(Expr *E) {
John McCall29bbd1a2012-03-30 05:43:39 +00001573 // Reduce placeholder expressions here. Note that this rejects the
1574 // use of pseudo-object l-values in this position.
1575 ExprResult result = CheckPlaceholderExpr(E);
1576 if (result.isInvalid()) return StmtError();
1577 E = result.take();
1578
Richard Smith41956372013-01-14 22:39:08 +00001579 ExprResult FullExpr = ActOnFinishFullExpr(E);
1580 if (FullExpr.isInvalid())
1581 return StmtError();
1582 return StmtResult(static_cast<Stmt*>(FullExpr.take()));
John McCallf6a16482010-12-04 03:47:34 +00001583}
1584
John McCall990567c2011-07-27 01:07:15 +00001585ExprResult
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001586Sema::CheckObjCForCollectionOperand(SourceLocation forLoc, Expr *collection) {
1587 if (!collection)
1588 return ExprError();
Chad Rosier1093f492012-08-10 17:56:09 +00001589
John McCall990567c2011-07-27 01:07:15 +00001590 // Bail out early if we've got a type-dependent expression.
1591 if (collection->isTypeDependent()) return Owned(collection);
1592
1593 // Perform normal l-value conversion.
1594 ExprResult result = DefaultFunctionArrayLvalueConversion(collection);
1595 if (result.isInvalid())
1596 return ExprError();
1597 collection = result.take();
1598
1599 // The operand needs to have object-pointer type.
1600 // TODO: should we do a contextual conversion?
1601 const ObjCObjectPointerType *pointerType =
1602 collection->getType()->getAs<ObjCObjectPointerType>();
1603 if (!pointerType)
1604 return Diag(forLoc, diag::err_collection_expr_type)
1605 << collection->getType() << collection->getSourceRange();
1606
1607 // Check that the operand provides
1608 // - countByEnumeratingWithState:objects:count:
1609 const ObjCObjectType *objectType = pointerType->getObjectType();
1610 ObjCInterfaceDecl *iface = objectType->getInterface();
1611
1612 // If we have a forward-declared type, we can't do this check.
Douglas Gregorb3029962011-11-14 22:10:01 +00001613 // Under ARC, it is an error not to have a forward-declared class.
Chad Rosier1093f492012-08-10 17:56:09 +00001614 if (iface &&
Douglas Gregorb3029962011-11-14 22:10:01 +00001615 RequireCompleteType(forLoc, QualType(objectType, 0),
David Blaikie4e4d0842012-03-11 07:00:24 +00001616 getLangOpts().ObjCAutoRefCount
Douglas Gregord10099e2012-05-04 16:32:21 +00001617 ? diag::err_arc_collection_forward
1618 : 0,
1619 collection)) {
John McCall990567c2011-07-27 01:07:15 +00001620 // Otherwise, if we have any useful type information, check that
1621 // the type declares the appropriate method.
1622 } else if (iface || !objectType->qual_empty()) {
1623 IdentifierInfo *selectorIdents[] = {
1624 &Context.Idents.get("countByEnumeratingWithState"),
1625 &Context.Idents.get("objects"),
1626 &Context.Idents.get("count")
1627 };
1628 Selector selector = Context.Selectors.getSelector(3, &selectorIdents[0]);
1629
1630 ObjCMethodDecl *method = 0;
1631
1632 // If there's an interface, look in both the public and private APIs.
1633 if (iface) {
1634 method = iface->lookupInstanceMethod(selector);
Anna Zakse61354b2012-07-27 19:07:44 +00001635 if (!method) method = iface->lookupPrivateMethod(selector);
John McCall990567c2011-07-27 01:07:15 +00001636 }
1637
1638 // Also check protocol qualifiers.
1639 if (!method)
1640 method = LookupMethodInQualifiedType(selector, pointerType,
1641 /*instance*/ true);
1642
1643 // If we didn't find it anywhere, give up.
1644 if (!method) {
1645 Diag(forLoc, diag::warn_collection_expr_type)
1646 << collection->getType() << selector << collection->getSourceRange();
1647 }
1648
1649 // TODO: check for an incompatible signature?
1650 }
1651
1652 // Wrap up any cleanups in the expression.
Richard Smith41956372013-01-14 22:39:08 +00001653 return Owned(collection);
John McCall990567c2011-07-27 01:07:15 +00001654}
1655
John McCall60d7b3a2010-08-24 06:29:42 +00001656StmtResult
Sebastian Redlf05b1522009-01-16 23:28:06 +00001657Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001658 Stmt *First, Expr *collection,
1659 SourceLocation RParenLoc) {
Chad Rosier1093f492012-08-10 17:56:09 +00001660
1661 ExprResult CollectionExprResult =
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001662 CheckObjCForCollectionOperand(ForLoc, collection);
Chad Rosier1093f492012-08-10 17:56:09 +00001663
Fariborz Jahanian20552d22008-01-10 20:33:58 +00001664 if (First) {
1665 QualType FirstType;
1666 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner7e24e822009-03-28 06:33:19 +00001667 if (!DS->isSingleDecl())
Sebastian Redlf05b1522009-01-16 23:28:06 +00001668 return StmtError(Diag((*DS->decl_begin())->getLocation(),
1669 diag::err_toomany_element_decls));
1670
Douglas Gregor12849d02013-04-08 20:52:24 +00001671 VarDecl *D = dyn_cast<VarDecl>(DS->getSingleDecl());
1672 if (!D || D->isInvalidDecl())
1673 return StmtError();
1674
John McCallf85e1932011-06-15 23:02:42 +00001675 FirstType = D->getType();
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001676 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
1677 // declare identifiers for objects having storage class 'auto' or
1678 // 'register'.
John McCallf85e1932011-06-15 23:02:42 +00001679 if (!D->hasLocalStorage())
1680 return StmtError(Diag(D->getLocation(),
Douglas Gregor12849d02013-04-08 20:52:24 +00001681 diag::err_non_local_variable_decl_in_for));
Douglas Gregor1cd1f732013-04-08 18:25:02 +00001682
1683 // If the type contained 'auto', deduce the 'auto' to 'id'.
1684 if (FirstType->getContainedAutoType()) {
Douglas Gregor1cd1f732013-04-08 18:25:02 +00001685 OpaqueValueExpr OpaqueId(D->getLocation(), Context.getObjCIdType(),
1686 VK_RValue);
1687 Expr *DeducedInit = &OpaqueId;
Richard Smith9b131752013-04-30 21:23:01 +00001688 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) ==
1689 DAR_Failed)
Douglas Gregor1cd1f732013-04-08 18:25:02 +00001690 DiagnoseAutoDeductionFailure(D, DeducedInit);
Richard Smith9b131752013-04-30 21:23:01 +00001691 if (FirstType.isNull()) {
Douglas Gregor1cd1f732013-04-08 18:25:02 +00001692 D->setInvalidDecl();
1693 return StmtError();
1694 }
1695
Richard Smith9b131752013-04-30 21:23:01 +00001696 D->setType(FirstType);
Douglas Gregor1cd1f732013-04-08 18:25:02 +00001697
1698 if (ActiveTemplateInstantiations.empty()) {
Richard Smith9b131752013-04-30 21:23:01 +00001699 SourceLocation Loc =
1700 D->getTypeSourceInfo()->getTypeLoc().getBeginLoc();
Douglas Gregor1cd1f732013-04-08 18:25:02 +00001701 Diag(Loc, diag::warn_auto_var_is_id)
1702 << D->getDeclName();
1703 }
1704 }
1705
Anders Carlsson1fe379f2008-08-25 18:16:36 +00001706 } else {
Douglas Gregorc3203e72010-04-22 23:10:45 +00001707 Expr *FirstE = cast<Expr>(First);
John McCall7eb0a9e2010-11-24 05:12:34 +00001708 if (!FirstE->isTypeDependent() && !FirstE->isLValue())
Sebastian Redlf05b1522009-01-16 23:28:06 +00001709 return StmtError(Diag(First->getLocStart(),
1710 diag::err_selector_element_not_lvalue)
1711 << First->getSourceRange());
1712
Mike Stump1eb44332009-09-09 15:08:12 +00001713 FirstType = static_cast<Expr*>(First)->getType();
Fariborz Jahanian84e41cd2013-10-10 21:58:04 +00001714 if (FirstType.isConstQualified())
1715 Diag(ForLoc, diag::err_selector_element_const_type)
1716 << FirstType << First->getSourceRange();
Anders Carlsson1fe379f2008-08-25 18:16:36 +00001717 }
Douglas Gregorc3203e72010-04-22 23:10:45 +00001718 if (!FirstType->isDependentType() &&
1719 !FirstType->isObjCObjectPointerType() &&
Fariborz Jahaniana5e42a82009-08-14 21:53:27 +00001720 !FirstType->isBlockPointerType())
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001721 return StmtError(Diag(ForLoc, diag::err_selector_element_type)
1722 << FirstType << First->getSourceRange());
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001723 }
Chad Rosier1093f492012-08-10 17:56:09 +00001724
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00001725 if (CollectionExprResult.isInvalid())
1726 return StmtError();
Chad Rosier1093f492012-08-10 17:56:09 +00001727
Richard Smith41956372013-01-14 22:39:08 +00001728 CollectionExprResult = ActOnFinishFullExpr(CollectionExprResult.take());
1729 if (CollectionExprResult.isInvalid())
1730 return StmtError();
1731
Chad Rosier1093f492012-08-10 17:56:09 +00001732 return Owned(new (Context) ObjCForCollectionStmt(First,
1733 CollectionExprResult.take(), 0,
Ted Kremenek8189cde2009-02-07 01:47:29 +00001734 ForLoc, RParenLoc));
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +00001735}
Reid Spencer5f016e22007-07-11 17:01:13 +00001736
Richard Smithad762fc2011-04-14 22:09:26 +00001737/// Finish building a variable declaration for a for-range statement.
1738/// \return true if an error occurs.
1739static bool FinishForRangeVarDecl(Sema &SemaRef, VarDecl *Decl, Expr *Init,
Richard Smith9b131752013-04-30 21:23:01 +00001740 SourceLocation Loc, int DiagID) {
Richard Smithad762fc2011-04-14 22:09:26 +00001741 // Deduce the type for the iterator variable now rather than leaving it to
1742 // AddInitializerToDecl, so we can produce a more suitable diagnostic.
Richard Smith9b131752013-04-30 21:23:01 +00001743 QualType InitType;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00001744 if ((!isa<InitListExpr>(Init) && Init->getType()->isVoidType()) ||
Richard Smith9b131752013-04-30 21:23:01 +00001745 SemaRef.DeduceAutoType(Decl->getTypeSourceInfo(), Init, InitType) ==
Sebastian Redlb832f6d2012-01-23 22:09:39 +00001746 Sema::DAR_Failed)
Richard Smith9b131752013-04-30 21:23:01 +00001747 SemaRef.Diag(Loc, DiagID) << Init->getType();
1748 if (InitType.isNull()) {
Richard Smithad762fc2011-04-14 22:09:26 +00001749 Decl->setInvalidDecl();
1750 return true;
1751 }
Richard Smith9b131752013-04-30 21:23:01 +00001752 Decl->setType(InitType);
Richard Smithad762fc2011-04-14 22:09:26 +00001753
John McCallf85e1932011-06-15 23:02:42 +00001754 // In ARC, infer lifetime.
1755 // FIXME: ARC may want to turn this into 'const __unsafe_unretained' if
1756 // we're doing the equivalent of fast iteration.
Chad Rosier1093f492012-08-10 17:56:09 +00001757 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001758 SemaRef.inferObjCARCLifetime(Decl))
1759 Decl->setInvalidDecl();
1760
Richard Smithad762fc2011-04-14 22:09:26 +00001761 SemaRef.AddInitializerToDecl(Decl, Init, /*DirectInit=*/false,
1762 /*TypeMayContainAuto=*/false);
1763 SemaRef.FinalizeDeclaration(Decl);
Richard Smithb403d6d2011-04-18 15:49:25 +00001764 SemaRef.CurContext->addHiddenDecl(Decl);
Richard Smithad762fc2011-04-14 22:09:26 +00001765 return false;
1766}
1767
Sam Panzere1715b62012-08-21 00:52:01 +00001768namespace {
1769
Richard Smithad762fc2011-04-14 22:09:26 +00001770/// Produce a note indicating which begin/end function was implicitly called
Sam Panzere1715b62012-08-21 00:52:01 +00001771/// by a C++11 for-range statement. This is often not obvious from the code,
Richard Smithad762fc2011-04-14 22:09:26 +00001772/// nor from the diagnostics produced when analysing the implicit expressions
1773/// required in a for-range statement.
1774void NoteForRangeBeginEndFunction(Sema &SemaRef, Expr *E,
Sam Panzere1715b62012-08-21 00:52:01 +00001775 Sema::BeginEndFunction BEF) {
Richard Smithad762fc2011-04-14 22:09:26 +00001776 CallExpr *CE = dyn_cast<CallExpr>(E);
1777 if (!CE)
1778 return;
1779 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
1780 if (!D)
1781 return;
1782 SourceLocation Loc = D->getLocation();
1783
1784 std::string Description;
1785 bool IsTemplate = false;
1786 if (FunctionTemplateDecl *FunTmpl = D->getPrimaryTemplate()) {
1787 Description = SemaRef.getTemplateArgumentBindingsText(
1788 FunTmpl->getTemplateParameters(), *D->getTemplateSpecializationArgs());
1789 IsTemplate = true;
1790 }
1791
1792 SemaRef.Diag(Loc, diag::note_for_range_begin_end)
1793 << BEF << IsTemplate << Description << E->getType();
1794}
1795
Sam Panzere1715b62012-08-21 00:52:01 +00001796/// Build a variable declaration for a for-range statement.
1797VarDecl *BuildForRangeVarDecl(Sema &SemaRef, SourceLocation Loc,
1798 QualType Type, const char *Name) {
1799 DeclContext *DC = SemaRef.CurContext;
1800 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
1801 TypeSourceInfo *TInfo = SemaRef.Context.getTrivialTypeSourceInfo(Type, Loc);
1802 VarDecl *Decl = VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001803 TInfo, SC_None);
Sam Panzere1715b62012-08-21 00:52:01 +00001804 Decl->setImplicit();
1805 return Decl;
Richard Smithad762fc2011-04-14 22:09:26 +00001806}
1807
1808}
1809
Fariborz Jahanian4d3db4e2012-07-06 19:04:04 +00001810static bool ObjCEnumerationCollection(Expr *Collection) {
1811 return !Collection->isTypeDependent()
1812 && Collection->getType()->getAs<ObjCObjectPointerType>() != 0;
1813}
1814
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001815/// ActOnCXXForRangeStmt - Check and build a C++11 for-range statement.
Richard Smithad762fc2011-04-14 22:09:26 +00001816///
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001817/// C++11 [stmt.ranged]:
Richard Smithad762fc2011-04-14 22:09:26 +00001818/// A range-based for statement is equivalent to
1819///
1820/// {
1821/// auto && __range = range-init;
1822/// for ( auto __begin = begin-expr,
1823/// __end = end-expr;
1824/// __begin != __end;
1825/// ++__begin ) {
1826/// for-range-declaration = *__begin;
1827/// statement
1828/// }
1829/// }
1830///
1831/// The body of the loop is not available yet, since it cannot be analysed until
1832/// we have determined the type of the for-range-declaration.
1833StmtResult
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001834Sema::ActOnCXXForRangeStmt(SourceLocation ForLoc,
Richard Smithad762fc2011-04-14 22:09:26 +00001835 Stmt *First, SourceLocation ColonLoc, Expr *Range,
Richard Smith8b533d92012-09-20 21:52:32 +00001836 SourceLocation RParenLoc, BuildForRangeKind Kind) {
Richard Smith37aa0f72013-08-21 01:40:36 +00001837 if (!First)
Richard Smithad762fc2011-04-14 22:09:26 +00001838 return StmtError();
Chad Rosier1093f492012-08-10 17:56:09 +00001839
Richard Smith37aa0f72013-08-21 01:40:36 +00001840 if (Range && ObjCEnumerationCollection(Range))
Sam Panzerbc20bbb2012-08-16 21:47:25 +00001841 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc);
Richard Smithad762fc2011-04-14 22:09:26 +00001842
1843 DeclStmt *DS = dyn_cast<DeclStmt>(First);
1844 assert(DS && "first part of for range not a decl stmt");
1845
1846 if (!DS->isSingleDecl()) {
1847 Diag(DS->getStartLoc(), diag::err_type_defined_in_for_range);
1848 return StmtError();
1849 }
Richard Smithad762fc2011-04-14 22:09:26 +00001850
Richard Smith37aa0f72013-08-21 01:40:36 +00001851 Decl *LoopVar = DS->getSingleDecl();
1852 if (LoopVar->isInvalidDecl() || !Range ||
1853 DiagnoseUnexpandedParameterPack(Range, UPPC_Expression)) {
1854 LoopVar->setInvalidDecl();
Richard Smithad762fc2011-04-14 22:09:26 +00001855 return StmtError();
Richard Smith37aa0f72013-08-21 01:40:36 +00001856 }
Richard Smithad762fc2011-04-14 22:09:26 +00001857
1858 // Build auto && __range = range-init
1859 SourceLocation RangeLoc = Range->getLocStart();
1860 VarDecl *RangeVar = BuildForRangeVarDecl(*this, RangeLoc,
1861 Context.getAutoRRefDeductType(),
1862 "__range");
1863 if (FinishForRangeVarDecl(*this, RangeVar, Range, RangeLoc,
Richard Smith37aa0f72013-08-21 01:40:36 +00001864 diag::err_for_range_deduction_failure)) {
1865 LoopVar->setInvalidDecl();
Richard Smithad762fc2011-04-14 22:09:26 +00001866 return StmtError();
Richard Smith37aa0f72013-08-21 01:40:36 +00001867 }
Richard Smithad762fc2011-04-14 22:09:26 +00001868
1869 // Claim the type doesn't contain auto: we've already done the checking.
1870 DeclGroupPtrTy RangeGroup =
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001871 BuildDeclaratorGroup(llvm::MutableArrayRef<Decl *>((Decl **)&RangeVar, 1),
1872 /*TypeMayContainAuto=*/ false);
Richard Smithad762fc2011-04-14 22:09:26 +00001873 StmtResult RangeDecl = ActOnDeclStmt(RangeGroup, RangeLoc, RangeLoc);
Richard Smith37aa0f72013-08-21 01:40:36 +00001874 if (RangeDecl.isInvalid()) {
1875 LoopVar->setInvalidDecl();
Richard Smithad762fc2011-04-14 22:09:26 +00001876 return StmtError();
Richard Smith37aa0f72013-08-21 01:40:36 +00001877 }
Richard Smithad762fc2011-04-14 22:09:26 +00001878
1879 return BuildCXXForRangeStmt(ForLoc, ColonLoc, RangeDecl.get(),
1880 /*BeginEndDecl=*/0, /*Cond=*/0, /*Inc=*/0, DS,
Richard Smith8b533d92012-09-20 21:52:32 +00001881 RParenLoc, Kind);
Sam Panzere1715b62012-08-21 00:52:01 +00001882}
1883
1884/// \brief Create the initialization, compare, and increment steps for
1885/// the range-based for loop expression.
1886/// This function does not handle array-based for loops,
1887/// which are created in Sema::BuildCXXForRangeStmt.
1888///
1889/// \returns a ForRangeStatus indicating success or what kind of error occurred.
1890/// BeginExpr and EndExpr are set and FRS_Success is returned on success;
1891/// CandidateSet and BEF are set and some non-success value is returned on
1892/// failure.
1893static Sema::ForRangeStatus BuildNonArrayForRange(Sema &SemaRef, Scope *S,
1894 Expr *BeginRange, Expr *EndRange,
1895 QualType RangeType,
1896 VarDecl *BeginVar,
1897 VarDecl *EndVar,
1898 SourceLocation ColonLoc,
1899 OverloadCandidateSet *CandidateSet,
1900 ExprResult *BeginExpr,
1901 ExprResult *EndExpr,
1902 Sema::BeginEndFunction *BEF) {
1903 DeclarationNameInfo BeginNameInfo(
1904 &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc);
1905 DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"),
1906 ColonLoc);
1907
1908 LookupResult BeginMemberLookup(SemaRef, BeginNameInfo,
1909 Sema::LookupMemberName);
1910 LookupResult EndMemberLookup(SemaRef, EndNameInfo, Sema::LookupMemberName);
1911
1912 if (CXXRecordDecl *D = RangeType->getAsCXXRecordDecl()) {
1913 // - if _RangeT is a class type, the unqualified-ids begin and end are
1914 // looked up in the scope of class _RangeT as if by class member access
1915 // lookup (3.4.5), and if either (or both) finds at least one
1916 // declaration, begin-expr and end-expr are __range.begin() and
1917 // __range.end(), respectively;
1918 SemaRef.LookupQualifiedName(BeginMemberLookup, D);
1919 SemaRef.LookupQualifiedName(EndMemberLookup, D);
1920
1921 if (BeginMemberLookup.empty() != EndMemberLookup.empty()) {
1922 SourceLocation RangeLoc = BeginVar->getLocation();
1923 *BEF = BeginMemberLookup.empty() ? Sema::BEF_end : Sema::BEF_begin;
1924
1925 SemaRef.Diag(RangeLoc, diag::err_for_range_member_begin_end_mismatch)
1926 << RangeLoc << BeginRange->getType() << *BEF;
1927 return Sema::FRS_DiagnosticIssued;
1928 }
1929 } else {
1930 // - otherwise, begin-expr and end-expr are begin(__range) and
1931 // end(__range), respectively, where begin and end are looked up with
1932 // argument-dependent lookup (3.4.2). For the purposes of this name
1933 // lookup, namespace std is an associated namespace.
1934
1935 }
1936
1937 *BEF = Sema::BEF_begin;
1938 Sema::ForRangeStatus RangeStatus =
1939 SemaRef.BuildForRangeBeginEndCall(S, ColonLoc, ColonLoc, BeginVar,
1940 Sema::BEF_begin, BeginNameInfo,
1941 BeginMemberLookup, CandidateSet,
1942 BeginRange, BeginExpr);
1943
1944 if (RangeStatus != Sema::FRS_Success)
1945 return RangeStatus;
1946 if (FinishForRangeVarDecl(SemaRef, BeginVar, BeginExpr->get(), ColonLoc,
1947 diag::err_for_range_iter_deduction_failure)) {
1948 NoteForRangeBeginEndFunction(SemaRef, BeginExpr->get(), *BEF);
1949 return Sema::FRS_DiagnosticIssued;
1950 }
1951
1952 *BEF = Sema::BEF_end;
1953 RangeStatus =
1954 SemaRef.BuildForRangeBeginEndCall(S, ColonLoc, ColonLoc, EndVar,
1955 Sema::BEF_end, EndNameInfo,
1956 EndMemberLookup, CandidateSet,
1957 EndRange, EndExpr);
1958 if (RangeStatus != Sema::FRS_Success)
1959 return RangeStatus;
1960 if (FinishForRangeVarDecl(SemaRef, EndVar, EndExpr->get(), ColonLoc,
1961 diag::err_for_range_iter_deduction_failure)) {
1962 NoteForRangeBeginEndFunction(SemaRef, EndExpr->get(), *BEF);
1963 return Sema::FRS_DiagnosticIssued;
1964 }
1965 return Sema::FRS_Success;
1966}
1967
1968/// Speculatively attempt to dereference an invalid range expression.
Richard Smith8b533d92012-09-20 21:52:32 +00001969/// If the attempt fails, this function will return a valid, null StmtResult
1970/// and emit no diagnostics.
Sam Panzere1715b62012-08-21 00:52:01 +00001971static StmtResult RebuildForRangeWithDereference(Sema &SemaRef, Scope *S,
1972 SourceLocation ForLoc,
1973 Stmt *LoopVarDecl,
1974 SourceLocation ColonLoc,
1975 Expr *Range,
1976 SourceLocation RangeLoc,
1977 SourceLocation RParenLoc) {
Richard Smith8b533d92012-09-20 21:52:32 +00001978 // Determine whether we can rebuild the for-range statement with a
1979 // dereferenced range expression.
1980 ExprResult AdjustedRange;
1981 {
1982 Sema::SFINAETrap Trap(SemaRef);
1983
1984 AdjustedRange = SemaRef.BuildUnaryOp(S, RangeLoc, UO_Deref, Range);
1985 if (AdjustedRange.isInvalid())
1986 return StmtResult();
1987
1988 StmtResult SR =
1989 SemaRef.ActOnCXXForRangeStmt(ForLoc, LoopVarDecl, ColonLoc,
1990 AdjustedRange.get(), RParenLoc,
1991 Sema::BFRK_Check);
1992 if (SR.isInvalid())
1993 return StmtResult();
1994 }
1995
1996 // The attempt to dereference worked well enough that it could produce a valid
1997 // loop. Produce a fixit, and rebuild the loop with diagnostics enabled, in
1998 // case there are any other (non-fatal) problems with it.
1999 SemaRef.Diag(RangeLoc, diag::err_for_range_dereference)
2000 << Range->getType() << FixItHint::CreateInsertion(RangeLoc, "*");
2001 return SemaRef.ActOnCXXForRangeStmt(ForLoc, LoopVarDecl, ColonLoc,
2002 AdjustedRange.get(), RParenLoc,
2003 Sema::BFRK_Rebuild);
Richard Smithad762fc2011-04-14 22:09:26 +00002004}
2005
Richard Smith37aa0f72013-08-21 01:40:36 +00002006namespace {
2007/// RAII object to automatically invalidate a declaration if an error occurs.
2008struct InvalidateOnErrorScope {
2009 InvalidateOnErrorScope(Sema &SemaRef, Decl *D, bool Enabled)
2010 : Trap(SemaRef.Diags), D(D), Enabled(Enabled) {}
2011 ~InvalidateOnErrorScope() {
2012 if (Enabled && Trap.hasErrorOccurred())
2013 D->setInvalidDecl();
2014 }
2015
2016 DiagnosticErrorTrap Trap;
2017 Decl *D;
2018 bool Enabled;
2019};
2020}
2021
Richard Smith8b533d92012-09-20 21:52:32 +00002022/// BuildCXXForRangeStmt - Build or instantiate a C++11 for-range statement.
Richard Smithad762fc2011-04-14 22:09:26 +00002023StmtResult
2024Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc,
2025 Stmt *RangeDecl, Stmt *BeginEnd, Expr *Cond,
2026 Expr *Inc, Stmt *LoopVarDecl,
Richard Smith8b533d92012-09-20 21:52:32 +00002027 SourceLocation RParenLoc, BuildForRangeKind Kind) {
Richard Smithad762fc2011-04-14 22:09:26 +00002028 Scope *S = getCurScope();
2029
2030 DeclStmt *RangeDS = cast<DeclStmt>(RangeDecl);
2031 VarDecl *RangeVar = cast<VarDecl>(RangeDS->getSingleDecl());
2032 QualType RangeVarType = RangeVar->getType();
2033
2034 DeclStmt *LoopVarDS = cast<DeclStmt>(LoopVarDecl);
2035 VarDecl *LoopVar = cast<VarDecl>(LoopVarDS->getSingleDecl());
2036
Richard Smith37aa0f72013-08-21 01:40:36 +00002037 // If we hit any errors, mark the loop variable as invalid if its type
2038 // contains 'auto'.
2039 InvalidateOnErrorScope Invalidate(*this, LoopVar,
2040 LoopVar->getType()->isUndeducedType());
2041
Richard Smithad762fc2011-04-14 22:09:26 +00002042 StmtResult BeginEndDecl = BeginEnd;
2043 ExprResult NotEqExpr = Cond, IncrExpr = Inc;
2044
Richard Smithdc7a4f52013-04-30 13:56:41 +00002045 if (RangeVarType->isDependentType()) {
2046 // The range is implicitly used as a placeholder when it is dependent.
Eli Friedman86164e82013-09-05 00:02:25 +00002047 RangeVar->markUsed(Context);
Richard Smithdc7a4f52013-04-30 13:56:41 +00002048
2049 // Deduce any 'auto's in the loop variable as 'DependentTy'. We'll fill
2050 // them in properly when we instantiate the loop.
2051 if (!LoopVar->isInvalidDecl() && Kind != BFRK_Check)
2052 LoopVar->setType(SubstAutoType(LoopVar->getType(), Context.DependentTy));
2053 } else if (!BeginEndDecl.get()) {
Richard Smithad762fc2011-04-14 22:09:26 +00002054 SourceLocation RangeLoc = RangeVar->getLocation();
2055
Ted Kremeneke50b0152011-10-10 22:36:28 +00002056 const QualType RangeVarNonRefType = RangeVarType.getNonReferenceType();
2057
2058 ExprResult BeginRangeRef = BuildDeclRefExpr(RangeVar, RangeVarNonRefType,
2059 VK_LValue, ColonLoc);
2060 if (BeginRangeRef.isInvalid())
2061 return StmtError();
2062
2063 ExprResult EndRangeRef = BuildDeclRefExpr(RangeVar, RangeVarNonRefType,
2064 VK_LValue, ColonLoc);
2065 if (EndRangeRef.isInvalid())
Richard Smithad762fc2011-04-14 22:09:26 +00002066 return StmtError();
2067
2068 QualType AutoType = Context.getAutoDeductType();
2069 Expr *Range = RangeVar->getInit();
2070 if (!Range)
2071 return StmtError();
2072 QualType RangeType = Range->getType();
2073
2074 if (RequireCompleteType(RangeLoc, RangeType,
Douglas Gregord10099e2012-05-04 16:32:21 +00002075 diag::err_for_range_incomplete_type))
Richard Smithad762fc2011-04-14 22:09:26 +00002076 return StmtError();
2077
2078 // Build auto __begin = begin-expr, __end = end-expr.
2079 VarDecl *BeginVar = BuildForRangeVarDecl(*this, ColonLoc, AutoType,
2080 "__begin");
2081 VarDecl *EndVar = BuildForRangeVarDecl(*this, ColonLoc, AutoType,
2082 "__end");
2083
2084 // Build begin-expr and end-expr and attach to __begin and __end variables.
2085 ExprResult BeginExpr, EndExpr;
2086 if (const ArrayType *UnqAT = RangeType->getAsArrayTypeUnsafe()) {
2087 // - if _RangeT is an array type, begin-expr and end-expr are __range and
2088 // __range + __bound, respectively, where __bound is the array bound. If
2089 // _RangeT is an array of unknown size or an array of incomplete type,
2090 // the program is ill-formed;
2091
2092 // begin-expr is __range.
Ted Kremeneke50b0152011-10-10 22:36:28 +00002093 BeginExpr = BeginRangeRef;
2094 if (FinishForRangeVarDecl(*this, BeginVar, BeginRangeRef.get(), ColonLoc,
Richard Smithad762fc2011-04-14 22:09:26 +00002095 diag::err_for_range_iter_deduction_failure)) {
2096 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2097 return StmtError();
2098 }
2099
2100 // Find the array bound.
2101 ExprResult BoundExpr;
2102 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(UnqAT))
2103 BoundExpr = Owned(IntegerLiteral::Create(Context, CAT->getSize(),
Richard Trieu1dd986d2011-05-02 23:00:27 +00002104 Context.getPointerDiffType(),
2105 RangeLoc));
Richard Smithad762fc2011-04-14 22:09:26 +00002106 else if (const VariableArrayType *VAT =
2107 dyn_cast<VariableArrayType>(UnqAT))
2108 BoundExpr = VAT->getSizeExpr();
2109 else {
2110 // Can't be a DependentSizedArrayType or an IncompleteArrayType since
2111 // UnqAT is not incomplete and Range is not type-dependent.
David Blaikieb219cfc2011-09-23 05:06:16 +00002112 llvm_unreachable("Unexpected array type in for-range");
Richard Smithad762fc2011-04-14 22:09:26 +00002113 }
2114
2115 // end-expr is __range + __bound.
Ted Kremeneke50b0152011-10-10 22:36:28 +00002116 EndExpr = ActOnBinOp(S, ColonLoc, tok::plus, EndRangeRef.get(),
Richard Smithad762fc2011-04-14 22:09:26 +00002117 BoundExpr.get());
2118 if (EndExpr.isInvalid())
2119 return StmtError();
2120 if (FinishForRangeVarDecl(*this, EndVar, EndExpr.get(), ColonLoc,
2121 diag::err_for_range_iter_deduction_failure)) {
2122 NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2123 return StmtError();
2124 }
2125 } else {
Sam Panzere1715b62012-08-21 00:52:01 +00002126 OverloadCandidateSet CandidateSet(RangeLoc);
2127 Sema::BeginEndFunction BEFFailure;
2128 ForRangeStatus RangeStatus =
2129 BuildNonArrayForRange(*this, S, BeginRangeRef.get(),
2130 EndRangeRef.get(), RangeType,
2131 BeginVar, EndVar, ColonLoc, &CandidateSet,
2132 &BeginExpr, &EndExpr, &BEFFailure);
Richard Smithad762fc2011-04-14 22:09:26 +00002133
Richard Smith8b533d92012-09-20 21:52:32 +00002134 if (Kind == BFRK_Build && RangeStatus == FRS_NoViableFunction &&
Sam Panzere1715b62012-08-21 00:52:01 +00002135 BEFFailure == BEF_begin) {
Richard Trieuf18e6e82013-10-11 22:16:04 +00002136 // If the range is being built from an array parameter, emit a
2137 // a diagnostic that it is being treated as a pointer.
2138 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Range)) {
2139 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
2140 QualType ArrayTy = PVD->getOriginalType();
2141 QualType PointerTy = PVD->getType();
2142 if (PointerTy->isPointerType() && ArrayTy->isArrayType()) {
2143 Diag(Range->getLocStart(), diag::err_range_on_array_parameter)
2144 << RangeLoc << PVD << ArrayTy << PointerTy;
2145 Diag(PVD->getLocation(), diag::note_declared_at);
2146 return StmtError();
2147 }
2148 }
2149 }
2150
2151 // If building the range failed, try dereferencing the range expression
2152 // unless a diagnostic was issued or the end function is problematic.
Sam Panzere1715b62012-08-21 00:52:01 +00002153 StmtResult SR = RebuildForRangeWithDereference(*this, S, ForLoc,
2154 LoopVarDecl, ColonLoc,
2155 Range, RangeLoc,
2156 RParenLoc);
Richard Smith8b533d92012-09-20 21:52:32 +00002157 if (SR.isInvalid() || SR.isUsable())
Sam Panzere1715b62012-08-21 00:52:01 +00002158 return SR;
Richard Smithad762fc2011-04-14 22:09:26 +00002159 }
2160
Sam Panzere1715b62012-08-21 00:52:01 +00002161 // Otherwise, emit diagnostics if we haven't already.
2162 if (RangeStatus == FRS_NoViableFunction) {
Richard Smith8b533d92012-09-20 21:52:32 +00002163 Expr *Range = BEFFailure ? EndRangeRef.get() : BeginRangeRef.get();
Sam Panzere1715b62012-08-21 00:52:01 +00002164 Diag(Range->getLocStart(), diag::err_for_range_invalid)
2165 << RangeLoc << Range->getType() << BEFFailure;
Nico Weberd36aa352012-12-29 20:03:39 +00002166 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Range);
Sam Panzere1715b62012-08-21 00:52:01 +00002167 }
2168 // Return an error if no fix was discovered.
2169 if (RangeStatus != FRS_Success)
Richard Smithad762fc2011-04-14 22:09:26 +00002170 return StmtError();
2171 }
2172
Sam Panzere1715b62012-08-21 00:52:01 +00002173 assert(!BeginExpr.isInvalid() && !EndExpr.isInvalid() &&
2174 "invalid range expression in for loop");
2175
2176 // C++11 [dcl.spec.auto]p7: BeginType and EndType must be the same.
Richard Smithad762fc2011-04-14 22:09:26 +00002177 QualType BeginType = BeginVar->getType(), EndType = EndVar->getType();
2178 if (!Context.hasSameType(BeginType, EndType)) {
2179 Diag(RangeLoc, diag::err_for_range_begin_end_types_differ)
2180 << BeginType << EndType;
2181 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2182 NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2183 }
2184
2185 Decl *BeginEndDecls[] = { BeginVar, EndVar };
2186 // Claim the type doesn't contain auto: we've already done the checking.
2187 DeclGroupPtrTy BeginEndGroup =
Rafael Espindola4549d7f2013-07-09 12:05:01 +00002188 BuildDeclaratorGroup(llvm::MutableArrayRef<Decl *>(BeginEndDecls, 2),
2189 /*TypeMayContainAuto=*/ false);
Richard Smithad762fc2011-04-14 22:09:26 +00002190 BeginEndDecl = ActOnDeclStmt(BeginEndGroup, ColonLoc, ColonLoc);
2191
Ted Kremeneke50b0152011-10-10 22:36:28 +00002192 const QualType BeginRefNonRefType = BeginType.getNonReferenceType();
2193 ExprResult BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
Richard Smithad762fc2011-04-14 22:09:26 +00002194 VK_LValue, ColonLoc);
Ted Kremeneke50b0152011-10-10 22:36:28 +00002195 if (BeginRef.isInvalid())
2196 return StmtError();
2197
Richard Smithad762fc2011-04-14 22:09:26 +00002198 ExprResult EndRef = BuildDeclRefExpr(EndVar, EndType.getNonReferenceType(),
2199 VK_LValue, ColonLoc);
Ted Kremeneke50b0152011-10-10 22:36:28 +00002200 if (EndRef.isInvalid())
2201 return StmtError();
Richard Smithad762fc2011-04-14 22:09:26 +00002202
2203 // Build and check __begin != __end expression.
2204 NotEqExpr = ActOnBinOp(S, ColonLoc, tok::exclaimequal,
2205 BeginRef.get(), EndRef.get());
2206 NotEqExpr = ActOnBooleanCondition(S, ColonLoc, NotEqExpr.get());
2207 NotEqExpr = ActOnFinishFullExpr(NotEqExpr.get());
2208 if (NotEqExpr.isInvalid()) {
Sam Panzer8123b6e2012-09-06 21:50:08 +00002209 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2210 << RangeLoc << 0 << BeginRangeRef.get()->getType();
Richard Smithad762fc2011-04-14 22:09:26 +00002211 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2212 if (!Context.hasSameType(BeginType, EndType))
2213 NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2214 return StmtError();
2215 }
2216
2217 // Build and check ++__begin expression.
Ted Kremeneke50b0152011-10-10 22:36:28 +00002218 BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2219 VK_LValue, ColonLoc);
2220 if (BeginRef.isInvalid())
2221 return StmtError();
2222
Richard Smithad762fc2011-04-14 22:09:26 +00002223 IncrExpr = ActOnUnaryOp(S, ColonLoc, tok::plusplus, BeginRef.get());
2224 IncrExpr = ActOnFinishFullExpr(IncrExpr.get());
2225 if (IncrExpr.isInvalid()) {
Sam Panzer8123b6e2012-09-06 21:50:08 +00002226 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2227 << RangeLoc << 2 << BeginRangeRef.get()->getType() ;
Richard Smithad762fc2011-04-14 22:09:26 +00002228 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2229 return StmtError();
2230 }
2231
2232 // Build and check *__begin expression.
Ted Kremeneke50b0152011-10-10 22:36:28 +00002233 BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2234 VK_LValue, ColonLoc);
2235 if (BeginRef.isInvalid())
2236 return StmtError();
2237
Richard Smithad762fc2011-04-14 22:09:26 +00002238 ExprResult DerefExpr = ActOnUnaryOp(S, ColonLoc, tok::star, BeginRef.get());
2239 if (DerefExpr.isInvalid()) {
Sam Panzer8123b6e2012-09-06 21:50:08 +00002240 Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2241 << RangeLoc << 1 << BeginRangeRef.get()->getType();
Richard Smithad762fc2011-04-14 22:09:26 +00002242 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2243 return StmtError();
2244 }
2245
Richard Smith8b533d92012-09-20 21:52:32 +00002246 // Attach *__begin as initializer for VD. Don't touch it if we're just
2247 // trying to determine whether this would be a valid range.
2248 if (!LoopVar->isInvalidDecl() && Kind != BFRK_Check) {
Richard Smithad762fc2011-04-14 22:09:26 +00002249 AddInitializerToDecl(LoopVar, DerefExpr.get(), /*DirectInit=*/false,
2250 /*TypeMayContainAuto=*/true);
2251 if (LoopVar->isInvalidDecl())
2252 NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2253 }
2254 }
2255
Richard Smith8b533d92012-09-20 21:52:32 +00002256 // Don't bother to actually allocate the result if we're just trying to
2257 // determine whether it would be valid.
2258 if (Kind == BFRK_Check)
2259 return StmtResult();
2260
Richard Smithad762fc2011-04-14 22:09:26 +00002261 return Owned(new (Context) CXXForRangeStmt(RangeDS,
2262 cast_or_null<DeclStmt>(BeginEndDecl.get()),
2263 NotEqExpr.take(), IncrExpr.take(),
2264 LoopVarDS, /*Body=*/0, ForLoc,
2265 ColonLoc, RParenLoc));
2266}
2267
Chad Rosier1093f492012-08-10 17:56:09 +00002268/// FinishObjCForCollectionStmt - Attach the body to a objective-C foreach
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00002269/// statement.
2270StmtResult Sema::FinishObjCForCollectionStmt(Stmt *S, Stmt *B) {
2271 if (!S || !B)
2272 return StmtError();
2273 ObjCForCollectionStmt * ForStmt = cast<ObjCForCollectionStmt>(S);
Chad Rosier1093f492012-08-10 17:56:09 +00002274
Fariborz Jahaniana1eec4b2012-07-03 22:00:52 +00002275 ForStmt->setBody(B);
2276 return S;
2277}
2278
Richard Smithad762fc2011-04-14 22:09:26 +00002279/// FinishCXXForRangeStmt - Attach the body to a C++0x for-range statement.
2280/// This is a separate step from ActOnCXXForRangeStmt because analysis of the
2281/// body cannot be performed until after the type of the range variable is
2282/// determined.
2283StmtResult Sema::FinishCXXForRangeStmt(Stmt *S, Stmt *B) {
2284 if (!S || !B)
2285 return StmtError();
2286
Fariborz Jahanian4d3db4e2012-07-06 19:04:04 +00002287 if (isa<ObjCForCollectionStmt>(S))
2288 return FinishObjCForCollectionStmt(S, B);
Chad Rosier1093f492012-08-10 17:56:09 +00002289
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002290 CXXForRangeStmt *ForStmt = cast<CXXForRangeStmt>(S);
2291 ForStmt->setBody(B);
2292
2293 DiagnoseEmptyStmtBody(ForStmt->getRParenLoc(), B,
2294 diag::warn_empty_range_based_for_body);
2295
Richard Smithad762fc2011-04-14 22:09:26 +00002296 return S;
2297}
2298
Chris Lattner57ad3782011-02-17 20:34:02 +00002299StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc,
2300 SourceLocation LabelLoc,
2301 LabelDecl *TheDecl) {
2302 getCurFunction()->setHasBranchIntoScope();
Eli Friedman86164e82013-09-05 00:02:25 +00002303 TheDecl->markUsed(Context);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002304 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00002305}
2306
John McCall60d7b3a2010-08-24 06:29:42 +00002307StmtResult
Chris Lattnerad56d682009-04-19 01:04:21 +00002308Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
John McCall9ae2f072010-08-23 23:25:46 +00002309 Expr *E) {
Eli Friedmanbbf46232009-03-26 00:18:06 +00002310 // Convert operand to void*
Douglas Gregor5f1b9e62009-05-16 00:20:29 +00002311 if (!E->isTypeDependent()) {
2312 QualType ETy = E->getType();
Chandler Carruth28779982010-01-31 10:26:25 +00002313 QualType DestTy = Context.getPointerType(Context.VoidTy.withConst());
John Wiegley429bb272011-04-08 18:41:53 +00002314 ExprResult ExprRes = Owned(E);
Douglas Gregor5f1b9e62009-05-16 00:20:29 +00002315 AssignConvertType ConvTy =
John Wiegley429bb272011-04-08 18:41:53 +00002316 CheckSingleAssignmentConstraints(DestTy, ExprRes);
2317 if (ExprRes.isInvalid())
2318 return StmtError();
2319 E = ExprRes.take();
Chandler Carruth28779982010-01-31 10:26:25 +00002320 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))
Douglas Gregor5f1b9e62009-05-16 00:20:29 +00002321 return StmtError();
2322 }
John McCallb60a77e2010-08-01 00:26:45 +00002323
Richard Smith41956372013-01-14 22:39:08 +00002324 ExprResult ExprRes = ActOnFinishFullExpr(E);
2325 if (ExprRes.isInvalid())
2326 return StmtError();
2327 E = ExprRes.take();
2328
John McCall781472f2010-08-25 08:40:02 +00002329 getCurFunction()->setHasIndirectGoto();
John McCallb60a77e2010-08-01 00:26:45 +00002330
Douglas Gregor5f1b9e62009-05-16 00:20:29 +00002331 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00002332}
2333
John McCall60d7b3a2010-08-24 06:29:42 +00002334StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +00002335Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002336 Scope *S = CurScope->getContinueParent();
2337 if (!S) {
2338 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002339 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Reid Spencer5f016e22007-07-11 17:01:13 +00002340 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002341
Ted Kremenek8189cde2009-02-07 01:47:29 +00002342 return Owned(new (Context) ContinueStmt(ContinueLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00002343}
2344
John McCall60d7b3a2010-08-24 06:29:42 +00002345StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +00002346Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002347 Scope *S = CurScope->getBreakParent();
2348 if (!S) {
2349 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002350 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Reid Spencer5f016e22007-07-11 17:01:13 +00002351 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002352
Ted Kremenek8189cde2009-02-07 01:47:29 +00002353 return Owned(new (Context) BreakStmt(BreakLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00002354}
2355
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002356/// \brief Determine whether the given expression is a candidate for
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002357/// copy elision in either a return statement or a throw expression.
Douglas Gregor5077c382010-05-15 06:01:05 +00002358///
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002359/// \param ReturnType If we're determining the copy elision candidate for
2360/// a return statement, this is the return type of the function. If we're
2361/// determining the copy elision candidate for a throw expression, this will
2362/// be a NULL type.
Douglas Gregor5077c382010-05-15 06:01:05 +00002363///
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002364/// \param E The expression being returned from the function or block, or
2365/// being thrown.
Douglas Gregor5077c382010-05-15 06:01:05 +00002366///
Douglas Gregor4926d832011-05-20 15:00:53 +00002367/// \param AllowFunctionParameter Whether we allow function parameters to
2368/// be considered NRVO candidates. C++ prohibits this for NRVO itself, but
2369/// we re-use this logic to determine whether we should try to move as part of
2370/// a return or throw (which does allow function parameters).
Douglas Gregor5077c382010-05-15 06:01:05 +00002371///
2372/// \returns The NRVO candidate variable, if the return statement may use the
2373/// NRVO, or NULL if there is no such candidate.
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002374const VarDecl *Sema::getCopyElisionCandidate(QualType ReturnType,
2375 Expr *E,
2376 bool AllowFunctionParameter) {
2377 QualType ExprType = E->getType();
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002378 // - in a return statement in a function with ...
2379 // ... a class return type ...
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002380 if (!ReturnType.isNull()) {
2381 if (!ReturnType->isRecordType())
2382 return 0;
2383 // ... the same cv-unqualified type as the function return type ...
2384 if (!Context.hasSameUnqualifiedType(ReturnType, ExprType))
2385 return 0;
2386 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002387
2388 // ... the expression is the name of a non-volatile automatic object
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002389 // (other than a function or catch-clause parameter)) ...
2390 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParens());
Nico Weber89510672012-07-11 22:50:15 +00002391 if (!DR || DR->refersToEnclosingLocal())
Douglas Gregor5077c382010-05-15 06:01:05 +00002392 return 0;
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002393 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
2394 if (!VD)
Douglas Gregor5077c382010-05-15 06:01:05 +00002395 return 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002396
John McCall1cd76e82011-11-11 03:57:31 +00002397 // ...object (other than a function or catch-clause parameter)...
2398 if (VD->getKind() != Decl::Var &&
2399 !(AllowFunctionParameter && VD->getKind() == Decl::ParmVar))
2400 return 0;
2401 if (VD->isExceptionVariable()) return 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002402
John McCall1cd76e82011-11-11 03:57:31 +00002403 // ...automatic...
2404 if (!VD->hasLocalStorage()) return 0;
2405
2406 // ...non-volatile...
2407 if (VD->getType().isVolatileQualified()) return 0;
2408 if (VD->getType()->isReferenceType()) return 0;
2409
2410 // __block variables can't be allocated in a way that permits NRVO.
2411 if (VD->hasAttr<BlocksAttr>()) return 0;
2412
2413 // Variables with higher required alignment than their type's ABI
2414 // alignment cannot use NRVO.
2415 if (VD->hasAttr<AlignedAttr>() &&
2416 Context.getDeclAlign(VD) > Context.getTypeAlignInChars(VD->getType()))
2417 return 0;
2418
2419 return VD;
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002420}
2421
Douglas Gregor07f402c2011-01-21 21:08:57 +00002422/// \brief Perform the initialization of a potentially-movable value, which
2423/// is the result of return value.
Douglas Gregorcc15f012011-01-21 19:38:21 +00002424///
2425/// This routine implements C++0x [class.copy]p33, which attempts to treat
2426/// returned lvalues as rvalues in certain cases (to prefer move construction),
2427/// then falls back to treating them as lvalues if that failed.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002428ExprResult
Douglas Gregor07f402c2011-01-21 21:08:57 +00002429Sema::PerformMoveOrCopyInitialization(const InitializedEntity &Entity,
2430 const VarDecl *NRVOCandidate,
2431 QualType ResultType,
Douglas Gregorbca01b42011-07-06 22:04:06 +00002432 Expr *Value,
2433 bool AllowNRVO) {
Douglas Gregorcc15f012011-01-21 19:38:21 +00002434 // C++0x [class.copy]p33:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002435 // When the criteria for elision of a copy operation are met or would
2436 // be met save for the fact that the source object is a function
2437 // parameter, and the object to be copied is designated by an lvalue,
Douglas Gregorcc15f012011-01-21 19:38:21 +00002438 // overload resolution to select the constructor for the copy is first
2439 // performed as if the object were designated by an rvalue.
Douglas Gregorcc15f012011-01-21 19:38:21 +00002440 ExprResult Res = ExprError();
Douglas Gregorbca01b42011-07-06 22:04:06 +00002441 if (AllowNRVO &&
2442 (NRVOCandidate || getCopyElisionCandidate(ResultType, Value, true))) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002443 ImplicitCastExpr AsRvalue(ImplicitCastExpr::OnStack,
Richard Smithdbbeccc2012-05-15 05:04:02 +00002444 Value->getType(), CK_NoOp, Value, VK_XValue);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002445
Douglas Gregorcc15f012011-01-21 19:38:21 +00002446 Expr *InitExpr = &AsRvalue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002447 InitializationKind Kind
Douglas Gregor07f402c2011-01-21 21:08:57 +00002448 = InitializationKind::CreateCopy(Value->getLocStart(),
2449 Value->getLocStart());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002450 InitializationSequence Seq(*this, Entity, Kind, InitExpr);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002451
2452 // [...] If overload resolution fails, or if the type of the first
Douglas Gregorcc15f012011-01-21 19:38:21 +00002453 // parameter of the selected constructor is not an rvalue reference
NAKAMURA Takumi00995302011-01-27 07:09:49 +00002454 // to the object's type (possibly cv-qualified), overload resolution
Douglas Gregorcc15f012011-01-21 19:38:21 +00002455 // is performed again, considering the object as an lvalue.
Sebastian Redl383616c2011-06-05 12:23:28 +00002456 if (Seq) {
Douglas Gregorcc15f012011-01-21 19:38:21 +00002457 for (InitializationSequence::step_iterator Step = Seq.step_begin(),
2458 StepEnd = Seq.step_end();
2459 Step != StepEnd; ++Step) {
Sebastian Redl383616c2011-06-05 12:23:28 +00002460 if (Step->Kind != InitializationSequence::SK_ConstructorInitialization)
Douglas Gregorcc15f012011-01-21 19:38:21 +00002461 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002462
2463 CXXConstructorDecl *Constructor
Douglas Gregorcc15f012011-01-21 19:38:21 +00002464 = cast<CXXConstructorDecl>(Step->Function.Function);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002465
Douglas Gregorcc15f012011-01-21 19:38:21 +00002466 const RValueReferenceType *RRefType
Douglas Gregor07f402c2011-01-21 21:08:57 +00002467 = Constructor->getParamDecl(0)->getType()
2468 ->getAs<RValueReferenceType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002469
Douglas Gregorcc15f012011-01-21 19:38:21 +00002470 // If we don't meet the criteria, break out now.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002471 if (!RRefType ||
Douglas Gregor07f402c2011-01-21 21:08:57 +00002472 !Context.hasSameUnqualifiedType(RRefType->getPointeeType(),
2473 Context.getTypeDeclType(Constructor->getParent())))
Douglas Gregorcc15f012011-01-21 19:38:21 +00002474 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002475
Douglas Gregorcc15f012011-01-21 19:38:21 +00002476 // Promote "AsRvalue" to the heap, since we now need this
2477 // expression node to persist.
Douglas Gregor07f402c2011-01-21 21:08:57 +00002478 Value = ImplicitCastExpr::Create(Context, Value->getType(),
Richard Smithdbbeccc2012-05-15 05:04:02 +00002479 CK_NoOp, Value, 0, VK_XValue);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002480
Douglas Gregorcc15f012011-01-21 19:38:21 +00002481 // Complete type-checking the initialization of the return type
2482 // using the constructor we found.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002483 Res = Seq.Perform(*this, Entity, Kind, Value);
Douglas Gregorcc15f012011-01-21 19:38:21 +00002484 }
2485 }
2486 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002487
Douglas Gregorcc15f012011-01-21 19:38:21 +00002488 // Either we didn't meet the criteria for treating an lvalue as an rvalue,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002489 // above, or overload resolution failed. Either way, we need to try
Douglas Gregorcc15f012011-01-21 19:38:21 +00002490 // (again) now with the return value expression as written.
2491 if (Res.isInvalid())
Douglas Gregor07f402c2011-01-21 21:08:57 +00002492 Res = PerformCopyInitialization(Entity, SourceLocation(), Value);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002493
Douglas Gregorcc15f012011-01-21 19:38:21 +00002494 return Res;
2495}
2496
Richard Smith41d09582013-09-25 05:02:54 +00002497/// \brief Determine whether the declared return type of the specified function
2498/// contains 'auto'.
2499static bool hasDeducedReturnType(FunctionDecl *FD) {
2500 const FunctionProtoType *FPT =
2501 FD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>();
2502 return FPT->getResultType()->isUndeducedType();
2503}
2504
Eli Friedman84b007f2012-01-26 03:00:14 +00002505/// ActOnCapScopeReturnStmt - Utility routine to type-check return statements
2506/// for capturing scopes.
Steve Naroff4eb206b2008-09-03 18:15:37 +00002507///
John McCall60d7b3a2010-08-24 06:29:42 +00002508StmtResult
Eli Friedman84b007f2012-01-26 03:00:14 +00002509Sema::ActOnCapScopeReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
2510 // If this is the first return we've seen, infer the return type.
Richard Smithf45c2992013-05-12 03:09:35 +00002511 // [expr.prim.lambda]p4 in C++11; block literals follow the same rules.
Eli Friedman84b007f2012-01-26 03:00:14 +00002512 CapturingScopeInfo *CurCap = cast<CapturingScopeInfo>(getCurFunction());
Jordan Rose7dd900e2012-07-02 21:19:23 +00002513 QualType FnRetType = CurCap->ReturnType;
Richard Smith41d09582013-09-25 05:02:54 +00002514 LambdaScopeInfo *CurLambda = dyn_cast<LambdaScopeInfo>(CurCap);
Manuel Klimek152b4e42013-08-22 12:12:24 +00002515
Richard Smith41d09582013-09-25 05:02:54 +00002516 if (CurLambda && hasDeducedReturnType(CurLambda->CallOperator)) {
2517 // In C++1y, the return type may involve 'auto'.
2518 // FIXME: Blocks might have a return type of 'auto' explicitly specified.
2519 FunctionDecl *FD = CurLambda->CallOperator;
2520 if (CurCap->ReturnType.isNull())
2521 CurCap->ReturnType = FD->getResultType();
2522
2523 AutoType *AT = CurCap->ReturnType->getContainedAutoType();
2524 assert(AT && "lost auto type from lambda return type");
2525 if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
2526 FD->setInvalidDecl();
2527 return StmtError();
2528 }
2529 CurCap->ReturnType = FnRetType = FD->getResultType();
2530 } else if (CurCap->HasImplicitReturnType) {
2531 // For blocks/lambdas with implicit return types, we check each return
2532 // statement individually, and deduce the common return type when the block
2533 // or lambda is completed.
2534 // FIXME: Fold this into the 'auto' codepath above.
Douglas Gregora0c2b212012-02-09 18:40:39 +00002535 if (RetValExp && !isa<InitListExpr>(RetValExp)) {
John Wiegley429bb272011-04-08 18:41:53 +00002536 ExprResult Result = DefaultFunctionArrayLvalueConversion(RetValExp);
2537 if (Result.isInvalid())
2538 return StmtError();
2539 RetValExp = Result.take();
Douglas Gregor6a576ab2011-06-05 05:04:23 +00002540
Richard Smith41d09582013-09-25 05:02:54 +00002541 if (!CurContext->isDependentContext())
Manuel Klimek152b4e42013-08-22 12:12:24 +00002542 FnRetType = RetValExp->getType();
Richard Smith41d09582013-09-25 05:02:54 +00002543 else
Jordan Rose7dd900e2012-07-02 21:19:23 +00002544 FnRetType = CurCap->ReturnType = Context.DependentTy;
Chad Rosier1093f492012-08-10 17:56:09 +00002545 } else {
Douglas Gregora0c2b212012-02-09 18:40:39 +00002546 if (RetValExp) {
2547 // C++11 [expr.lambda.prim]p4 bans inferring the result from an
2548 // initializer list, because it is not an expression (even
2549 // though we represent it as one). We still deduce 'void'.
2550 Diag(ReturnLoc, diag::err_lambda_return_init_list)
2551 << RetValExp->getSourceRange();
2552 }
Manuel Klimek152b4e42013-08-22 12:12:24 +00002553
Jordan Rose7dd900e2012-07-02 21:19:23 +00002554 FnRetType = Context.VoidTy;
Fariborz Jahanian649657e2011-12-03 23:53:56 +00002555 }
Jordan Rose7dd900e2012-07-02 21:19:23 +00002556
2557 // Although we'll properly infer the type of the block once it's completed,
2558 // make sure we provide a return type now for better error recovery.
2559 if (CurCap->ReturnType.isNull())
2560 CurCap->ReturnType = FnRetType;
Steve Naroff4eb206b2008-09-03 18:15:37 +00002561 }
Eli Friedman84b007f2012-01-26 03:00:14 +00002562 assert(!FnRetType.isNull());
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002563
Douglas Gregor793cd1c2012-02-15 16:20:15 +00002564 if (BlockScopeInfo *CurBlock = dyn_cast<BlockScopeInfo>(CurCap)) {
Eli Friedman84b007f2012-01-26 03:00:14 +00002565 if (CurBlock->FunctionType->getAs<FunctionType>()->getNoReturnAttr()) {
2566 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr);
2567 return StmtError();
2568 }
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00002569 } else if (CapturedRegionScopeInfo *CurRegion =
2570 dyn_cast<CapturedRegionScopeInfo>(CurCap)) {
2571 Diag(ReturnLoc, diag::err_return_in_captured_stmt) << CurRegion->getRegionName();
2572 return StmtError();
Douglas Gregor793cd1c2012-02-15 16:20:15 +00002573 } else {
Richard Smith41d09582013-09-25 05:02:54 +00002574 assert(CurLambda && "unknown kind of captured scope");
2575 if (CurLambda->CallOperator->getType()->getAs<FunctionType>()
2576 ->getNoReturnAttr()) {
Douglas Gregor793cd1c2012-02-15 16:20:15 +00002577 Diag(ReturnLoc, diag::err_noreturn_lambda_has_return_expr);
2578 return StmtError();
2579 }
2580 }
Mike Stump6c92fa72009-04-29 21:40:37 +00002581
Steve Naroff4eb206b2008-09-03 18:15:37 +00002582 // Otherwise, verify that this result type matches the previous one. We are
2583 // pickier with blocks than for normal functions because we don't have GCC
2584 // compatibility to worry about here.
John McCalld963c372011-08-17 21:34:14 +00002585 const VarDecl *NRVOCandidate = 0;
Manuel Klimek152b4e42013-08-22 12:12:24 +00002586 if (FnRetType->isDependentType()) {
John McCall0a7efe12011-08-17 22:09:46 +00002587 // Delay processing for now. TODO: there are lots of dependent
2588 // types we can conclusively prove aren't void.
2589 } else if (FnRetType->isVoidType()) {
Sebastian Redl5b38a0f2012-02-22 17:38:04 +00002590 if (RetValExp && !isa<InitListExpr>(RetValExp) &&
David Blaikie4e4d0842012-03-11 07:00:24 +00002591 !(getLangOpts().CPlusPlus &&
John McCall0a7efe12011-08-17 22:09:46 +00002592 (RetValExp->isTypeDependent() ||
2593 RetValExp->getType()->isVoidType()))) {
Fariborz Jahanian4e648e42012-03-21 16:45:13 +00002594 if (!getLangOpts().CPlusPlus &&
2595 RetValExp->getType()->isVoidType())
Fariborz Jahanian9354f6a2012-03-21 20:28:39 +00002596 Diag(ReturnLoc, diag::ext_return_has_void_expr) << "literal" << 2;
Fariborz Jahanian4e648e42012-03-21 16:45:13 +00002597 else {
2598 Diag(ReturnLoc, diag::err_return_block_has_expr);
2599 RetValExp = 0;
2600 }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002601 }
Douglas Gregor5077c382010-05-15 06:01:05 +00002602 } else if (!RetValExp) {
John McCall0a7efe12011-08-17 22:09:46 +00002603 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
2604 } else if (!RetValExp->isTypeDependent()) {
2605 // we have a non-void block with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002606
John McCall0a7efe12011-08-17 22:09:46 +00002607 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
2608 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
2609 // function return.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002610
John McCall0a7efe12011-08-17 22:09:46 +00002611 // In C++ the return statement is handled via a copy initialization.
2612 // the C version of which boils down to CheckSingleAssignmentConstraints.
2613 NRVOCandidate = getCopyElisionCandidate(FnRetType, RetValExp, false);
2614 InitializedEntity Entity = InitializedEntity::InitializeResult(ReturnLoc,
2615 FnRetType,
Fariborz Jahanian05865202011-12-03 17:47:53 +00002616 NRVOCandidate != 0);
John McCall0a7efe12011-08-17 22:09:46 +00002617 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRVOCandidate,
2618 FnRetType, RetValExp);
2619 if (Res.isInvalid()) {
2620 // FIXME: Cleanup temporaries here, anyway?
2621 return StmtError();
Anders Carlssonc6acbc52010-01-29 18:30:20 +00002622 }
John McCall0a7efe12011-08-17 22:09:46 +00002623 RetValExp = Res.take();
2624 CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff4eb206b2008-09-03 18:15:37 +00002625 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002626
John McCalld963c372011-08-17 21:34:14 +00002627 if (RetValExp) {
Richard Smith41956372013-01-14 22:39:08 +00002628 ExprResult ER = ActOnFinishFullExpr(RetValExp, ReturnLoc);
2629 if (ER.isInvalid())
2630 return StmtError();
2631 RetValExp = ER.take();
John McCalld963c372011-08-17 21:34:14 +00002632 }
John McCall0a7efe12011-08-17 22:09:46 +00002633 ReturnStmt *Result = new (Context) ReturnStmt(ReturnLoc, RetValExp,
2634 NRVOCandidate);
John McCalld963c372011-08-17 21:34:14 +00002635
Jordan Rose7dd900e2012-07-02 21:19:23 +00002636 // If we need to check for the named return value optimization,
2637 // or if we need to infer the return type,
2638 // save the return statement in our scope for later processing.
2639 if (CurCap->HasImplicitReturnType ||
2640 (getLangOpts().CPlusPlus && FnRetType->isRecordType() &&
2641 !CurContext->isDependentContext()))
Douglas Gregor5077c382010-05-15 06:01:05 +00002642 FunctionScopes.back()->Returns.push_back(Result);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002643
Douglas Gregor5077c382010-05-15 06:01:05 +00002644 return Owned(Result);
Steve Naroff4eb206b2008-09-03 18:15:37 +00002645}
Manuel Klimek152b4e42013-08-22 12:12:24 +00002646
Richard Smith60e141e2013-05-04 07:00:32 +00002647/// Deduce the return type for a function from a returned expression, per
2648/// C++1y [dcl.spec.auto]p6.
2649bool Sema::DeduceFunctionTypeFromReturnExpr(FunctionDecl *FD,
2650 SourceLocation ReturnLoc,
2651 Expr *&RetExpr,
2652 AutoType *AT) {
2653 TypeLoc OrigResultType = FD->getTypeSourceInfo()->getTypeLoc().
2654 IgnoreParens().castAs<FunctionProtoTypeLoc>().getResultLoc();
2655 QualType Deduced;
Manuel Klimek152b4e42013-08-22 12:12:24 +00002656
Richard Smith37e849a2013-08-14 20:16:31 +00002657 if (RetExpr && isa<InitListExpr>(RetExpr)) {
2658 // If the deduction is for a return statement and the initializer is
2659 // a braced-init-list, the program is ill-formed.
Richard Smith41d09582013-09-25 05:02:54 +00002660 Diag(RetExpr->getExprLoc(),
2661 getCurLambda() ? diag::err_lambda_return_init_list
2662 : diag::err_auto_fn_return_init_list)
2663 << RetExpr->getSourceRange();
Richard Smith37e849a2013-08-14 20:16:31 +00002664 return true;
2665 }
2666
2667 if (FD->isDependentContext()) {
2668 // C++1y [dcl.spec.auto]p12:
2669 // Return type deduction [...] occurs when the definition is
2670 // instantiated even if the function body contains a return
2671 // statement with a non-type-dependent operand.
2672 assert(AT->isDeduced() && "should have deduced to dependent type");
2673 return false;
2674 } else if (RetExpr) {
Richard Smith60e141e2013-05-04 07:00:32 +00002675 // If the deduction is for a return statement and the initializer is
2676 // a braced-init-list, the program is ill-formed.
2677 if (isa<InitListExpr>(RetExpr)) {
2678 Diag(RetExpr->getExprLoc(), diag::err_auto_fn_return_init_list);
2679 return true;
2680 }
2681
2682 // Otherwise, [...] deduce a value for U using the rules of template
2683 // argument deduction.
2684 DeduceAutoResult DAR = DeduceAutoType(OrigResultType, RetExpr, Deduced);
2685
2686 if (DAR == DAR_Failed && !FD->isInvalidDecl())
2687 Diag(RetExpr->getExprLoc(), diag::err_auto_fn_deduction_failure)
2688 << OrigResultType.getType() << RetExpr->getType();
2689
2690 if (DAR != DAR_Succeeded)
2691 return true;
2692 } else {
2693 // In the case of a return with no operand, the initializer is considered
2694 // to be void().
2695 //
2696 // Deduction here can only succeed if the return type is exactly 'cv auto'
2697 // or 'decltype(auto)', so just check for that case directly.
2698 if (!OrigResultType.getType()->getAs<AutoType>()) {
2699 Diag(ReturnLoc, diag::err_auto_fn_return_void_but_not_auto)
2700 << OrigResultType.getType();
2701 return true;
2702 }
2703 // We always deduce U = void in this case.
2704 Deduced = SubstAutoType(OrigResultType.getType(), Context.VoidTy);
2705 if (Deduced.isNull())
2706 return true;
2707 }
2708
2709 // If a function with a declared return type that contains a placeholder type
2710 // has multiple return statements, the return type is deduced for each return
2711 // statement. [...] if the type deduced is not the same in each deduction,
2712 // the program is ill-formed.
2713 if (AT->isDeduced() && !FD->isInvalidDecl()) {
2714 AutoType *NewAT = Deduced->getContainedAutoType();
Richard Smith37e849a2013-08-14 20:16:31 +00002715 if (!FD->isDependentContext() &&
2716 !Context.hasSameType(AT->getDeducedType(), NewAT->getDeducedType())) {
Richard Smith41d09582013-09-25 05:02:54 +00002717 const LambdaScopeInfo *LambdaSI = getCurLambda();
2718 if (LambdaSI && LambdaSI->HasImplicitReturnType) {
2719 Diag(ReturnLoc, diag::err_typecheck_missing_return_type_incompatible)
2720 << NewAT->getDeducedType() << AT->getDeducedType()
2721 << true /*IsLambda*/;
2722 } else {
2723 Diag(ReturnLoc, diag::err_auto_fn_different_deductions)
2724 << (AT->isDecltypeAuto() ? 1 : 0)
2725 << NewAT->getDeducedType() << AT->getDeducedType();
2726 }
Richard Smith60e141e2013-05-04 07:00:32 +00002727 return true;
2728 }
2729 } else if (!FD->isInvalidDecl()) {
2730 // Update all declarations of the function to have the deduced return type.
2731 Context.adjustDeducedFunctionResultType(FD, Deduced);
2732 }
2733
2734 return false;
2735}
2736
John McCall60d7b3a2010-08-24 06:29:42 +00002737StmtResult
John McCall9ae2f072010-08-23 23:25:46 +00002738Sema::ActOnReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Douglas Gregorfc921372011-05-20 15:32:55 +00002739 // Check for unexpanded parameter packs.
2740 if (RetValExp && DiagnoseUnexpandedParameterPack(RetValExp))
2741 return StmtError();
Manuel Klimek152b4e42013-08-22 12:12:24 +00002742
Eli Friedman84b007f2012-01-26 03:00:14 +00002743 if (isa<CapturingScopeInfo>(getCurFunction()))
2744 return ActOnCapScopeReturnStmt(ReturnLoc, RetValExp);
Manuel Klimek152b4e42013-08-22 12:12:24 +00002745
Chris Lattner371f2582008-12-04 23:50:19 +00002746 QualType FnRetType;
Eli Friedman38ac2432012-03-30 01:13:43 +00002747 QualType RelatedRetType;
Mike Stumpf7c41da2009-04-29 00:43:21 +00002748 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattner371f2582008-12-04 23:50:19 +00002749 FnRetType = FD->getResultType();
Richard Smithcd8ab512013-01-17 01:30:42 +00002750 if (FD->isNoReturn())
Chris Lattner86625872009-05-31 19:32:13 +00002751 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Eli Friedman79430e92012-01-05 00:49:17 +00002752 << FD->getDeclName();
Douglas Gregor926df6c2011-06-11 01:09:30 +00002753 } else if (ObjCMethodDecl *MD = getCurMethodDecl()) {
Eli Friedman38ac2432012-03-30 01:13:43 +00002754 FnRetType = MD->getResultType();
Douglas Gregor926df6c2011-06-11 01:09:30 +00002755 if (MD->hasRelatedResultType() && MD->getClassInterface()) {
2756 // In the implementation of a method with a related return type, the
Chad Rosier1093f492012-08-10 17:56:09 +00002757 // type used to type-check the validity of return statements within the
Douglas Gregor926df6c2011-06-11 01:09:30 +00002758 // method body is a pointer to the type of the class being implemented.
Eli Friedman38ac2432012-03-30 01:13:43 +00002759 RelatedRetType = Context.getObjCInterfaceType(MD->getClassInterface());
2760 RelatedRetType = Context.getObjCObjectPointerType(RelatedRetType);
Douglas Gregor926df6c2011-06-11 01:09:30 +00002761 }
2762 } else // If we don't have a function/method context, bail.
Steve Naroffc97fb9a2009-03-03 00:45:38 +00002763 return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +00002764
Richard Smith60e141e2013-05-04 07:00:32 +00002765 // FIXME: Add a flag to the ScopeInfo to indicate whether we're performing
2766 // deduction.
Richard Smith60e141e2013-05-04 07:00:32 +00002767 if (getLangOpts().CPlusPlus1y) {
2768 if (AutoType *AT = FnRetType->getContainedAutoType()) {
2769 FunctionDecl *FD = cast<FunctionDecl>(CurContext);
Richard Smith37e849a2013-08-14 20:16:31 +00002770 if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
Richard Smith60e141e2013-05-04 07:00:32 +00002771 FD->setInvalidDecl();
2772 return StmtError();
2773 } else {
2774 FnRetType = FD->getResultType();
2775 }
2776 }
2777 }
2778
Richard Smith37e849a2013-08-14 20:16:31 +00002779 bool HasDependentReturnType = FnRetType->isDependentType();
2780
Douglas Gregor5077c382010-05-15 06:01:05 +00002781 ReturnStmt *Result = 0;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002782 if (FnRetType->isVoidType()) {
Nick Lewycky8d794612011-06-01 07:44:31 +00002783 if (RetValExp) {
Sebastian Redl33deb352012-02-22 10:50:08 +00002784 if (isa<InitListExpr>(RetValExp)) {
2785 // We simply never allow init lists as the return value of void
2786 // functions. This is compatible because this was never allowed before,
2787 // so there's no legacy code to deal with.
2788 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
2789 int FunctionKind = 0;
2790 if (isa<ObjCMethodDecl>(CurDecl))
2791 FunctionKind = 1;
2792 else if (isa<CXXConstructorDecl>(CurDecl))
2793 FunctionKind = 2;
2794 else if (isa<CXXDestructorDecl>(CurDecl))
2795 FunctionKind = 3;
2796
2797 Diag(ReturnLoc, diag::err_return_init_list)
2798 << CurDecl->getDeclName() << FunctionKind
2799 << RetValExp->getSourceRange();
2800
2801 // Drop the expression.
2802 RetValExp = 0;
2803 } else if (!RetValExp->isTypeDependent()) {
Nick Lewycky8d794612011-06-01 07:44:31 +00002804 // C99 6.8.6.4p1 (ext_ since GCC warns)
2805 unsigned D = diag::ext_return_has_expr;
2806 if (RetValExp->getType()->isVoidType())
2807 D = diag::ext_return_has_void_expr;
2808 else {
2809 ExprResult Result = Owned(RetValExp);
2810 Result = IgnoredValueConversions(Result.take());
2811 if (Result.isInvalid())
2812 return StmtError();
2813 RetValExp = Result.take();
2814 RetValExp = ImpCastExprToType(RetValExp,
2815 Context.VoidTy, CK_ToVoid).take();
2816 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002817
Nick Lewycky8d794612011-06-01 07:44:31 +00002818 // return (some void expression); is legal in C++.
2819 if (D != diag::ext_return_has_void_expr ||
David Blaikie4e4d0842012-03-11 07:00:24 +00002820 !getLangOpts().CPlusPlus) {
Nick Lewycky8d794612011-06-01 07:44:31 +00002821 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
Chandler Carruthca0d0d42011-06-30 08:56:22 +00002822
2823 int FunctionKind = 0;
2824 if (isa<ObjCMethodDecl>(CurDecl))
2825 FunctionKind = 1;
2826 else if (isa<CXXConstructorDecl>(CurDecl))
2827 FunctionKind = 2;
2828 else if (isa<CXXDestructorDecl>(CurDecl))
2829 FunctionKind = 3;
2830
Nick Lewycky8d794612011-06-01 07:44:31 +00002831 Diag(ReturnLoc, D)
Chandler Carruthca0d0d42011-06-30 08:56:22 +00002832 << CurDecl->getDeclName() << FunctionKind
Nick Lewycky8d794612011-06-01 07:44:31 +00002833 << RetValExp->getSourceRange();
2834 }
Chris Lattnere878eb02008-12-18 02:03:48 +00002835 }
Mike Stump1eb44332009-09-09 15:08:12 +00002836
Sebastian Redl33deb352012-02-22 10:50:08 +00002837 if (RetValExp) {
Richard Smith41956372013-01-14 22:39:08 +00002838 ExprResult ER = ActOnFinishFullExpr(RetValExp, ReturnLoc);
2839 if (ER.isInvalid())
2840 return StmtError();
2841 RetValExp = ER.take();
Sebastian Redl33deb352012-02-22 10:50:08 +00002842 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002843 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002844
Douglas Gregor5077c382010-05-15 06:01:05 +00002845 Result = new (Context) ReturnStmt(ReturnLoc, RetValExp, 0);
Richard Smith60e141e2013-05-04 07:00:32 +00002846 } else if (!RetValExp && !HasDependentReturnType) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002847 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
2848 // C99 6.8.6.4p1 (ext_ since GCC warns)
David Blaikie4e4d0842012-03-11 07:00:24 +00002849 if (getLangOpts().C99) DiagID = diag::ext_return_missing_expr;
Chris Lattner3c73c412008-11-19 08:23:25 +00002850
2851 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner08631c52008-11-23 21:45:46 +00002852 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner3c73c412008-11-19 08:23:25 +00002853 else
Chris Lattner08631c52008-11-23 21:45:46 +00002854 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Douglas Gregor5077c382010-05-15 06:01:05 +00002855 Result = new (Context) ReturnStmt(ReturnLoc);
2856 } else {
Richard Smith60e141e2013-05-04 07:00:32 +00002857 assert(RetValExp || HasDependentReturnType);
Douglas Gregor5077c382010-05-15 06:01:05 +00002858 const VarDecl *NRVOCandidate = 0;
Richard Smith60e141e2013-05-04 07:00:32 +00002859 if (!HasDependentReturnType && !RetValExp->isTypeDependent()) {
Douglas Gregor5077c382010-05-15 06:01:05 +00002860 // we have a non-void function with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002861
John McCall7cca8212013-03-19 07:04:25 +00002862 QualType RetType = (RelatedRetType.isNull() ? FnRetType : RelatedRetType);
Eli Friedman38ac2432012-03-30 01:13:43 +00002863
Douglas Gregor5077c382010-05-15 06:01:05 +00002864 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
2865 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
2866 // function return.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +00002867
John McCall856d3792011-06-16 23:24:51 +00002868 // In C++ the return statement is handled via a copy initialization,
Douglas Gregor5077c382010-05-15 06:01:05 +00002869 // the C version of which boils down to CheckSingleAssignmentConstraints.
Douglas Gregorf5d8f462011-01-21 18:05:27 +00002870 NRVOCandidate = getCopyElisionCandidate(FnRetType, RetValExp, false);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002871 InitializedEntity Entity = InitializedEntity::InitializeResult(ReturnLoc,
John McCall7cca8212013-03-19 07:04:25 +00002872 RetType,
Francois Pichet58f14c02011-06-02 00:47:27 +00002873 NRVOCandidate != 0);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002874 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRVOCandidate,
John McCall7cca8212013-03-19 07:04:25 +00002875 RetType, RetValExp);
Douglas Gregor5077c382010-05-15 06:01:05 +00002876 if (Res.isInvalid()) {
John McCall7cca8212013-03-19 07:04:25 +00002877 // FIXME: Clean up temporaries here anyway?
Douglas Gregor5077c382010-05-15 06:01:05 +00002878 return StmtError();
2879 }
Douglas Gregor5077c382010-05-15 06:01:05 +00002880 RetValExp = Res.takeAs<Expr>();
John McCall7cca8212013-03-19 07:04:25 +00002881
2882 // If we have a related result type, we need to implicitly
2883 // convert back to the formal result type. We can't pretend to
2884 // initialize the result again --- we might end double-retaining
Fariborz Jahanianf92a5092013-07-11 16:48:06 +00002885 // --- so instead we initialize a notional temporary.
John McCall7cca8212013-03-19 07:04:25 +00002886 if (!RelatedRetType.isNull()) {
Fariborz Jahanianf92a5092013-07-11 16:48:06 +00002887 Entity = InitializedEntity::InitializeRelatedResult(getCurMethodDecl(),
2888 FnRetType);
John McCall7cca8212013-03-19 07:04:25 +00002889 Res = PerformCopyInitialization(Entity, ReturnLoc, RetValExp);
2890 if (Res.isInvalid()) {
2891 // FIXME: Clean up temporaries here anyway?
2892 return StmtError();
2893 }
2894 RetValExp = Res.takeAs<Expr>();
2895 }
2896
2897 CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Douglas Gregor66724ea2009-11-14 01:20:54 +00002898 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002899
John McCallb4eb64d2010-10-08 02:01:28 +00002900 if (RetValExp) {
Richard Smith41956372013-01-14 22:39:08 +00002901 ExprResult ER = ActOnFinishFullExpr(RetValExp, ReturnLoc);
2902 if (ER.isInvalid())
2903 return StmtError();
2904 RetValExp = ER.take();
John McCallb4eb64d2010-10-08 02:01:28 +00002905 }
Douglas Gregor5077c382010-05-15 06:01:05 +00002906 Result = new (Context) ReturnStmt(ReturnLoc, RetValExp, NRVOCandidate);
Douglas Gregor898574e2008-12-05 23:32:09 +00002907 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002908
2909 // If we need to check for the named return value optimization, save the
Douglas Gregor5077c382010-05-15 06:01:05 +00002910 // return statement in our scope for later processing.
David Blaikie4e4d0842012-03-11 07:00:24 +00002911 if (getLangOpts().CPlusPlus && FnRetType->isRecordType() &&
Douglas Gregor5077c382010-05-15 06:01:05 +00002912 !CurContext->isDependentContext())
2913 FunctionScopes.back()->Returns.push_back(Result);
Chad Rosier8e1e0542012-06-20 18:51:04 +00002914
Douglas Gregor5077c382010-05-15 06:01:05 +00002915 return Owned(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002916}
2917
John McCall60d7b3a2010-08-24 06:29:42 +00002918StmtResult
Sebastian Redl431e90e2009-01-18 17:43:11 +00002919Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
John McCalld226f652010-08-21 09:40:31 +00002920 SourceLocation RParen, Decl *Parm,
John McCall9ae2f072010-08-23 23:25:46 +00002921 Stmt *Body) {
John McCalld226f652010-08-21 09:40:31 +00002922 VarDecl *Var = cast_or_null<VarDecl>(Parm);
Douglas Gregor160b5632010-04-26 17:32:49 +00002923 if (Var && Var->isInvalidDecl())
2924 return StmtError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002925
John McCall9ae2f072010-08-23 23:25:46 +00002926 return Owned(new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body));
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00002927}
2928
John McCall60d7b3a2010-08-24 06:29:42 +00002929StmtResult
John McCall9ae2f072010-08-23 23:25:46 +00002930Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body) {
2931 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc, Body));
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00002932}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00002933
John McCall60d7b3a2010-08-24 06:29:42 +00002934StmtResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002935Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
John McCall9ae2f072010-08-23 23:25:46 +00002936 MultiStmtArg CatchStmts, Stmt *Finally) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002937 if (!getLangOpts().ObjCExceptions)
Anders Carlssonda4b7cf2011-02-19 23:53:54 +00002938 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@try";
2939
John McCall781472f2010-08-25 08:40:02 +00002940 getCurFunction()->setHasBranchProtectedScope();
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00002941 unsigned NumCatchStmts = CatchStmts.size();
John McCall9ae2f072010-08-23 23:25:46 +00002942 return Owned(ObjCAtTryStmt::Create(Context, AtLoc, Try,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002943 CatchStmts.data(),
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00002944 NumCatchStmts,
John McCall9ae2f072010-08-23 23:25:46 +00002945 Finally));
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00002946}
2947
John McCalld1376ee2012-05-08 21:41:25 +00002948StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) {
Douglas Gregord1377b22010-04-22 21:44:01 +00002949 if (Throw) {
John Wiegley429bb272011-04-08 18:41:53 +00002950 ExprResult Result = DefaultLvalueConversion(Throw);
2951 if (Result.isInvalid())
2952 return StmtError();
John McCall5e3c67b2010-12-15 04:42:30 +00002953
Richard Smith41956372013-01-14 22:39:08 +00002954 Result = ActOnFinishFullExpr(Result.take());
2955 if (Result.isInvalid())
2956 return StmtError();
2957 Throw = Result.take();
2958
Douglas Gregord1377b22010-04-22 21:44:01 +00002959 QualType ThrowType = Throw->getType();
2960 // Make sure the expression type is an ObjC pointer or "void *".
2961 if (!ThrowType->isDependentType() &&
2962 !ThrowType->isObjCObjectPointerType()) {
2963 const PointerType *PT = ThrowType->getAs<PointerType>();
2964 if (!PT || !PT->getPointeeType()->isVoidType())
2965 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
2966 << Throw->getType() << Throw->getSourceRange());
2967 }
2968 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002969
John McCall9ae2f072010-08-23 23:25:46 +00002970 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, Throw));
Douglas Gregord1377b22010-04-22 21:44:01 +00002971}
2972
John McCall60d7b3a2010-08-24 06:29:42 +00002973StmtResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002974Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
Douglas Gregord1377b22010-04-22 21:44:01 +00002975 Scope *CurScope) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002976 if (!getLangOpts().ObjCExceptions)
Anders Carlssonda4b7cf2011-02-19 23:53:54 +00002977 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@throw";
2978
John McCall9ae2f072010-08-23 23:25:46 +00002979 if (!Throw) {
Steve Naroffe21dd6f2009-02-11 20:05:44 +00002980 // @throw without an expression designates a rethrow (which much occur
2981 // in the context of an @catch clause).
2982 Scope *AtCatchParent = CurScope;
2983 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
2984 AtCatchParent = AtCatchParent->getParent();
2985 if (!AtCatchParent)
Steve Naroff4ab24142009-02-12 18:09:32 +00002986 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002987 }
John McCall9ae2f072010-08-23 23:25:46 +00002988 return BuildObjCAtThrowStmt(AtLoc, Throw);
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00002989}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00002990
John McCall07524032011-07-27 21:50:02 +00002991ExprResult
2992Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) {
2993 ExprResult result = DefaultLvalueConversion(operand);
2994 if (result.isInvalid())
2995 return ExprError();
2996 operand = result.take();
2997
2998 // Make sure the expression type is an ObjC pointer or "void *".
2999 QualType type = operand->getType();
3000 if (!type->isDependentType() &&
3001 !type->isObjCObjectPointerType()) {
3002 const PointerType *pointerType = type->getAs<PointerType>();
3003 if (!pointerType || !pointerType->getPointeeType()->isVoidType())
3004 return Diag(atLoc, diag::error_objc_synchronized_expects_object)
3005 << type << operand->getSourceRange();
3006 }
3007
3008 // The operand to @synchronized is a full-expression.
Richard Smith41956372013-01-14 22:39:08 +00003009 return ActOnFinishFullExpr(operand);
John McCall07524032011-07-27 21:50:02 +00003010}
3011
John McCall60d7b3a2010-08-24 06:29:42 +00003012StmtResult
John McCall9ae2f072010-08-23 23:25:46 +00003013Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, Expr *SyncExpr,
3014 Stmt *SyncBody) {
John McCall07524032011-07-27 21:50:02 +00003015 // We can't jump into or indirect-jump out of a @synchronized block.
John McCall781472f2010-08-25 08:40:02 +00003016 getCurFunction()->setHasBranchProtectedScope();
John McCall9ae2f072010-08-23 23:25:46 +00003017 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc, SyncExpr, SyncBody));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00003018}
Sebastian Redl4b07b292008-12-22 19:15:10 +00003019
3020/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
3021/// and creates a proper catch handler from them.
John McCall60d7b3a2010-08-24 06:29:42 +00003022StmtResult
John McCalld226f652010-08-21 09:40:31 +00003023Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,
John McCall9ae2f072010-08-23 23:25:46 +00003024 Stmt *HandlerBlock) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00003025 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek8189cde2009-02-07 01:47:29 +00003026 return Owned(new (Context) CXXCatchStmt(CatchLoc,
John McCalld226f652010-08-21 09:40:31 +00003027 cast_or_null<VarDecl>(ExDecl),
John McCall9ae2f072010-08-23 23:25:46 +00003028 HandlerBlock));
Sebastian Redl4b07b292008-12-22 19:15:10 +00003029}
Sebastian Redl8351da02008-12-22 21:35:02 +00003030
John McCallf85e1932011-06-15 23:02:42 +00003031StmtResult
3032Sema::ActOnObjCAutoreleasePoolStmt(SourceLocation AtLoc, Stmt *Body) {
3033 getCurFunction()->setHasBranchProtectedScope();
3034 return Owned(new (Context) ObjCAutoreleasePoolStmt(AtLoc, Body));
3035}
3036
Dan Gohman3c46e8d2010-07-26 21:25:24 +00003037namespace {
3038
Sebastian Redlc447aba2009-07-29 17:15:45 +00003039class TypeWithHandler {
3040 QualType t;
3041 CXXCatchStmt *stmt;
3042public:
3043 TypeWithHandler(const QualType &type, CXXCatchStmt *statement)
3044 : t(type), stmt(statement) {}
3045
John McCall0953e762009-09-24 19:53:00 +00003046 // An arbitrary order is fine as long as it places identical
3047 // types next to each other.
Sebastian Redlc447aba2009-07-29 17:15:45 +00003048 bool operator<(const TypeWithHandler &y) const {
John McCall0953e762009-09-24 19:53:00 +00003049 if (t.getAsOpaquePtr() < y.t.getAsOpaquePtr())
Sebastian Redlc447aba2009-07-29 17:15:45 +00003050 return true;
John McCall0953e762009-09-24 19:53:00 +00003051 if (t.getAsOpaquePtr() > y.t.getAsOpaquePtr())
Sebastian Redlc447aba2009-07-29 17:15:45 +00003052 return false;
3053 else
3054 return getTypeSpecStartLoc() < y.getTypeSpecStartLoc();
3055 }
Mike Stump1eb44332009-09-09 15:08:12 +00003056
Sebastian Redlc447aba2009-07-29 17:15:45 +00003057 bool operator==(const TypeWithHandler& other) const {
John McCall0953e762009-09-24 19:53:00 +00003058 return t == other.t;
Sebastian Redlc447aba2009-07-29 17:15:45 +00003059 }
Mike Stump1eb44332009-09-09 15:08:12 +00003060
Sebastian Redlc447aba2009-07-29 17:15:45 +00003061 CXXCatchStmt *getCatchStmt() const { return stmt; }
3062 SourceLocation getTypeSpecStartLoc() const {
3063 return stmt->getExceptionDecl()->getTypeSpecStartLoc();
3064 }
3065};
3066
Dan Gohman3c46e8d2010-07-26 21:25:24 +00003067}
3068
Sebastian Redl8351da02008-12-22 21:35:02 +00003069/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
3070/// handlers and creates a try statement from them.
Robert Wilhelm21adb0c2013-08-22 09:20:03 +00003071StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
3072 ArrayRef<Stmt *> Handlers) {
Anders Carlsson729b8532011-02-23 03:46:46 +00003073 // Don't report an error if 'try' is used in system headers.
David Blaikie4e4d0842012-03-11 07:00:24 +00003074 if (!getLangOpts().CXXExceptions &&
Anders Carlsson729b8532011-02-23 03:46:46 +00003075 !getSourceManager().isInSystemHeader(TryLoc))
3076 Diag(TryLoc, diag::err_exceptions_disabled) << "try";
Anders Carlsson7f11d9c2011-02-19 19:26:44 +00003077
Robert Wilhelm21adb0c2013-08-22 09:20:03 +00003078 const unsigned NumHandlers = Handlers.size();
Sebastian Redl8351da02008-12-22 21:35:02 +00003079 assert(NumHandlers > 0 &&
3080 "The parser shouldn't call this if there are no handlers.");
Sebastian Redl8351da02008-12-22 21:35:02 +00003081
Chris Lattner5f9e2722011-07-23 10:55:15 +00003082 SmallVector<TypeWithHandler, 8> TypesWithHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +00003083
3084 for (unsigned i = 0; i < NumHandlers; ++i) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00003085 CXXCatchStmt *Handler = cast<CXXCatchStmt>(Handlers[i]);
Sebastian Redlc447aba2009-07-29 17:15:45 +00003086 if (!Handler->getExceptionDecl()) {
3087 if (i < NumHandlers - 1)
3088 return StmtError(Diag(Handler->getLocStart(),
3089 diag::err_early_catch_all));
Mike Stump1eb44332009-09-09 15:08:12 +00003090
Sebastian Redlc447aba2009-07-29 17:15:45 +00003091 continue;
3092 }
Mike Stump1eb44332009-09-09 15:08:12 +00003093
Sebastian Redlc447aba2009-07-29 17:15:45 +00003094 const QualType CaughtType = Handler->getCaughtType();
3095 const QualType CanonicalCaughtType = Context.getCanonicalType(CaughtType);
3096 TypesWithHandlers.push_back(TypeWithHandler(CanonicalCaughtType, Handler));
Sebastian Redl8351da02008-12-22 21:35:02 +00003097 }
Sebastian Redlc447aba2009-07-29 17:15:45 +00003098
3099 // Detect handlers for the same type as an earlier one.
3100 if (NumHandlers > 1) {
3101 llvm::array_pod_sort(TypesWithHandlers.begin(), TypesWithHandlers.end());
Mike Stump1eb44332009-09-09 15:08:12 +00003102
Sebastian Redlc447aba2009-07-29 17:15:45 +00003103 TypeWithHandler prev = TypesWithHandlers[0];
3104 for (unsigned i = 1; i < TypesWithHandlers.size(); ++i) {
3105 TypeWithHandler curr = TypesWithHandlers[i];
Mike Stump1eb44332009-09-09 15:08:12 +00003106
Sebastian Redlc447aba2009-07-29 17:15:45 +00003107 if (curr == prev) {
3108 Diag(curr.getTypeSpecStartLoc(),
3109 diag::warn_exception_caught_by_earlier_handler)
3110 << curr.getCatchStmt()->getCaughtType().getAsString();
3111 Diag(prev.getTypeSpecStartLoc(),
3112 diag::note_previous_exception_handler)
3113 << prev.getCatchStmt()->getCaughtType().getAsString();
3114 }
Mike Stump1eb44332009-09-09 15:08:12 +00003115
Sebastian Redlc447aba2009-07-29 17:15:45 +00003116 prev = curr;
3117 }
3118 }
Mike Stump1eb44332009-09-09 15:08:12 +00003119
John McCall781472f2010-08-25 08:40:02 +00003120 getCurFunction()->setHasBranchProtectedScope();
John McCallb60a77e2010-08-01 00:26:45 +00003121
Sebastian Redl8351da02008-12-22 21:35:02 +00003122 // FIXME: We should detect handlers that cannot catch anything because an
3123 // earlier handler catches a superclass. Need to find a method that is not
3124 // quadratic for this.
3125 // Neither of these are explicitly forbidden, but every compiler detects them
3126 // and warns.
3127
Robert Wilhelm21adb0c2013-08-22 09:20:03 +00003128 return Owned(CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers));
Sebastian Redl8351da02008-12-22 21:35:02 +00003129}
John Wiegley28bbe4b2011-04-28 01:08:34 +00003130
3131StmtResult
3132Sema::ActOnSEHTryBlock(bool IsCXXTry,
3133 SourceLocation TryLoc,
3134 Stmt *TryBlock,
3135 Stmt *Handler) {
3136 assert(TryBlock && Handler);
3137
3138 getCurFunction()->setHasBranchProtectedScope();
3139
3140 return Owned(SEHTryStmt::Create(Context,IsCXXTry,TryLoc,TryBlock,Handler));
3141}
3142
3143StmtResult
3144Sema::ActOnSEHExceptBlock(SourceLocation Loc,
3145 Expr *FilterExpr,
3146 Stmt *Block) {
3147 assert(FilterExpr && Block);
3148
3149 if(!FilterExpr->getType()->isIntegerType()) {
Francois Pichet58f14c02011-06-02 00:47:27 +00003150 return StmtError(Diag(FilterExpr->getExprLoc(),
3151 diag::err_filter_expression_integral)
3152 << FilterExpr->getType());
John Wiegley28bbe4b2011-04-28 01:08:34 +00003153 }
3154
3155 return Owned(SEHExceptStmt::Create(Context,Loc,FilterExpr,Block));
3156}
3157
3158StmtResult
3159Sema::ActOnSEHFinallyBlock(SourceLocation Loc,
3160 Stmt *Block) {
3161 assert(Block);
3162 return Owned(SEHFinallyStmt::Create(Context,Loc,Block));
3163}
Douglas Gregorba0513d2011-10-25 01:33:02 +00003164
3165StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
3166 bool IsIfExists,
3167 NestedNameSpecifierLoc QualifierLoc,
3168 DeclarationNameInfo NameInfo,
3169 Stmt *Nested)
3170{
3171 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
Chad Rosier1093f492012-08-10 17:56:09 +00003172 QualifierLoc, NameInfo,
Douglas Gregorba0513d2011-10-25 01:33:02 +00003173 cast<CompoundStmt>(Nested));
3174}
3175
3176
Chad Rosier1093f492012-08-10 17:56:09 +00003177StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
Douglas Gregorba0513d2011-10-25 01:33:02 +00003178 bool IsIfExists,
Chad Rosier1093f492012-08-10 17:56:09 +00003179 CXXScopeSpec &SS,
Douglas Gregorba0513d2011-10-25 01:33:02 +00003180 UnqualifiedId &Name,
3181 Stmt *Nested) {
Chad Rosier1093f492012-08-10 17:56:09 +00003182 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
Douglas Gregorba0513d2011-10-25 01:33:02 +00003183 SS.getWithLocInContext(Context),
3184 GetNameFromUnqualifiedId(Name),
3185 Nested);
3186}
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003187
3188RecordDecl*
Ben Langmuir8c045ac2013-05-03 19:00:33 +00003189Sema::CreateCapturedStmtRecordDecl(CapturedDecl *&CD, SourceLocation Loc,
3190 unsigned NumParams) {
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003191 DeclContext *DC = CurContext;
3192 while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext()))
3193 DC = DC->getParent();
3194
3195 RecordDecl *RD = 0;
3196 if (getLangOpts().CPlusPlus)
3197 RD = CXXRecordDecl::Create(Context, TTK_Struct, DC, Loc, Loc, /*Id=*/0);
3198 else
3199 RD = RecordDecl::Create(Context, TTK_Struct, DC, Loc, Loc, /*Id=*/0);
3200
3201 DC->addDecl(RD);
3202 RD->setImplicit();
3203 RD->startDefinition();
3204
Ben Langmuir8c045ac2013-05-03 19:00:33 +00003205 CD = CapturedDecl::Create(Context, CurContext, NumParams);
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003206 DC->addDecl(CD);
3207
Ben Langmuir8c045ac2013-05-03 19:00:33 +00003208 // Build the context parameter
3209 assert(NumParams > 0 && "CapturedStmt requires context parameter");
3210 DC = CapturedDecl::castToDeclContext(CD);
3211 IdentifierInfo *VarName = &Context.Idents.get("__context");
3212 QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD));
3213 ImplicitParamDecl *Param
3214 = ImplicitParamDecl::Create(Context, DC, Loc, VarName, ParamType);
3215 DC->addDecl(Param);
3216
3217 CD->setContextParam(Param);
3218
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003219 return RD;
3220}
3221
3222static void buildCapturedStmtCaptureList(
3223 SmallVectorImpl<CapturedStmt::Capture> &Captures,
3224 SmallVectorImpl<Expr *> &CaptureInits,
3225 ArrayRef<CapturingScopeInfo::Capture> Candidates) {
3226
3227 typedef ArrayRef<CapturingScopeInfo::Capture>::const_iterator CaptureIter;
3228 for (CaptureIter Cap = Candidates.begin(); Cap != Candidates.end(); ++Cap) {
3229
3230 if (Cap->isThisCapture()) {
3231 Captures.push_back(CapturedStmt::Capture(Cap->getLocation(),
3232 CapturedStmt::VCK_This));
Richard Smith0d8e9642013-05-16 06:20:58 +00003233 CaptureInits.push_back(Cap->getInitExpr());
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003234 continue;
3235 }
3236
3237 assert(Cap->isReferenceCapture() &&
3238 "non-reference capture not yet implemented");
3239
3240 Captures.push_back(CapturedStmt::Capture(Cap->getLocation(),
3241 CapturedStmt::VCK_ByRef,
3242 Cap->getVariable()));
Richard Smith0d8e9642013-05-16 06:20:58 +00003243 CaptureInits.push_back(Cap->getInitExpr());
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003244 }
3245}
3246
3247void Sema::ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
Wei Pan9fd6b8f2013-05-04 03:59:06 +00003248 CapturedRegionKind Kind,
3249 unsigned NumParams) {
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003250 CapturedDecl *CD = 0;
Ben Langmuir8c045ac2013-05-03 19:00:33 +00003251 RecordDecl *RD = CreateCapturedStmtRecordDecl(CD, Loc, NumParams);
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003252
3253 // Enter the capturing scope for this captured region.
3254 PushCapturedRegionScope(CurScope, CD, RD, Kind);
3255
3256 if (CurScope)
3257 PushDeclContext(CurScope, CD);
3258 else
3259 CurContext = CD;
3260
3261 PushExpressionEvaluationContext(PotentiallyEvaluated);
3262}
3263
Wei Pan9fd6b8f2013-05-04 03:59:06 +00003264void Sema::ActOnCapturedRegionError() {
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003265 DiscardCleanupsInEvaluationContext();
3266 PopExpressionEvaluationContext();
3267
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003268 CapturedRegionScopeInfo *RSI = getCurCapturedRegion();
3269 RecordDecl *Record = RSI->TheRecordDecl;
3270 Record->setInvalidDecl();
3271
3272 SmallVector<Decl*, 4> Fields;
3273 for (RecordDecl::field_iterator I = Record->field_begin(),
3274 E = Record->field_end(); I != E; ++I)
3275 Fields.push_back(*I);
3276 ActOnFields(/*Scope=*/0, Record->getLocation(), Record, Fields,
3277 SourceLocation(), SourceLocation(), /*AttributeList=*/0);
3278
Wei Pan9fd6b8f2013-05-04 03:59:06 +00003279 PopDeclContext();
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003280 PopFunctionScopeInfo();
3281}
3282
3283StmtResult Sema::ActOnCapturedRegionEnd(Stmt *S) {
3284 CapturedRegionScopeInfo *RSI = getCurCapturedRegion();
3285
3286 SmallVector<CapturedStmt::Capture, 4> Captures;
3287 SmallVector<Expr *, 4> CaptureInits;
3288 buildCapturedStmtCaptureList(Captures, CaptureInits, RSI->Captures);
3289
3290 CapturedDecl *CD = RSI->TheCapturedDecl;
3291 RecordDecl *RD = RSI->TheRecordDecl;
3292
Wei Pan9fd6b8f2013-05-04 03:59:06 +00003293 CapturedStmt *Res = CapturedStmt::Create(getASTContext(), S,
3294 RSI->CapRegionKind, Captures,
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003295 CaptureInits, CD, RD);
3296
3297 CD->setBody(Res->getCapturedStmt());
3298 RD->completeDefinition();
3299
Wei Pan9fd6b8f2013-05-04 03:59:06 +00003300 DiscardCleanupsInEvaluationContext();
3301 PopExpressionEvaluationContext();
3302
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003303 PopDeclContext();
3304 PopFunctionScopeInfo();
3305
3306 return Owned(Res);
3307}