blob: 4ffca8c8f5c730d94136d4d0d44fa1c0c8b624b4 [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
14#include "Sema.h"
Anders Carlsson51fe9962008-11-22 21:04:56 +000015#include "clang/AST/APValue.h"
Chris Lattnerf4021e72007-08-23 05:46:52 +000016#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner419cfb32009-08-16 16:57:27 +000018#include "clang/AST/ExprObjC.h"
Chris Lattner16f00492009-04-26 01:32:48 +000019#include "clang/AST/StmtObjC.h"
20#include "clang/AST/StmtCXX.h"
Anders Carlsson6fa90862007-11-25 00:25:21 +000021#include "clang/Basic/TargetInfo.h"
Sebastian Redlc447aba2009-07-29 17:15:45 +000022#include "llvm/ADT/STLExtras.h"
23#include "llvm/ADT/SmallVector.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
Anders Carlsson6b1d2832009-05-17 21:11:30 +000026Sema::OwningStmtResult Sema::ActOnExprStmt(FullExprArg expr) {
27 Expr *E = expr->takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +000028 assert(E && "ActOnExprStmt(): missing expression");
Fariborz Jahanian16b10372009-09-03 00:43:07 +000029 if (E->getType()->isObjCInterfaceType()) {
30 if (LangOpts.ObjCNonFragileABI)
31 Diag(E->getLocEnd(), diag::err_indirection_requires_nonfragile_object)
32 << E->getType();
33 else
34 Diag(E->getLocEnd(), diag::err_direct_interface_unsupported)
35 << E->getType();
36 return StmtError();
37 }
Chris Lattner834a72a2008-07-25 23:18:17 +000038 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
39 // void expression for its side effects. Conversion to void allows any
40 // operand, even incomplete types.
Sebastian Redla60528c2008-12-21 12:04:03 +000041
Chris Lattner834a72a2008-07-25 23:18:17 +000042 // Same thing in for stmt first clause (when expr) and third clause.
Sebastian Redla60528c2008-12-21 12:04:03 +000043 return Owned(static_cast<Stmt*>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +000044}
45
46
Sebastian Redla60528c2008-12-21 12:04:03 +000047Sema::OwningStmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000048 return Owned(new (Context) NullStmt(SemiLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000049}
50
Chris Lattner682bf922009-03-29 16:50:03 +000051Sema::OwningStmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg,
Sebastian Redla60528c2008-12-21 12:04:03 +000052 SourceLocation StartLoc,
53 SourceLocation EndLoc) {
Chris Lattner682bf922009-03-29 16:50:03 +000054 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
Mike Stump1eb44332009-09-09 15:08:12 +000055
Chris Lattner20401692009-04-12 20:13:14 +000056 // If we have an invalid decl, just return an error.
57 if (DG.isNull()) return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +000058
Chris Lattner24e1e702009-03-04 04:23:07 +000059 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000060}
61
Anders Carlsson636463e2009-07-30 22:17:18 +000062void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
Anders Carlsson75443112009-07-30 22:39:03 +000063 const Expr *E = dyn_cast_or_null<Expr>(S);
Anders Carlsson636463e2009-07-30 22:17:18 +000064 if (!E)
65 return;
66
67 // Ignore expressions that have void type.
68 if (E->getType()->isVoidType())
69 return;
Mike Stump1eb44332009-09-09 15:08:12 +000070
Anders Carlsson636463e2009-07-30 22:17:18 +000071 SourceLocation Loc;
72 SourceRange R1, R2;
73 if (!E->isUnusedResultAWarning(Loc, R1, R2))
74 return;
Mike Stump1eb44332009-09-09 15:08:12 +000075
Chris Lattner419cfb32009-08-16 16:57:27 +000076 // Okay, we have an unused result. Depending on what the base expression is,
77 // we might want to make a more specific diagnostic. Check for one of these
78 // cases now.
79 unsigned DiagID = diag::warn_unused_expr;
80 E = E->IgnoreParens();
Fariborz Jahanian09105f52009-08-20 17:02:02 +000081 if (isa<ObjCImplicitSetterGetterRefExpr>(E))
Chris Lattner419cfb32009-08-16 16:57:27 +000082 DiagID = diag::warn_unused_property_expr;
Mike Stump1eb44332009-09-09 15:08:12 +000083
Chris Lattner419cfb32009-08-16 16:57:27 +000084 Diag(Loc, DiagID) << R1 << R2;
Anders Carlsson636463e2009-07-30 22:17:18 +000085}
86
Sebastian Redla60528c2008-12-21 12:04:03 +000087Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +000088Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Sebastian Redla60528c2008-12-21 12:04:03 +000089 MultiStmtArg elts, bool isStmtExpr) {
90 unsigned NumElts = elts.size();
91 Stmt **Elts = reinterpret_cast<Stmt**>(elts.release());
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000092 // If we're in C89 mode, check that we don't have any decls after stmts. If
93 // so, emit an extension diagnostic.
94 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) {
95 // Note that __extension__ can be around a decl.
96 unsigned i = 0;
97 // Skip over all declarations.
98 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
99 /*empty*/;
100
101 // We found the end of the list or a statement. Scan for another declstmt.
102 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
103 /*empty*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000105 if (i != NumElts) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000106 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000107 Diag(D->getLocation(), diag::ext_mixed_decls_code);
108 }
109 }
Chris Lattner98414c12007-08-31 21:49:55 +0000110 // Warn about unused expressions in statements.
111 for (unsigned i = 0; i != NumElts; ++i) {
Anders Carlsson636463e2009-07-30 22:17:18 +0000112 // Ignore statements that are last in a statement expression.
113 if (isStmtExpr && i == NumElts - 1)
Chris Lattner98414c12007-08-31 21:49:55 +0000114 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000115
Anders Carlsson636463e2009-07-30 22:17:18 +0000116 DiagnoseUnusedExprResult(Elts[i]);
Chris Lattner98414c12007-08-31 21:49:55 +0000117 }
Sebastian Redla60528c2008-12-21 12:04:03 +0000118
Ted Kremenek8189cde2009-02-07 01:47:29 +0000119 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
Reid Spencer5f016e22007-07-11 17:01:13 +0000120}
121
Sebastian Redl117054a2008-12-28 16:13:43 +0000122Action::OwningStmtResult
123Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval,
124 SourceLocation DotDotDotLoc, ExprArg rhsval,
Chris Lattner24e1e702009-03-04 04:23:07 +0000125 SourceLocation ColonLoc) {
Sebastian Redl117054a2008-12-28 16:13:43 +0000126 assert((lhsval.get() != 0) && "missing expression in case statement");
127
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 // C99 6.8.4.2p3: The expression shall be an integer constant.
Mike Stump1eb44332009-09-09 15:08:12 +0000129 // However, GCC allows any evaluatable integer expression.
Sebastian Redl117054a2008-12-28 16:13:43 +0000130 Expr *LHSVal = static_cast<Expr*>(lhsval.get());
Mike Stump1eb44332009-09-09 15:08:12 +0000131 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() &&
Douglas Gregordbb26db2009-05-15 23:57:33 +0000132 VerifyIntegerConstantExpression(LHSVal))
Chris Lattner24e1e702009-03-04 04:23:07 +0000133 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000134
Chris Lattner6c36be52007-07-18 02:28:47 +0000135 // GCC extension: The expression shall be an integer constant.
Sebastian Redl117054a2008-12-28 16:13:43 +0000136
137 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000138 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
139 VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000140 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl117054a2008-12-28 16:13:43 +0000141 rhsval = 0;
142 }
143
Chris Lattnerbcfce662009-04-18 20:10:59 +0000144 if (getSwitchStack().empty()) {
Chris Lattner8a87e572007-07-23 17:05:23 +0000145 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner24e1e702009-03-04 04:23:07 +0000146 return StmtError();
Chris Lattner8a87e572007-07-23 17:05:23 +0000147 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000148
Sebastian Redl117054a2008-12-28 16:13:43 +0000149 // Only now release the smart pointers.
150 lhsval.release();
151 rhsval.release();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000152 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
153 ColonLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000154 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000155 return Owned(CS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000156}
157
Chris Lattner24e1e702009-03-04 04:23:07 +0000158/// ActOnCaseStmtBody - This installs a statement as the body of a case.
159void Sema::ActOnCaseStmtBody(StmtTy *caseStmt, StmtArg subStmt) {
160 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000161 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Chris Lattner24e1e702009-03-04 04:23:07 +0000162 CS->setSubStmt(SubStmt);
163}
164
Sebastian Redl117054a2008-12-28 16:13:43 +0000165Action::OwningStmtResult
Mike Stump1eb44332009-09-09 15:08:12 +0000166Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl117054a2008-12-28 16:13:43 +0000167 StmtArg subStmt, Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000168 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Sebastian Redl117054a2008-12-28 16:13:43 +0000169
Chris Lattnerbcfce662009-04-18 20:10:59 +0000170 if (getSwitchStack().empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000171 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl117054a2008-12-28 16:13:43 +0000172 return Owned(SubStmt);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000173 }
Sebastian Redl117054a2008-12-28 16:13:43 +0000174
Douglas Gregordbb26db2009-05-15 23:57:33 +0000175 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000176 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000177 return Owned(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000178}
179
Sebastian Redlde307472009-01-11 00:38:46 +0000180Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000181Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redlde307472009-01-11 00:38:46 +0000182 SourceLocation ColonLoc, StmtArg subStmt) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000183 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Steve Narofff3cf8972009-02-28 16:48:43 +0000184 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000185 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Narofff3cf8972009-02-28 16:48:43 +0000186
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroffcaaacec2009-03-13 15:38:40 +0000188 if (LabelDecl == 0)
189 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redlde307472009-01-11 00:38:46 +0000190
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redlde307472009-01-11 00:38:46 +0000192
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 // Otherwise, this label was either forward reference or multiply defined. If
194 // multiply defined, reject it now.
195 if (LabelDecl->getSubStmt()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000196 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000197 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redlde307472009-01-11 00:38:46 +0000198 return Owned(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000199 }
Sebastian Redlde307472009-01-11 00:38:46 +0000200
Reid Spencer5f016e22007-07-11 17:01:13 +0000201 // Otherwise, this label was forward declared, and we just found its real
202 // definition. Fill in the forward definition and return it.
203 LabelDecl->setIdentLoc(IdentLoc);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000204 LabelDecl->setSubStmt(SubStmt);
Sebastian Redlde307472009-01-11 00:38:46 +0000205 return Owned(LabelDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000206}
207
Sebastian Redlde307472009-01-11 00:38:46 +0000208Action::OwningStmtResult
Anders Carlssona99fad82009-05-17 18:26:53 +0000209Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal,
Sebastian Redlde307472009-01-11 00:38:46 +0000210 StmtArg ThenVal, SourceLocation ElseLoc,
211 StmtArg ElseVal) {
Anders Carlssona99fad82009-05-17 18:26:53 +0000212 OwningExprResult CondResult(CondVal.release());
Mike Stump1eb44332009-09-09 15:08:12 +0000213
Anders Carlssona99fad82009-05-17 18:26:53 +0000214 Expr *condExpr = CondResult.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000215
Steve Naroff1b273c42007-09-16 14:56:35 +0000216 assert(condExpr && "ActOnIfStmt(): missing expression");
Sebastian Redlde307472009-01-11 00:38:46 +0000217
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000218 if (!condExpr->isTypeDependent()) {
219 DefaultFunctionArrayConversion(condExpr);
220 // Take ownership again until we're past the error checking.
Anders Carlssona99fad82009-05-17 18:26:53 +0000221 CondResult = condExpr;
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000222 QualType condType = condExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000223
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000224 if (getLangOptions().CPlusPlus) {
225 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
226 return StmtError();
227 } else if (!condType->isScalarType()) // C99 6.8.4.1p1
Mike Stump1eb44332009-09-09 15:08:12 +0000228 return StmtError(Diag(IfLoc,
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000229 diag::err_typecheck_statement_requires_scalar)
230 << condType << condExpr->getSourceRange());
231 }
Sebastian Redlde307472009-01-11 00:38:46 +0000232
Anders Carlssone9146f22009-05-01 19:49:17 +0000233 Stmt *thenStmt = ThenVal.takeAs<Stmt>();
Anders Carlsson75443112009-07-30 22:39:03 +0000234 DiagnoseUnusedExprResult(thenStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000235
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000236 // Warn if the if block has a null body without an else value.
237 // this helps prevent bugs due to typos, such as
238 // if (condition);
239 // do_stuff();
Mike Stump1eb44332009-09-09 15:08:12 +0000240 if (!ElseVal.get()) {
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000241 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
242 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
243 }
244
Anders Carlsson75443112009-07-30 22:39:03 +0000245 Stmt *elseStmt = ElseVal.takeAs<Stmt>();
246 DiagnoseUnusedExprResult(elseStmt);
Mike Stump1eb44332009-09-09 15:08:12 +0000247
Anders Carlssona99fad82009-05-17 18:26:53 +0000248 CondResult.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000249 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
Anders Carlsson75443112009-07-30 22:39:03 +0000250 ElseLoc, elseStmt));
Reid Spencer5f016e22007-07-11 17:01:13 +0000251}
252
Sebastian Redlde307472009-01-11 00:38:46 +0000253Action::OwningStmtResult
254Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000255 Expr *Cond = cond.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000256
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000257 if (getLangOptions().CPlusPlus) {
258 // C++ 6.4.2.p2:
259 // The condition shall be of integral type, enumeration type, or of a class
260 // type for which a single conversion function to integral or enumeration
261 // type exists (12.3). If the condition is of class type, the condition is
262 // converted by calling that conversion function, and the result of the
263 // conversion is used in place of the original condition for the remainder
264 // of this section. Integral promotions are performed.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000265 if (!Cond->isTypeDependent()) {
266 QualType Ty = Cond->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Douglas Gregordbb26db2009-05-15 23:57:33 +0000268 // FIXME: Handle class types.
Mike Stump1eb44332009-09-09 15:08:12 +0000269
Douglas Gregordbb26db2009-05-15 23:57:33 +0000270 // If the type is wrong a diagnostic will be emitted later at
271 // ActOnFinishSwitchStmt.
272 if (Ty->isIntegralType() || Ty->isEnumeralType()) {
273 // Integral promotions are performed.
274 // FIXME: Integral promotions for C++ are not complete.
275 UsualUnaryConversions(Cond);
276 }
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000277 }
278 } else {
279 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
280 UsualUnaryConversions(Cond);
281 }
Sebastian Redlde307472009-01-11 00:38:46 +0000282
Ted Kremenek8189cde2009-02-07 01:47:29 +0000283 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000284 getSwitchStack().push_back(SS);
Sebastian Redlde307472009-01-11 00:38:46 +0000285 return Owned(SS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000286}
Chris Lattner6c36be52007-07-18 02:28:47 +0000287
Chris Lattnerf4021e72007-08-23 05:46:52 +0000288/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
289/// the specified width and sign. If an overflow occurs, detect it and emit
290/// the specified diagnostic.
291void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
292 unsigned NewWidth, bool NewSign,
Mike Stump1eb44332009-09-09 15:08:12 +0000293 SourceLocation Loc,
Chris Lattnerf4021e72007-08-23 05:46:52 +0000294 unsigned DiagID) {
295 // Perform a conversion to the promoted condition type if needed.
296 if (NewWidth > Val.getBitWidth()) {
297 // If this is an extension, just do it.
298 llvm::APSInt OldVal(Val);
299 Val.extend(NewWidth);
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Chris Lattnerf4021e72007-08-23 05:46:52 +0000301 // If the input was signed and negative and the output is unsigned,
302 // warn.
303 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000304 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattnerf4021e72007-08-23 05:46:52 +0000306 Val.setIsSigned(NewSign);
307 } else if (NewWidth < Val.getBitWidth()) {
308 // If this is a truncation, check for overflow.
309 llvm::APSInt ConvVal(Val);
310 ConvVal.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000311 ConvVal.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000312 ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000313 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000314 if (ConvVal != Val)
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000315 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Chris Lattnerf4021e72007-08-23 05:46:52 +0000317 // Regardless of whether a diagnostic was emitted, really do the
318 // truncation.
319 Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000320 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000321 } else if (NewSign != Val.isSigned()) {
322 // Convert the sign to match the sign of the condition. This can cause
323 // overflow as well: unsigned(INTMIN)
324 llvm::APSInt OldVal(Val);
325 Val.setIsSigned(NewSign);
Mike Stump1eb44332009-09-09 15:08:12 +0000326
Chris Lattnerf4021e72007-08-23 05:46:52 +0000327 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000328 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000329 }
330}
331
Chris Lattner0471f5b2007-08-23 18:29:20 +0000332namespace {
333 struct CaseCompareFunctor {
334 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
335 const llvm::APSInt &RHS) {
336 return LHS.first < RHS;
337 }
Chris Lattner0e85a272007-09-03 18:31:57 +0000338 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
339 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
340 return LHS.first < RHS.first;
341 }
Chris Lattner0471f5b2007-08-23 18:29:20 +0000342 bool operator()(const llvm::APSInt &LHS,
343 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
344 return LHS < RHS.first;
345 }
346 };
347}
348
Chris Lattner764a7ce2007-09-21 18:15:22 +0000349/// CmpCaseVals - Comparison predicate for sorting case values.
350///
351static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
352 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
353 if (lhs.first < rhs.first)
354 return true;
355
356 if (lhs.first == rhs.first &&
357 lhs.second->getCaseLoc().getRawEncoding()
358 < rhs.second->getCaseLoc().getRawEncoding())
359 return true;
360 return false;
361}
362
Sebastian Redlde307472009-01-11 00:38:46 +0000363Action::OwningStmtResult
364Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
365 StmtArg Body) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000366 Stmt *BodyStmt = Body.takeAs<Stmt>();
Sebastian Redlde307472009-01-11 00:38:46 +0000367
Chris Lattnerbcfce662009-04-18 20:10:59 +0000368 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redlde307472009-01-11 00:38:46 +0000369 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
370
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000371 SS->setBody(BodyStmt, SwitchLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000372 getSwitchStack().pop_back();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000373
Chris Lattnerf4021e72007-08-23 05:46:52 +0000374 Expr *CondExpr = SS->getCond();
375 QualType CondType = CondExpr->getType();
Sebastian Redlde307472009-01-11 00:38:46 +0000376
Mike Stump1eb44332009-09-09 15:08:12 +0000377 if (!CondExpr->isTypeDependent() &&
Douglas Gregordbb26db2009-05-15 23:57:33 +0000378 !CondType->isIntegerType()) { // C99 6.8.4.2p1
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000379 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000380 << CondType << CondExpr->getSourceRange();
Sebastian Redlde307472009-01-11 00:38:46 +0000381 return StmtError();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000382 }
Sebastian Redlde307472009-01-11 00:38:46 +0000383
Chris Lattnerf4021e72007-08-23 05:46:52 +0000384 // Get the bitwidth of the switched-on value before promotions. We must
385 // convert the integer case values to this width before comparison.
Mike Stump1eb44332009-09-09 15:08:12 +0000386 bool HasDependentValue
Douglas Gregordbb26db2009-05-15 23:57:33 +0000387 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
Mike Stump1eb44332009-09-09 15:08:12 +0000388 unsigned CondWidth
Douglas Gregordbb26db2009-05-15 23:57:33 +0000389 = HasDependentValue? 0
390 : static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000391 bool CondIsSigned = CondType->isSignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +0000392
Chris Lattnerf4021e72007-08-23 05:46:52 +0000393 // Accumulate all of the case values in a vector so that we can sort them
394 // and detect duplicates. This vector contains the APInt for the case after
395 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000396 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
397 CaseValsTy CaseVals;
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattnerf4021e72007-08-23 05:46:52 +0000399 // Keep track of any GNU case ranges we see. The APSInt is the low value.
400 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
Mike Stump1eb44332009-09-09 15:08:12 +0000401
Chris Lattnerf4021e72007-08-23 05:46:52 +0000402 DefaultStmt *TheDefaultStmt = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000403
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000404 bool CaseListIsErroneous = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000405
Douglas Gregordbb26db2009-05-15 23:57:33 +0000406 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000407 SC = SC->getNextSwitchCase()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000409 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000410 if (TheDefaultStmt) {
411 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner5f4a6822008-11-23 23:12:31 +0000412 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redlde307472009-01-11 00:38:46 +0000413
Chris Lattnerf4021e72007-08-23 05:46:52 +0000414 // FIXME: Remove the default statement from the switch block so that
Mike Stump390b4cc2009-05-16 07:39:55 +0000415 // we'll return a valid AST. This requires recursing down the AST and
416 // finding it, not something we are set up to do right now. For now,
417 // just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000418 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000419 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000420 TheDefaultStmt = DS;
Mike Stump1eb44332009-09-09 15:08:12 +0000421
Chris Lattnerf4021e72007-08-23 05:46:52 +0000422 } else {
423 CaseStmt *CS = cast<CaseStmt>(SC);
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Chris Lattnerf4021e72007-08-23 05:46:52 +0000425 // We already verified that the expression has a i-c-e value (C99
426 // 6.8.4.2p3) - get that value now.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000427 Expr *Lo = CS->getLHS();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000428
429 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
430 HasDependentValue = true;
431 break;
432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Anders Carlsson51fe9962008-11-22 21:04:56 +0000434 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Chris Lattnerf4021e72007-08-23 05:46:52 +0000436 // Convert the value to the same width/sign as the condition.
437 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
438 CS->getLHS()->getLocStart(),
439 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000440
Chris Lattner1e0a3902008-01-16 19:17:22 +0000441 // If the LHS is not the same type as the condition, insert an implicit
442 // cast.
443 ImpCastExprToType(Lo, CondType);
444 CS->setLHS(Lo);
Mike Stump1eb44332009-09-09 15:08:12 +0000445
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000446 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000447 if (CS->getRHS()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000448 if (CS->getRHS()->isTypeDependent() ||
Douglas Gregordbb26db2009-05-15 23:57:33 +0000449 CS->getRHS()->isValueDependent()) {
450 HasDependentValue = true;
451 break;
452 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000453 CaseRanges.push_back(std::make_pair(LoVal, CS));
Mike Stump1eb44332009-09-09 15:08:12 +0000454 } else
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000455 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000456 }
457 }
Douglas Gregordbb26db2009-05-15 23:57:33 +0000458
459 if (!HasDependentValue) {
460 // Sort all the scalar case values so we can easily detect duplicates.
461 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
462
463 if (!CaseVals.empty()) {
464 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
465 if (CaseVals[i].first == CaseVals[i+1].first) {
466 // If we have a duplicate, report it.
467 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
468 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000469 Diag(CaseVals[i].second->getLHS()->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000470 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000471 // FIXME: We really want to remove the bogus case stmt from the
472 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000473 CaseListIsErroneous = true;
474 }
475 }
476 }
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Douglas Gregordbb26db2009-05-15 23:57:33 +0000478 // Detect duplicate case ranges, which usually don't exist at all in
479 // the first place.
480 if (!CaseRanges.empty()) {
481 // Sort all the case ranges by their low value so we can easily detect
482 // overlaps between ranges.
483 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Douglas Gregordbb26db2009-05-15 23:57:33 +0000485 // Scan the ranges, computing the high values and removing empty ranges.
486 std::vector<llvm::APSInt> HiVals;
487 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
488 CaseStmt *CR = CaseRanges[i].second;
489 Expr *Hi = CR->getRHS();
490 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Douglas Gregordbb26db2009-05-15 23:57:33 +0000492 // Convert the value to the same width/sign as the condition.
493 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
494 CR->getRHS()->getLocStart(),
495 diag::warn_case_value_overflow);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Douglas Gregordbb26db2009-05-15 23:57:33 +0000497 // If the LHS is not the same type as the condition, insert an implicit
498 // cast.
499 ImpCastExprToType(Hi, CondType);
500 CR->setRHS(Hi);
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Douglas Gregordbb26db2009-05-15 23:57:33 +0000502 // If the low value is bigger than the high value, the case is empty.
503 if (CaseRanges[i].first > HiVal) {
504 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
505 << SourceRange(CR->getLHS()->getLocStart(),
506 CR->getRHS()->getLocEnd());
507 CaseRanges.erase(CaseRanges.begin()+i);
508 --i, --e;
509 continue;
510 }
511 HiVals.push_back(HiVal);
512 }
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Douglas Gregordbb26db2009-05-15 23:57:33 +0000514 // Rescan the ranges, looking for overlap with singleton values and other
515 // ranges. Since the range list is sorted, we only need to compare case
516 // ranges with their neighbors.
517 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
518 llvm::APSInt &CRLo = CaseRanges[i].first;
519 llvm::APSInt &CRHi = HiVals[i];
520 CaseStmt *CR = CaseRanges[i].second;
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Douglas Gregordbb26db2009-05-15 23:57:33 +0000522 // Check to see whether the case range overlaps with any
523 // singleton cases.
524 CaseStmt *OverlapStmt = 0;
525 llvm::APSInt OverlapVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Douglas Gregordbb26db2009-05-15 23:57:33 +0000527 // Find the smallest value >= the lower bound. If I is in the
528 // case range, then we have overlap.
529 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
530 CaseVals.end(), CRLo,
531 CaseCompareFunctor());
532 if (I != CaseVals.end() && I->first < CRHi) {
533 OverlapVal = I->first; // Found overlap with scalar.
534 OverlapStmt = I->second;
535 }
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Douglas Gregordbb26db2009-05-15 23:57:33 +0000537 // Find the smallest value bigger than the upper bound.
538 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
539 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
540 OverlapVal = (I-1)->first; // Found overlap with scalar.
541 OverlapStmt = (I-1)->second;
542 }
Mike Stump1eb44332009-09-09 15:08:12 +0000543
Douglas Gregordbb26db2009-05-15 23:57:33 +0000544 // Check to see if this case stmt overlaps with the subsequent
545 // case range.
546 if (i && CRLo <= HiVals[i-1]) {
547 OverlapVal = HiVals[i-1]; // Found overlap with range.
548 OverlapStmt = CaseRanges[i-1].second;
549 }
Mike Stump1eb44332009-09-09 15:08:12 +0000550
Douglas Gregordbb26db2009-05-15 23:57:33 +0000551 if (OverlapStmt) {
552 // If we have a duplicate, report it.
553 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
554 << OverlapVal.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000555 Diag(OverlapStmt->getLHS()->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000556 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000557 // FIXME: We really want to remove the bogus case stmt from the
558 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000559 CaseListIsErroneous = true;
560 }
Chris Lattnerf3348502007-08-23 14:29:07 +0000561 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000562 }
563 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000564
Mike Stump390b4cc2009-05-16 07:39:55 +0000565 // FIXME: If the case list was broken is some way, we don't have a good system
566 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000567 if (CaseListIsErroneous)
Sebastian Redlde307472009-01-11 00:38:46 +0000568 return StmtError();
569
570 Switch.release();
571 return Owned(SS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000572}
573
Sebastian Redlf05b1522009-01-16 23:28:06 +0000574Action::OwningStmtResult
Anders Carlsson7f537c12009-05-17 21:22:26 +0000575Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, StmtArg Body) {
576 ExprArg CondArg(Cond.release());
577 Expr *condExpr = CondArg.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000578 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000579
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000580 if (!condExpr->isTypeDependent()) {
581 DefaultFunctionArrayConversion(condExpr);
Anders Carlsson7f537c12009-05-17 21:22:26 +0000582 CondArg = condExpr;
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000583 QualType condType = condExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000584
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000585 if (getLangOptions().CPlusPlus) {
586 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
587 return StmtError();
588 } else if (!condType->isScalarType()) // C99 6.8.5p2
589 return StmtError(Diag(WhileLoc,
590 diag::err_typecheck_statement_requires_scalar)
591 << condType << condExpr->getSourceRange());
592 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000593
Anders Carlsson75443112009-07-30 22:39:03 +0000594 Stmt *bodyStmt = Body.takeAs<Stmt>();
595 DiagnoseUnusedExprResult(bodyStmt);
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Anders Carlsson7f537c12009-05-17 21:22:26 +0000597 CondArg.release();
Anders Carlsson75443112009-07-30 22:39:03 +0000598 return Owned(new (Context) WhileStmt(condExpr, bodyStmt, WhileLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000599}
600
Sebastian Redlf05b1522009-01-16 23:28:06 +0000601Action::OwningStmtResult
602Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
Chris Lattner98913592009-06-12 23:04:47 +0000603 SourceLocation WhileLoc, SourceLocation CondLParen,
604 ExprArg Cond, SourceLocation CondRParen) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000605 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000606 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000607
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000608 if (!condExpr->isTypeDependent()) {
609 DefaultFunctionArrayConversion(condExpr);
610 Cond = condExpr;
611 QualType condType = condExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000613 if (getLangOptions().CPlusPlus) {
614 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
615 return StmtError();
616 } else if (!condType->isScalarType()) // C99 6.8.5p2
Mike Stump1eb44332009-09-09 15:08:12 +0000617 return StmtError(Diag(DoLoc,
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000618 diag::err_typecheck_statement_requires_scalar)
619 << condType << condExpr->getSourceRange());
620 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000621
Anders Carlsson75443112009-07-30 22:39:03 +0000622 Stmt *bodyStmt = Body.takeAs<Stmt>();
623 DiagnoseUnusedExprResult(bodyStmt);
624
Sebastian Redlf05b1522009-01-16 23:28:06 +0000625 Cond.release();
Anders Carlsson75443112009-07-30 22:39:03 +0000626 return Owned(new (Context) DoStmt(bodyStmt, condExpr, DoLoc,
Chris Lattner98913592009-06-12 23:04:47 +0000627 WhileLoc, CondRParen));
Reid Spencer5f016e22007-07-11 17:01:13 +0000628}
629
Sebastian Redlf05b1522009-01-16 23:28:06 +0000630Action::OwningStmtResult
631Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
632 StmtArg first, ExprArg second, ExprArg third,
633 SourceLocation RParenLoc, StmtArg body) {
634 Stmt *First = static_cast<Stmt*>(first.get());
635 Expr *Second = static_cast<Expr*>(second.get());
636 Expr *Third = static_cast<Expr*>(third.get());
637 Stmt *Body = static_cast<Stmt*>(body.get());
638
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000639 if (!getLangOptions().CPlusPlus) {
640 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000641 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
642 // declare identifiers for objects having storage class 'auto' or
643 // 'register'.
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000644 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
645 DI!=DE; ++DI) {
646 VarDecl *VD = dyn_cast<VarDecl>(*DI);
647 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
648 VD = 0;
649 if (VD == 0)
650 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
651 // FIXME: mark decl erroneous!
652 }
Chris Lattnerae3b7012007-08-28 05:03:08 +0000653 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 }
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000655 if (Second && !Second->isTypeDependent()) {
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000656 DefaultFunctionArrayConversion(Second);
657 QualType SecondType = Second->getType();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000658
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000659 if (getLangOptions().CPlusPlus) {
660 if (CheckCXXBooleanCondition(Second)) // C++ 6.4p4
Sebastian Redlf05b1522009-01-16 23:28:06 +0000661 return StmtError();
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000662 } else if (!SecondType->isScalarType()) // C99 6.8.5p2
Sebastian Redlf05b1522009-01-16 23:28:06 +0000663 return StmtError(Diag(ForLoc,
664 diag::err_typecheck_statement_requires_scalar)
665 << SecondType << Second->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 }
Mike Stump1eb44332009-09-09 15:08:12 +0000667
Anders Carlsson3af708f2009-08-01 01:39:59 +0000668 DiagnoseUnusedExprResult(First);
669 DiagnoseUnusedExprResult(Third);
Anders Carlsson75443112009-07-30 22:39:03 +0000670 DiagnoseUnusedExprResult(Body);
671
Sebastian Redlf05b1522009-01-16 23:28:06 +0000672 first.release();
673 second.release();
674 third.release();
675 body.release();
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000676 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc,
677 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000678}
679
Sebastian Redlf05b1522009-01-16 23:28:06 +0000680Action::OwningStmtResult
681Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
682 SourceLocation LParenLoc,
683 StmtArg first, ExprArg second,
684 SourceLocation RParenLoc, StmtArg body) {
685 Stmt *First = static_cast<Stmt*>(first.get());
686 Expr *Second = static_cast<Expr*>(second.get());
687 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian20552d22008-01-10 20:33:58 +0000688 if (First) {
689 QualType FirstType;
690 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner7e24e822009-03-28 06:33:19 +0000691 if (!DS->isSingleDecl())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000692 return StmtError(Diag((*DS->decl_begin())->getLocation(),
693 diag::err_toomany_element_decls));
694
Chris Lattner7e24e822009-03-28 06:33:19 +0000695 Decl *D = DS->getSingleDecl();
Ted Kremenekf34afee2008-10-06 20:58:11 +0000696 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000697 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
698 // declare identifiers for objects having storage class 'auto' or
699 // 'register'.
Steve Naroff248a7532008-04-15 22:42:06 +0000700 VarDecl *VD = cast<VarDecl>(D);
701 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000702 return StmtError(Diag(VD->getLocation(),
703 diag::err_non_variable_decl_in_for));
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000704 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000705 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redlf05b1522009-01-16 23:28:06 +0000706 return StmtError(Diag(First->getLocStart(),
707 diag::err_selector_element_not_lvalue)
708 << First->getSourceRange());
709
Mike Stump1eb44332009-09-09 15:08:12 +0000710 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000711 }
Mike Stump1eb44332009-09-09 15:08:12 +0000712 if (!FirstType->isObjCObjectPointerType() &&
Fariborz Jahaniana5e42a82009-08-14 21:53:27 +0000713 !FirstType->isBlockPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000714 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000715 << FirstType << First->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000716 }
717 if (Second) {
718 DefaultFunctionArrayConversion(Second);
719 QualType SecondType = Second->getType();
Steve Narofff4954562009-07-16 15:41:00 +0000720 if (!SecondType->isObjCObjectPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000721 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000722 << SecondType << Second->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000723 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000724 first.release();
725 second.release();
726 body.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000727 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
728 ForLoc, RParenLoc));
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000729}
Reid Spencer5f016e22007-07-11 17:01:13 +0000730
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000731Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000732Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000733 IdentifierInfo *LabelII) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000734 // If we are in a block, reject all gotos for now.
735 if (CurBlock)
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000736 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000737
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000739 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Reid Spencer5f016e22007-07-11 17:01:13 +0000740
Steve Naroffcaaacec2009-03-13 15:38:40 +0000741 // If we haven't seen this label yet, create a forward reference.
742 if (LabelDecl == 0)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000743 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000744
Ted Kremenek8189cde2009-02-07 01:47:29 +0000745 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000746}
747
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000748Action::OwningStmtResult
Chris Lattnerad56d682009-04-19 01:04:21 +0000749Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000750 ExprArg DestExp) {
Eli Friedmanbbf46232009-03-26 00:18:06 +0000751 // Convert operand to void*
Eli Friedman33083822009-03-26 07:32:37 +0000752 Expr* E = DestExp.takeAs<Expr>();
Douglas Gregor5f1b9e62009-05-16 00:20:29 +0000753 if (!E->isTypeDependent()) {
754 QualType ETy = E->getType();
755 AssignConvertType ConvTy =
756 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
757 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
758 E, "passing"))
759 return StmtError();
760 }
761 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000762}
763
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000764Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000765Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000766 Scope *S = CurScope->getContinueParent();
767 if (!S) {
768 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000769 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Reid Spencer5f016e22007-07-11 17:01:13 +0000770 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000771
Ted Kremenek8189cde2009-02-07 01:47:29 +0000772 return Owned(new (Context) ContinueStmt(ContinueLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000773}
774
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000775Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000776Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000777 Scope *S = CurScope->getBreakParent();
778 if (!S) {
779 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000780 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Reid Spencer5f016e22007-07-11 17:01:13 +0000781 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000782
Ted Kremenek8189cde2009-02-07 01:47:29 +0000783 return Owned(new (Context) BreakStmt(BreakLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000784}
785
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000786/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000787///
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000788Action::OwningStmtResult
Steve Naroff4eb206b2008-09-03 18:15:37 +0000789Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000790 // If this is the first return we've seen in the block, infer the type of
791 // the block from it.
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000792 if (CurBlock->ReturnType.isNull()) {
Steve Naroffc50a4a52008-09-16 22:25:10 +0000793 if (RetValExp) {
Steve Naroff16564422008-09-24 22:26:48 +0000794 // Don't call UsualUnaryConversions(), since we don't want to do
795 // integer promotions here.
796 DefaultFunctionArrayConversion(RetValExp);
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000797 CurBlock->ReturnType = RetValExp->getType();
798 if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(RetValExp)) {
799 // We have to remove a 'const' added to copied-in variable which was
800 // part of the implementation spec. and not the actual qualifier for
801 // the variable.
802 if (CDRE->isConstQualAdded())
803 CurBlock->ReturnType.removeConst();
804 }
Steve Naroffc50a4a52008-09-16 22:25:10 +0000805 } else
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000806 CurBlock->ReturnType = Context.VoidTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +0000807 }
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000808 QualType FnRetType = CurBlock->ReturnType;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000809
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000810 if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) {
Mike Stump6c92fa72009-04-29 21:40:37 +0000811 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr)
812 << getCurFunctionOrMethodDecl()->getDeclName();
813 return StmtError();
814 }
815
Steve Naroff4eb206b2008-09-03 18:15:37 +0000816 // Otherwise, verify that this result type matches the previous one. We are
817 // pickier with blocks than for normal functions because we don't have GCC
818 // compatibility to worry about here.
819 if (CurBlock->ReturnType->isVoidType()) {
820 if (RetValExp) {
821 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000822 RetValExp->Destroy(Context);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000823 RetValExp = 0;
824 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000825 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000826 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000827
828 if (!RetValExp)
829 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
830
Mike Stump98eb8a72009-02-04 22:31:32 +0000831 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
832 // we have a non-void block with an expression, continue checking
833 QualType RetValType = RetValExp->getType();
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000834
Mike Stump1eb44332009-09-09 15:08:12 +0000835 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
836 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Mike Stump98eb8a72009-02-04 22:31:32 +0000837 // function return.
838
839 // In C++ the return statement is handled via a copy initialization.
840 // the C version of which boils down to CheckSingleAssignmentConstraints.
841 // FIXME: Leaks RetValExp.
842 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
843 return StmtError();
844
845 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000846 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000847
Ted Kremenek8189cde2009-02-07 01:47:29 +0000848 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000849}
Reid Spencer5f016e22007-07-11 17:01:13 +0000850
Sebastian Redle2b68332009-04-12 17:16:29 +0000851/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
852/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
853static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
854 Expr *RetExpr) {
855 QualType ExprType = RetExpr->getType();
856 // - in a return statement in a function with ...
857 // ... a class return type ...
858 if (!RetType->isRecordType())
859 return false;
860 // ... the same cv-unqualified type as the function return type ...
861 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
862 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
863 return false;
864 // ... the expression is the name of a non-volatile automatic object ...
865 // We ignore parentheses here.
866 // FIXME: Is this compliant?
867 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
868 if (!DR)
869 return false;
870 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
871 if (!VD)
872 return false;
873 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
874 && !VD->getType().isVolatileQualified();
875}
876
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000877Action::OwningStmtResult
Anders Carlssonf53b4432009-08-18 16:11:00 +0000878Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprArg rex) {
879 Expr *RetValExp = rex.takeAs<Expr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000880 if (CurBlock)
881 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000882
Chris Lattner371f2582008-12-04 23:50:19 +0000883 QualType FnRetType;
Mike Stumpf7c41da2009-04-29 00:43:21 +0000884 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattner371f2582008-12-04 23:50:19 +0000885 FnRetType = FD->getResultType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000886 if (FD->hasAttr<NoReturnAttr>())
Chris Lattner86625872009-05-31 19:32:13 +0000887 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Mike Stumpf7c41da2009-04-29 00:43:21 +0000888 << getCurFunctionOrMethodDecl()->getDeclName();
Mike Stumpf7c41da2009-04-29 00:43:21 +0000889 } else if (ObjCMethodDecl *MD = getCurMethodDecl())
Steve Naroffc97fb9a2009-03-03 00:45:38 +0000890 FnRetType = MD->getResultType();
891 else // If we don't have a function/method context, bail.
892 return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +0000893
Chris Lattner5cf216b2008-01-04 18:04:52 +0000894 if (FnRetType->isVoidType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000895 if (RetValExp) {// C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner65ce04b2008-12-18 02:01:17 +0000896 unsigned D = diag::ext_return_has_expr;
897 if (RetValExp->getType()->isVoidType())
898 D = diag::ext_return_has_void_expr;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000899
Chris Lattnere878eb02008-12-18 02:03:48 +0000900 // return (some void expression); is legal in C++.
901 if (D != diag::ext_return_has_void_expr ||
902 !getLangOptions().CPlusPlus) {
903 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
904 Diag(ReturnLoc, D)
905 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
906 << RetValExp->getSourceRange();
907 }
Mike Stump1eb44332009-09-09 15:08:12 +0000908
Anders Carlssonf53b4432009-08-18 16:11:00 +0000909 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000910 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000911 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000912 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000913
Anders Carlsson03d77762009-05-15 00:48:27 +0000914 if (!RetValExp && !FnRetType->isDependentType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000915 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
916 // C99 6.8.6.4p1 (ext_ since GCC warns)
917 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
918
919 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner08631c52008-11-23 21:45:46 +0000920 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner3c73c412008-11-19 08:23:25 +0000921 else
Chris Lattner08631c52008-11-23 21:45:46 +0000922 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000923 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner3c73c412008-11-19 08:23:25 +0000924 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000925
Douglas Gregor898574e2008-12-05 23:32:09 +0000926 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
927 // we have a non-void function with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000928
Mike Stump1eb44332009-09-09 15:08:12 +0000929 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
930 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000931 // function return.
932
Sebastian Redle2b68332009-04-12 17:16:29 +0000933 // C++0x 12.8p15: When certain criteria are met, an implementation is
934 // allowed to omit the copy construction of a class object, [...]
935 // - in a return statement in a function with a class return type, when
936 // the expression is the name of a non-volatile automatic object with
937 // the same cv-unqualified type as the function return type, the copy
938 // operation can be omitted [...]
939 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
940 // and the object to be copied is designated by an lvalue, overload
941 // resolution to select the constructor for the copy is first performed
942 // as if the object were designated by an rvalue.
943 // Note that we only compute Elidable if we're in C++0x, since we don't
944 // care otherwise.
945 bool Elidable = getLangOptions().CPlusPlus0x ?
946 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
947 false;
948
Douglas Gregor898574e2008-12-05 23:32:09 +0000949 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000950 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redle2b68332009-04-12 17:16:29 +0000951 // FIXME: Leaks RetValExp on error.
952 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable))
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000953 return StmtError();
954
Douglas Gregor898574e2008-12-05 23:32:09 +0000955 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
956 }
957
Anders Carlssonf53b4432009-08-18 16:11:00 +0000958 if (RetValExp)
959 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000960 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000961}
962
Chris Lattner810f6d52009-03-13 17:38:01 +0000963/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
964/// ignore "noop" casts in places where an lvalue is required by an inline asm.
965/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
966/// provide a strong guidance to not use it.
967///
968/// This method checks to see if the argument is an acceptable l-value and
969/// returns false if it is a case we can handle.
970static bool CheckAsmLValue(const Expr *E, Sema &S) {
971 if (E->isLvalue(S.Context) == Expr::LV_Valid)
972 return false; // Cool, this is an lvalue.
973
974 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
975 // are supposed to allow.
976 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
977 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
978 if (!S.getLangOptions().HeinousExtensions)
979 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
980 << E->getSourceRange();
981 else
982 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
983 << E->getSourceRange();
984 // Accept, even if we emitted an error diagnostic.
985 return false;
986 }
987
988 // None of the above, just randomly invalid non-lvalue.
989 return true;
990}
991
992
Sebastian Redl3037ed02009-01-18 16:53:17 +0000993Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
994 bool IsSimple,
995 bool IsVolatile,
996 unsigned NumOutputs,
997 unsigned NumInputs,
998 std::string *Names,
999 MultiExprArg constraints,
1000 MultiExprArg exprs,
1001 ExprArg asmString,
1002 MultiExprArg clobbers,
1003 SourceLocation RParenLoc) {
1004 unsigned NumClobbers = clobbers.size();
1005 StringLiteral **Constraints =
1006 reinterpret_cast<StringLiteral**>(constraints.get());
1007 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
1008 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
1009 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
1010
Anders Carlsson03eb5432009-01-27 20:38:24 +00001011 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
Mike Stump1eb44332009-09-09 15:08:12 +00001012
Chris Lattner1708b962008-08-18 19:55:17 +00001013 // The parser verifies that there is a string literal here.
Chris Lattner6bc52112008-07-23 06:46:56 +00001014 if (AsmString->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001015 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
1016 << AsmString->getSourceRange());
1017
Chris Lattner1708b962008-08-18 19:55:17 +00001018 for (unsigned i = 0; i != NumOutputs; i++) {
1019 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001020 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001021 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1022 << Literal->getSourceRange());
1023
Mike Stump1eb44332009-09-09 15:08:12 +00001024 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001025 Literal->getByteLength(),
1026 Names[i]);
Chris Lattner432c8692009-04-26 17:19:08 +00001027 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001028 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001029 diag::err_asm_invalid_output_constraint)
1030 << Info.getConstraintStr());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001031
Anders Carlssond04c6e22007-11-27 04:11:28 +00001032 // Check that the output exprs are valid lvalues.
Eli Friedman72056a22009-05-03 07:49:42 +00001033 Expr *OutputExpr = Exprs[i];
Chris Lattner810f6d52009-03-13 17:38:01 +00001034 if (CheckAsmLValue(OutputExpr, *this)) {
Eli Friedman72056a22009-05-03 07:49:42 +00001035 return StmtError(Diag(OutputExpr->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001036 diag::err_asm_invalid_lvalue_in_output)
Eli Friedman72056a22009-05-03 07:49:42 +00001037 << OutputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001038 }
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Chris Lattner44def072009-04-26 07:16:29 +00001040 OutputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001041 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001042
Chris Lattner806503f2009-05-03 05:55:43 +00001043 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
1044
Anders Carlsson04728b72007-11-23 19:43:50 +00001045 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattner1708b962008-08-18 19:55:17 +00001046 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001047 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001048 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1049 << Literal->getSourceRange());
1050
Mike Stump1eb44332009-09-09 15:08:12 +00001051 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001052 Literal->getByteLength(),
1053 Names[i]);
Jay Foadbeaaccd2009-05-21 09:52:38 +00001054 if (!Context.Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001055 NumOutputs, Info)) {
Sebastian Redl3037ed02009-01-18 16:53:17 +00001056 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001057 diag::err_asm_invalid_input_constraint)
1058 << Info.getConstraintStr());
Anders Carlssond04c6e22007-11-27 04:11:28 +00001059 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001060
Eli Friedman72056a22009-05-03 07:49:42 +00001061 Expr *InputExpr = Exprs[i];
Sebastian Redl3037ed02009-01-18 16:53:17 +00001062
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001063 // Only allow void types for memory constraints.
Chris Lattner44def072009-04-26 07:16:29 +00001064 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattner810f6d52009-03-13 17:38:01 +00001065 if (CheckAsmLValue(InputExpr, *this))
Eli Friedman72056a22009-05-03 07:49:42 +00001066 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001067 diag::err_asm_invalid_lvalue_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +00001068 << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001069 << InputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001070 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001071
Chris Lattner44def072009-04-26 07:16:29 +00001072 if (Info.allowsRegister()) {
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001073 if (InputExpr->getType()->isVoidType()) {
Eli Friedman72056a22009-05-03 07:49:42 +00001074 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001075 diag::err_asm_invalid_type_in_input)
Mike Stump1eb44332009-09-09 15:08:12 +00001076 << InputExpr->getType() << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001077 << InputExpr->getSourceRange());
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001078 }
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001079 }
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Anders Carlsson60329792009-02-22 02:11:23 +00001081 DefaultFunctionArrayConversion(Exprs[i]);
Mike Stump1eb44332009-09-09 15:08:12 +00001082
Chris Lattner806503f2009-05-03 05:55:43 +00001083 InputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001084 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001085
Anders Carlsson6fa90862007-11-25 00:25:21 +00001086 // Check that the clobbers are valid.
Chris Lattner1708b962008-08-18 19:55:17 +00001087 for (unsigned i = 0; i != NumClobbers; i++) {
1088 StringLiteral *Literal = Clobbers[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001089 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001090 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1091 << Literal->getSourceRange());
1092
Daniel Dunbar77659342009-08-19 20:04:03 +00001093 std::string Clobber(Literal->getStrData(),
1094 Literal->getStrData() +
1095 Literal->getByteLength());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001096
Chris Lattner6bc52112008-07-23 06:46:56 +00001097 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001098 return StmtError(Diag(Literal->getLocStart(),
Daniel Dunbar77659342009-08-19 20:04:03 +00001099 diag::err_asm_unknown_register_name) << Clobber);
Anders Carlsson6fa90862007-11-25 00:25:21 +00001100 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001101
1102 constraints.release();
1103 exprs.release();
1104 asmString.release();
1105 clobbers.release();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001106 AsmStmt *NS =
1107 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1108 Names, Constraints, Exprs, AsmString, NumClobbers,
1109 Clobbers, RParenLoc);
1110 // Validate the asm string, ensuring it makes sense given the operands we
1111 // have.
1112 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1113 unsigned DiagOffs;
1114 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattner2ff0f422009-03-10 23:57:07 +00001115 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1116 << AsmString->getSourceRange();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001117 DeleteStmt(NS);
1118 return StmtError();
1119 }
Mike Stump1eb44332009-09-09 15:08:12 +00001120
Chris Lattner806503f2009-05-03 05:55:43 +00001121 // Validate tied input operands for type mismatches.
1122 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
1123 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Chris Lattner806503f2009-05-03 05:55:43 +00001125 // If this is a tied constraint, verify that the output and input have
1126 // either exactly the same type, or that they are int/ptr operands with the
1127 // same size (int/long, int*/long, are ok etc).
1128 if (!Info.hasTiedOperand()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001129
Chris Lattner806503f2009-05-03 05:55:43 +00001130 unsigned TiedTo = Info.getTiedOperand();
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001131 Expr *OutputExpr = Exprs[TiedTo];
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001132 Expr *InputExpr = Exprs[i+NumOutputs];
Chris Lattner7adaa182009-05-03 05:59:17 +00001133 QualType InTy = InputExpr->getType();
1134 QualType OutTy = OutputExpr->getType();
1135 if (Context.hasSameType(InTy, OutTy))
Chris Lattner806503f2009-05-03 05:55:43 +00001136 continue; // All types can be tied to themselves.
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Chris Lattner7adaa182009-05-03 05:59:17 +00001138 // Int/ptr operands have some special cases that we allow.
1139 if ((OutTy->isIntegerType() || OutTy->isPointerType()) &&
1140 (InTy->isIntegerType() || InTy->isPointerType())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Chris Lattner7adaa182009-05-03 05:59:17 +00001142 // They are ok if they are the same size. Tying void* to int is ok if
1143 // they are the same size, for example. This also allows tying void* to
1144 // int*.
Chris Lattner3351f112009-05-03 08:32:32 +00001145 uint64_t OutSize = Context.getTypeSize(OutTy);
1146 uint64_t InSize = Context.getTypeSize(InTy);
1147 if (OutSize == InSize)
Chris Lattner806503f2009-05-03 05:55:43 +00001148 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001149
Chris Lattner3351f112009-05-03 08:32:32 +00001150 // If the smaller input/output operand is not mentioned in the asm string,
1151 // then we can promote it and the asm string won't notice. Check this
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001152 // case now.
Chris Lattner3351f112009-05-03 08:32:32 +00001153 bool SmallerValueMentioned = false;
Chris Lattner58bce892009-05-03 08:24:16 +00001154 for (unsigned p = 0, e = Pieces.size(); p != e; ++p) {
1155 AsmStmt::AsmStringPiece &Piece = Pieces[p];
1156 if (!Piece.isOperand()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001157
Chris Lattner3351f112009-05-03 08:32:32 +00001158 // If this is a reference to the input and if the input was the smaller
1159 // one, then we have to reject this asm.
1160 if (Piece.getOperandNo() == i+NumOutputs) {
1161 if (InSize < OutSize) {
1162 SmallerValueMentioned = true;
1163 break;
1164 }
1165 }
1166
1167 // If this is a reference to the input and if the input was the smaller
1168 // one, then we have to reject this asm.
1169 if (Piece.getOperandNo() == TiedTo) {
1170 if (InSize > OutSize) {
1171 SmallerValueMentioned = true;
1172 break;
1173 }
1174 }
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001175 }
Mike Stump1eb44332009-09-09 15:08:12 +00001176
Chris Lattner3351f112009-05-03 08:32:32 +00001177 // If the smaller value wasn't mentioned in the asm string, and if the
1178 // output was a register, just extend the shorter one to the size of the
1179 // larger one.
1180 if (!SmallerValueMentioned &&
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001181 OutputConstraintInfos[TiedTo].allowsRegister())
1182 continue;
Chris Lattner806503f2009-05-03 05:55:43 +00001183 }
Mike Stump1eb44332009-09-09 15:08:12 +00001184
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001185 Diag(InputExpr->getLocStart(),
Chris Lattner806503f2009-05-03 05:55:43 +00001186 diag::err_asm_tying_incompatible_types)
Chris Lattner7adaa182009-05-03 05:59:17 +00001187 << InTy << OutTy << OutputExpr->getSourceRange()
Chris Lattner806503f2009-05-03 05:55:43 +00001188 << InputExpr->getSourceRange();
1189 DeleteStmt(NS);
1190 return StmtError();
1191 }
Mike Stump1eb44332009-09-09 15:08:12 +00001192
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001193 return Owned(NS);
Chris Lattnerfe795952007-10-29 04:04:16 +00001194}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001195
Sebastian Redl431e90e2009-01-18 17:43:11 +00001196Action::OwningStmtResult
1197Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001198 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redl431e90e2009-01-18 17:43:11 +00001199 StmtArg Body, StmtArg catchList) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001200 Stmt *CatchList = catchList.takeAs<Stmt>();
Chris Lattnerb28317a2009-03-28 19:18:32 +00001201 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Steve Narofff50cb362009-03-03 20:59:06 +00001203 // PVD == 0 implies @catch(...).
Steve Naroff9d40ee52009-03-03 21:16:54 +00001204 if (PVD) {
Chris Lattner93c49452009-04-12 23:26:56 +00001205 // If we already know the decl is invalid, reject it.
1206 if (PVD->isInvalidDecl())
1207 return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +00001208
Steve Narofff4954562009-07-16 15:41:00 +00001209 if (!PVD->getType()->isObjCObjectPointerType())
Mike Stump1eb44332009-09-09 15:08:12 +00001210 return StmtError(Diag(PVD->getLocation(),
Steve Naroff9d40ee52009-03-03 21:16:54 +00001211 diag::err_catch_param_not_objc_type));
1212 if (PVD->getType()->isObjCQualifiedIdType())
Mike Stump1eb44332009-09-09 15:08:12 +00001213 return StmtError(Diag(PVD->getLocation(),
Steve Naroffd198aba2009-03-03 23:13:51 +00001214 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff9d40ee52009-03-03 21:16:54 +00001215 }
Chris Lattner93c49452009-04-12 23:26:56 +00001216
Ted Kremenek8189cde2009-02-07 01:47:29 +00001217 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Anders Carlssone9146f22009-05-01 19:49:17 +00001218 PVD, Body.takeAs<Stmt>(), CatchList);
Sebastian Redl431e90e2009-01-18 17:43:11 +00001219 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001220}
1221
Sebastian Redl431e90e2009-01-18 17:43:11 +00001222Action::OwningStmtResult
1223Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00001224 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1225 static_cast<Stmt*>(Body.release())));
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001226}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001227
Sebastian Redl431e90e2009-01-18 17:43:11 +00001228Action::OwningStmtResult
1229Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1230 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattner38c5ebd2009-04-19 05:21:20 +00001231 CurFunctionNeedsScopeChecking = true;
Anders Carlssone9146f22009-05-01 19:49:17 +00001232 return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(),
1233 Catch.takeAs<Stmt>(),
1234 Finally.takeAs<Stmt>()));
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001235}
1236
Sebastian Redl431e90e2009-01-18 17:43:11 +00001237Action::OwningStmtResult
Steve Naroff3dcfe102009-02-12 15:54:59 +00001238Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001239 Expr *ThrowExpr = expr.takeAs<Expr>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001240 if (!ThrowExpr) {
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001241 // @throw without an expression designates a rethrow (which much occur
1242 // in the context of an @catch clause).
1243 Scope *AtCatchParent = CurScope;
1244 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1245 AtCatchParent = AtCatchParent->getParent();
1246 if (!AtCatchParent)
Steve Naroff4ab24142009-02-12 18:09:32 +00001247 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroff7151bbb2009-02-11 17:45:08 +00001248 } else {
1249 QualType ThrowType = ThrowExpr->getType();
1250 // Make sure the expression type is an ObjC pointer or "void *".
Steve Narofff4954562009-07-16 15:41:00 +00001251 if (!ThrowType->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001252 const PointerType *PT = ThrowType->getAs<PointerType>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001253 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroff4ab24142009-02-12 18:09:32 +00001254 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1255 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroff7151bbb2009-02-11 17:45:08 +00001256 }
1257 }
1258 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001259}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001260
Sebastian Redl431e90e2009-01-18 17:43:11 +00001261Action::OwningStmtResult
1262Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1263 StmtArg SynchBody) {
Chris Lattner46c3c4b2009-04-21 06:01:00 +00001264 CurFunctionNeedsScopeChecking = true;
1265
Chris Lattnera868a202009-04-21 06:11:25 +00001266 // Make sure the expression type is an ObjC pointer or "void *".
1267 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
Steve Narofff4954562009-07-16 15:41:00 +00001268 if (!SyncExpr->getType()->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001269 const PointerType *PT = SyncExpr->getType()->getAs<PointerType>();
Chris Lattnera868a202009-04-21 06:11:25 +00001270 if (!PT || !PT->getPointeeType()->isVoidType())
1271 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1272 << SyncExpr->getType() << SyncExpr->getSourceRange());
1273 }
Mike Stump1eb44332009-09-09 15:08:12 +00001274
1275 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
Anders Carlssone9146f22009-05-01 19:49:17 +00001276 SynchExpr.takeAs<Stmt>(),
1277 SynchBody.takeAs<Stmt>()));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001278}
Sebastian Redl4b07b292008-12-22 19:15:10 +00001279
1280/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1281/// and creates a proper catch handler from them.
1282Action::OwningStmtResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001283Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl4b07b292008-12-22 19:15:10 +00001284 StmtArg HandlerBlock) {
1285 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001286 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001287 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Anders Carlssone9146f22009-05-01 19:49:17 +00001288 HandlerBlock.takeAs<Stmt>()));
Sebastian Redl4b07b292008-12-22 19:15:10 +00001289}
Sebastian Redl8351da02008-12-22 21:35:02 +00001290
Sebastian Redlc447aba2009-07-29 17:15:45 +00001291class TypeWithHandler {
1292 QualType t;
1293 CXXCatchStmt *stmt;
1294public:
1295 TypeWithHandler(const QualType &type, CXXCatchStmt *statement)
1296 : t(type), stmt(statement) {}
1297
1298 bool operator<(const TypeWithHandler &y) const {
1299 if (t.getTypePtr() < y.t.getTypePtr())
1300 return true;
1301 else if (t.getTypePtr() > y.t.getTypePtr())
1302 return false;
1303 else if (t.getCVRQualifiers() < y.t.getCVRQualifiers())
1304 return true;
1305 else if (t.getCVRQualifiers() < y.t.getCVRQualifiers())
1306 return false;
1307 else
1308 return getTypeSpecStartLoc() < y.getTypeSpecStartLoc();
1309 }
Mike Stump1eb44332009-09-09 15:08:12 +00001310
Sebastian Redlc447aba2009-07-29 17:15:45 +00001311 bool operator==(const TypeWithHandler& other) const {
1312 return t.getTypePtr() == other.t.getTypePtr()
1313 && t.getCVRQualifiers() == other.t.getCVRQualifiers();
1314 }
Mike Stump1eb44332009-09-09 15:08:12 +00001315
Sebastian Redlc447aba2009-07-29 17:15:45 +00001316 QualType getQualType() const { return t; }
1317 CXXCatchStmt *getCatchStmt() const { return stmt; }
1318 SourceLocation getTypeSpecStartLoc() const {
1319 return stmt->getExceptionDecl()->getTypeSpecStartLoc();
1320 }
1321};
1322
Sebastian Redl8351da02008-12-22 21:35:02 +00001323/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
1324/// handlers and creates a try statement from them.
1325Action::OwningStmtResult
1326Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock,
1327 MultiStmtArg RawHandlers) {
1328 unsigned NumHandlers = RawHandlers.size();
1329 assert(NumHandlers > 0 &&
1330 "The parser shouldn't call this if there are no handlers.");
1331 Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get());
1332
Sebastian Redlc447aba2009-07-29 17:15:45 +00001333 llvm::SmallVector<TypeWithHandler, 8> TypesWithHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +00001334
1335 for (unsigned i = 0; i < NumHandlers; ++i) {
Sebastian Redl8351da02008-12-22 21:35:02 +00001336 CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]);
Sebastian Redlc447aba2009-07-29 17:15:45 +00001337 if (!Handler->getExceptionDecl()) {
1338 if (i < NumHandlers - 1)
1339 return StmtError(Diag(Handler->getLocStart(),
1340 diag::err_early_catch_all));
Mike Stump1eb44332009-09-09 15:08:12 +00001341
Sebastian Redlc447aba2009-07-29 17:15:45 +00001342 continue;
1343 }
Mike Stump1eb44332009-09-09 15:08:12 +00001344
Sebastian Redlc447aba2009-07-29 17:15:45 +00001345 const QualType CaughtType = Handler->getCaughtType();
1346 const QualType CanonicalCaughtType = Context.getCanonicalType(CaughtType);
1347 TypesWithHandlers.push_back(TypeWithHandler(CanonicalCaughtType, Handler));
Sebastian Redl8351da02008-12-22 21:35:02 +00001348 }
Sebastian Redlc447aba2009-07-29 17:15:45 +00001349
1350 // Detect handlers for the same type as an earlier one.
1351 if (NumHandlers > 1) {
1352 llvm::array_pod_sort(TypesWithHandlers.begin(), TypesWithHandlers.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001353
Sebastian Redlc447aba2009-07-29 17:15:45 +00001354 TypeWithHandler prev = TypesWithHandlers[0];
1355 for (unsigned i = 1; i < TypesWithHandlers.size(); ++i) {
1356 TypeWithHandler curr = TypesWithHandlers[i];
Mike Stump1eb44332009-09-09 15:08:12 +00001357
Sebastian Redlc447aba2009-07-29 17:15:45 +00001358 if (curr == prev) {
1359 Diag(curr.getTypeSpecStartLoc(),
1360 diag::warn_exception_caught_by_earlier_handler)
1361 << curr.getCatchStmt()->getCaughtType().getAsString();
1362 Diag(prev.getTypeSpecStartLoc(),
1363 diag::note_previous_exception_handler)
1364 << prev.getCatchStmt()->getCaughtType().getAsString();
1365 }
Mike Stump1eb44332009-09-09 15:08:12 +00001366
Sebastian Redlc447aba2009-07-29 17:15:45 +00001367 prev = curr;
1368 }
1369 }
Mike Stump1eb44332009-09-09 15:08:12 +00001370
Sebastian Redl8351da02008-12-22 21:35:02 +00001371 // FIXME: We should detect handlers that cannot catch anything because an
1372 // earlier handler catches a superclass. Need to find a method that is not
1373 // quadratic for this.
1374 // Neither of these are explicitly forbidden, but every compiler detects them
1375 // and warns.
1376
Sebastian Redl972041f2009-04-27 20:27:31 +00001377 CurFunctionNeedsScopeChecking = true;
Sebastian Redl8351da02008-12-22 21:35:02 +00001378 RawHandlers.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +00001379 return Owned(new (Context) CXXTryStmt(TryLoc,
1380 static_cast<Stmt*>(TryBlock.release()),
1381 Handlers, NumHandlers));
Sebastian Redl8351da02008-12-22 21:35:02 +00001382}