blob: e9061b8ac2a4b5f1b3c2f77e3edac38c9dc4bbc5 [file] [log] [blame]
Chris Lattneraf8d5812006-11-10 05:07:45 +00001//===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattneraf8d5812006-11-10 05:07:45 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for statements.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlsson59689ed2008-11-22 21:04:56 +000015#include "clang/AST/APValue.h"
Chris Lattnerfc1c44a2007-08-23 05:46:52 +000016#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner2ba5ca92009-08-16 16:57:27 +000018#include "clang/AST/ExprObjC.h"
Chris Lattnerf0b64d72009-04-26 01:32:48 +000019#include "clang/AST/StmtObjC.h"
20#include "clang/AST/StmtCXX.h"
Anders Carlsson290aa852007-11-25 00:25:21 +000021#include "clang/Basic/TargetInfo.h"
Sebastian Redl63c4da02009-07-29 17:15:45 +000022#include "llvm/ADT/STLExtras.h"
23#include "llvm/ADT/SmallVector.h"
Chris Lattneraf8d5812006-11-10 05:07:45 +000024using namespace clang;
25
Anders Carlsson24824e52009-05-17 21:11:30 +000026Sema::OwningStmtResult Sema::ActOnExprStmt(FullExprArg expr) {
27 Expr *E = expr->takeAs<Expr>();
Steve Naroff66356bd2007-09-16 14:56:35 +000028 assert(E && "ActOnExprStmt(): missing expression");
Fariborz Jahanianf15d4b62009-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 Lattner903eb512008-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 Redl52f03ba2008-12-21 12:04:03 +000041
Chris Lattner903eb512008-07-25 23:18:17 +000042 // Same thing in for stmt first clause (when expr) and third clause.
Sebastian Redl52f03ba2008-12-21 12:04:03 +000043 return Owned(static_cast<Stmt*>(E));
Chris Lattner1ec5f562007-06-27 05:38:08 +000044}
45
46
Sebastian Redl52f03ba2008-12-21 12:04:03 +000047Sema::OwningStmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Ted Kremenek5a201952009-02-07 01:47:29 +000048 return Owned(new (Context) NullStmt(SemiLoc));
Chris Lattner0f203a72007-05-28 01:45:28 +000049}
50
Chris Lattner5bbb3c82009-03-29 16:50:03 +000051Sema::OwningStmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg,
Sebastian Redl52f03ba2008-12-21 12:04:03 +000052 SourceLocation StartLoc,
53 SourceLocation EndLoc) {
Chris Lattner5bbb3c82009-03-29 16:50:03 +000054 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
Mike Stump11289f42009-09-09 15:08:12 +000055
Chris Lattnercbafe8d2009-04-12 20:13:14 +000056 // If we have an invalid decl, just return an error.
57 if (DG.isNull()) return StmtError();
Mike Stump11289f42009-09-09 15:08:12 +000058
Chris Lattner34a22092009-03-04 04:23:07 +000059 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
Steve Naroff2a8ad182007-05-29 22:59:26 +000060}
Chris Lattneraf8d5812006-11-10 05:07:45 +000061
Anders Carlsson59a2ab92009-07-30 22:17:18 +000062void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
Anders Carlsson5c5f1602009-07-30 22:39:03 +000063 const Expr *E = dyn_cast_or_null<Expr>(S);
Anders Carlsson59a2ab92009-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 Stump11289f42009-09-09 15:08:12 +000070
Anders Carlsson59a2ab92009-07-30 22:17:18 +000071 SourceLocation Loc;
72 SourceRange R1, R2;
Mike Stump53f9ded2009-11-03 23:25:48 +000073 if (!E->isUnusedResultAWarning(Loc, R1, R2, Context))
Anders Carlsson59a2ab92009-07-30 22:17:18 +000074 return;
Mike Stump11289f42009-09-09 15:08:12 +000075
Chris Lattner2ba5ca92009-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 Jahanian9a846652009-08-20 17:02:02 +000081 if (isa<ObjCImplicitSetterGetterRefExpr>(E))
Chris Lattner2ba5ca92009-08-16 16:57:27 +000082 DiagID = diag::warn_unused_property_expr;
Chris Lattner1a6babf2009-10-13 04:53:48 +000083
84 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
85 // If the callee has attribute pure, const, or warn_unused_result, warn with
86 // a more specific message to make it clear what is happening.
87 if (const FunctionDecl *FD = CE->getDirectCallee()) {
88 if (FD->getAttr<WarnUnusedResultAttr>()) {
89 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "warn_unused_result";
90 return;
91 }
92 if (FD->getAttr<PureAttr>()) {
93 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "pure";
94 return;
95 }
96 if (FD->getAttr<ConstAttr>()) {
97 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "const";
98 return;
99 }
100 }
101 }
Mike Stump11289f42009-09-09 15:08:12 +0000102
Chris Lattner2ba5ca92009-08-16 16:57:27 +0000103 Diag(Loc, DiagID) << R1 << R2;
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000104}
105
Sebastian Redl52f03ba2008-12-21 12:04:03 +0000106Action::OwningStmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +0000107Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Sebastian Redl52f03ba2008-12-21 12:04:03 +0000108 MultiStmtArg elts, bool isStmtExpr) {
109 unsigned NumElts = elts.size();
110 Stmt **Elts = reinterpret_cast<Stmt**>(elts.release());
Chris Lattnerd864daf2007-08-27 04:29:41 +0000111 // If we're in C89 mode, check that we don't have any decls after stmts. If
112 // so, emit an extension diagnostic.
113 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) {
114 // Note that __extension__ can be around a decl.
115 unsigned i = 0;
116 // Skip over all declarations.
117 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
118 /*empty*/;
119
120 // We found the end of the list or a statement. Scan for another declstmt.
121 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
122 /*empty*/;
Mike Stump11289f42009-09-09 15:08:12 +0000123
Chris Lattnerd864daf2007-08-27 04:29:41 +0000124 if (i != NumElts) {
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000125 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerd864daf2007-08-27 04:29:41 +0000126 Diag(D->getLocation(), diag::ext_mixed_decls_code);
127 }
128 }
Chris Lattnercac27a52007-08-31 21:49:55 +0000129 // Warn about unused expressions in statements.
130 for (unsigned i = 0; i != NumElts; ++i) {
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000131 // Ignore statements that are last in a statement expression.
132 if (isStmtExpr && i == NumElts - 1)
Chris Lattnercac27a52007-08-31 21:49:55 +0000133 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000134
Anders Carlsson59a2ab92009-07-30 22:17:18 +0000135 DiagnoseUnusedExprResult(Elts[i]);
Chris Lattnercac27a52007-08-31 21:49:55 +0000136 }
Sebastian Redl52f03ba2008-12-21 12:04:03 +0000137
Ted Kremenek5a201952009-02-07 01:47:29 +0000138 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000139}
140
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000141Action::OwningStmtResult
142Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval,
143 SourceLocation DotDotDotLoc, ExprArg rhsval,
Chris Lattner34a22092009-03-04 04:23:07 +0000144 SourceLocation ColonLoc) {
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000145 assert((lhsval.get() != 0) && "missing expression in case statement");
146
Steve Naroff8eeeb132007-05-08 21:09:37 +0000147 // C99 6.8.4.2p3: The expression shall be an integer constant.
Mike Stump11289f42009-09-09 15:08:12 +0000148 // However, GCC allows any evaluatable integer expression.
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000149 Expr *LHSVal = static_cast<Expr*>(lhsval.get());
Mike Stump11289f42009-09-09 15:08:12 +0000150 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() &&
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000151 VerifyIntegerConstantExpression(LHSVal))
Chris Lattner34a22092009-03-04 04:23:07 +0000152 return StmtError();
Steve Naroff8eeeb132007-05-08 21:09:37 +0000153
Chris Lattner46eeb222007-07-18 02:28:47 +0000154 // GCC extension: The expression shall be an integer constant.
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000155
156 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000157 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
158 VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000159 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000160 rhsval = 0;
161 }
162
Chris Lattner96b31392009-04-18 20:10:59 +0000163 if (getSwitchStack().empty()) {
Chris Lattner54f4d2b2007-07-23 17:05:23 +0000164 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner34a22092009-03-04 04:23:07 +0000165 return StmtError();
Chris Lattner54f4d2b2007-07-23 17:05:23 +0000166 }
Chris Lattner35e287b2007-06-03 01:44:43 +0000167
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000168 // Only now release the smart pointers.
169 lhsval.release();
170 rhsval.release();
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000171 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
172 ColonLoc);
Chris Lattner96b31392009-04-18 20:10:59 +0000173 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000174 return Owned(CS);
Chris Lattneraf8d5812006-11-10 05:07:45 +0000175}
176
Chris Lattner34a22092009-03-04 04:23:07 +0000177/// ActOnCaseStmtBody - This installs a statement as the body of a case.
178void Sema::ActOnCaseStmtBody(StmtTy *caseStmt, StmtArg subStmt) {
179 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000180 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Chris Lattner34a22092009-03-04 04:23:07 +0000181 CS->setSubStmt(SubStmt);
182}
183
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000184Action::OwningStmtResult
Mike Stump11289f42009-09-09 15:08:12 +0000185Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000186 StmtArg subStmt, Scope *CurScope) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000187 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000188
Chris Lattner96b31392009-04-18 20:10:59 +0000189 if (getSwitchStack().empty()) {
Chris Lattner39407372007-07-21 03:00:26 +0000190 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000191 return Owned(SubStmt);
Chris Lattner39407372007-07-21 03:00:26 +0000192 }
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000193
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000194 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
Chris Lattner96b31392009-04-18 20:10:59 +0000195 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl1cbb59182008-12-28 16:13:43 +0000196 return Owned(DS);
Chris Lattneraf8d5812006-11-10 05:07:45 +0000197}
198
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000199Action::OwningStmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +0000200Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000201 SourceLocation ColonLoc, StmtArg subStmt) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000202 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Steve Naroffd123bd02009-02-28 16:48:43 +0000203 // Look up the record for this label identifier.
Chris Lattner3318e862009-04-18 20:01:55 +0000204 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Naroffd123bd02009-02-28 16:48:43 +0000205
Chris Lattnere2473062007-05-28 06:28:18 +0000206 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroff846b1ec2009-03-13 15:38:40 +0000207 if (LabelDecl == 0)
208 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000209
Chris Lattnereefa10e2007-05-28 06:56:27 +0000210 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000211
Chris Lattnere2473062007-05-28 06:28:18 +0000212 // Otherwise, this label was either forward reference or multiply defined. If
213 // multiply defined, reject it now.
214 if (LabelDecl->getSubStmt()) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000215 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner0369c572008-11-23 23:12:31 +0000216 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000217 return Owned(SubStmt);
Chris Lattnere2473062007-05-28 06:28:18 +0000218 }
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000219
Chris Lattnere2473062007-05-28 06:28:18 +0000220 // Otherwise, this label was forward declared, and we just found its real
221 // definition. Fill in the forward definition and return it.
222 LabelDecl->setIdentLoc(IdentLoc);
Chris Lattner39407372007-07-21 03:00:26 +0000223 LabelDecl->setSubStmt(SubStmt);
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000224 return Owned(LabelDecl);
Chris Lattneraf8d5812006-11-10 05:07:45 +0000225}
226
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000227Action::OwningStmtResult
Anders Carlsson52627462009-05-17 18:26:53 +0000228Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal,
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000229 StmtArg ThenVal, SourceLocation ElseLoc,
230 StmtArg ElseVal) {
Anders Carlsson52627462009-05-17 18:26:53 +0000231 OwningExprResult CondResult(CondVal.release());
Mike Stump11289f42009-09-09 15:08:12 +0000232
Anders Carlsson52627462009-05-17 18:26:53 +0000233 Expr *condExpr = CondResult.takeAs<Expr>();
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000234
Steve Naroff66356bd2007-09-16 14:56:35 +0000235 assert(condExpr && "ActOnIfStmt(): missing expression");
John McCalld5707ab2009-10-12 21:59:07 +0000236 if (CheckBooleanCondition(condExpr, IfLoc)) {
Anders Carlsson52627462009-05-17 18:26:53 +0000237 CondResult = condExpr;
John McCalld5707ab2009-10-12 21:59:07 +0000238 return StmtError();
Douglas Gregor9d73cab2009-05-15 18:53:42 +0000239 }
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000240
Anders Carlssonb781bcd2009-05-01 19:49:17 +0000241 Stmt *thenStmt = ThenVal.takeAs<Stmt>();
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000242 DiagnoseUnusedExprResult(thenStmt);
Steve Naroff86272ea2007-05-29 02:14:17 +0000243
Anders Carlssondb83d772007-10-10 20:50:11 +0000244 // Warn if the if block has a null body without an else value.
245 // this helps prevent bugs due to typos, such as
246 // if (condition);
247 // do_stuff();
Mike Stump11289f42009-09-09 15:08:12 +0000248 if (!ElseVal.get()) {
Anders Carlssondb83d772007-10-10 20:50:11 +0000249 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
250 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
251 }
252
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000253 Stmt *elseStmt = ElseVal.takeAs<Stmt>();
254 DiagnoseUnusedExprResult(elseStmt);
Mike Stump11289f42009-09-09 15:08:12 +0000255
Anders Carlsson52627462009-05-17 18:26:53 +0000256 CondResult.release();
Ted Kremenek5a201952009-02-07 01:47:29 +0000257 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000258 ElseLoc, elseStmt));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000259}
Steve Naroff86272ea2007-05-29 02:14:17 +0000260
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000261Action::OwningStmtResult
262Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000263 Expr *Cond = cond.takeAs<Expr>();
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000264
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +0000265 if (getLangOptions().CPlusPlus) {
266 // C++ 6.4.2.p2:
267 // The condition shall be of integral type, enumeration type, or of a class
268 // type for which a single conversion function to integral or enumeration
269 // type exists (12.3). If the condition is of class type, the condition is
270 // converted by calling that conversion function, and the result of the
271 // conversion is used in place of the original condition for the remainder
272 // of this section. Integral promotions are performed.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000273 if (!Cond->isTypeDependent()) {
274 QualType Ty = Cond->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000275
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000276 // FIXME: Handle class types.
Mike Stump11289f42009-09-09 15:08:12 +0000277
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000278 // If the type is wrong a diagnostic will be emitted later at
279 // ActOnFinishSwitchStmt.
280 if (Ty->isIntegralType() || Ty->isEnumeralType()) {
281 // Integral promotions are performed.
282 // FIXME: Integral promotions for C++ are not complete.
283 UsualUnaryConversions(Cond);
284 }
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +0000285 }
286 } else {
287 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
288 UsualUnaryConversions(Cond);
289 }
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000290
Ted Kremenek5a201952009-02-07 01:47:29 +0000291 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattner96b31392009-04-18 20:10:59 +0000292 getSwitchStack().push_back(SS);
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000293 return Owned(SS);
Anders Carlsson51873c22007-07-22 07:07:56 +0000294}
Chris Lattner46eeb222007-07-18 02:28:47 +0000295
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000296/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
297/// the specified width and sign. If an overflow occurs, detect it and emit
298/// the specified diagnostic.
299void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
300 unsigned NewWidth, bool NewSign,
Mike Stump11289f42009-09-09 15:08:12 +0000301 SourceLocation Loc,
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000302 unsigned DiagID) {
303 // Perform a conversion to the promoted condition type if needed.
304 if (NewWidth > Val.getBitWidth()) {
305 // If this is an extension, just do it.
306 llvm::APSInt OldVal(Val);
307 Val.extend(NewWidth);
Mike Stump11289f42009-09-09 15:08:12 +0000308
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000309 // If the input was signed and negative and the output is unsigned,
310 // warn.
311 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
Chris Lattner29e812b2008-11-20 06:06:08 +0000312 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Mike Stump11289f42009-09-09 15:08:12 +0000313
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000314 Val.setIsSigned(NewSign);
315 } else if (NewWidth < Val.getBitWidth()) {
316 // If this is a truncation, check for overflow.
317 llvm::APSInt ConvVal(Val);
318 ConvVal.trunc(NewWidth);
Chris Lattner247ef952007-08-23 22:08:35 +0000319 ConvVal.setIsSigned(NewSign);
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000320 ConvVal.extend(Val.getBitWidth());
Chris Lattner247ef952007-08-23 22:08:35 +0000321 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000322 if (ConvVal != Val)
Chris Lattner29e812b2008-11-20 06:06:08 +0000323 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Mike Stump11289f42009-09-09 15:08:12 +0000324
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000325 // Regardless of whether a diagnostic was emitted, really do the
326 // truncation.
327 Val.trunc(NewWidth);
Chris Lattner247ef952007-08-23 22:08:35 +0000328 Val.setIsSigned(NewSign);
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000329 } else if (NewSign != Val.isSigned()) {
330 // Convert the sign to match the sign of the condition. This can cause
331 // overflow as well: unsigned(INTMIN)
332 llvm::APSInt OldVal(Val);
333 Val.setIsSigned(NewSign);
Mike Stump11289f42009-09-09 15:08:12 +0000334
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000335 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattner29e812b2008-11-20 06:06:08 +0000336 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000337 }
338}
339
Chris Lattner67998452007-08-23 18:29:20 +0000340namespace {
341 struct CaseCompareFunctor {
342 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
343 const llvm::APSInt &RHS) {
344 return LHS.first < RHS;
345 }
Chris Lattner1463cca2007-09-03 18:31:57 +0000346 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
347 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
348 return LHS.first < RHS.first;
349 }
Chris Lattner67998452007-08-23 18:29:20 +0000350 bool operator()(const llvm::APSInt &LHS,
351 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
352 return LHS < RHS.first;
353 }
354 };
355}
356
Chris Lattner4b2ff022007-09-21 18:15:22 +0000357/// CmpCaseVals - Comparison predicate for sorting case values.
358///
359static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
360 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
361 if (lhs.first < rhs.first)
362 return true;
363
364 if (lhs.first == rhs.first &&
365 lhs.second->getCaseLoc().getRawEncoding()
366 < rhs.second->getCaseLoc().getRawEncoding())
367 return true;
368 return false;
369}
370
Chris Lattnera96d4272009-10-16 16:45:22 +0000371/// GetTypeBeforeIntegralPromotion - Returns the pre-promotion type of
372/// potentially integral-promoted expression @p expr.
373static QualType GetTypeBeforeIntegralPromotion(const Expr* expr) {
374 const ImplicitCastExpr *ImplicitCast =
375 dyn_cast_or_null<ImplicitCastExpr>(expr);
376 if (ImplicitCast != NULL) {
377 const Expr *ExprBeforePromotion = ImplicitCast->getSubExpr();
378 QualType TypeBeforePromotion = ExprBeforePromotion->getType();
379 if (TypeBeforePromotion->isIntegralType()) {
380 return TypeBeforePromotion;
381 }
382 }
383 return expr->getType();
384}
385
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000386Action::OwningStmtResult
387Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
388 StmtArg Body) {
Anders Carlssonb781bcd2009-05-01 19:49:17 +0000389 Stmt *BodyStmt = Body.takeAs<Stmt>();
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000390
Chris Lattner96b31392009-04-18 20:10:59 +0000391 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000392 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
393
Steve Naroff42a350a2007-09-01 21:08:38 +0000394 SS->setBody(BodyStmt, SwitchLoc);
Mike Stump11289f42009-09-09 15:08:12 +0000395 getSwitchStack().pop_back();
Anders Carlsson51873c22007-07-22 07:07:56 +0000396
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000397 Expr *CondExpr = SS->getCond();
398 QualType CondType = CondExpr->getType();
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000399
Chris Lattnera96d4272009-10-16 16:45:22 +0000400 // C++ 6.4.2.p2:
401 // Integral promotions are performed (on the switch condition).
402 //
403 // A case value unrepresentable by the original switch condition
404 // type (before the promotion) doesn't make sense, even when it can
405 // be represented by the promoted type. Therefore we need to find
406 // the pre-promotion type of the switch condition.
407 QualType CondTypeBeforePromotion =
408 GetTypeBeforeIntegralPromotion(CondExpr);
409
Edward O'Callaghan93135aa2009-10-17 19:32:54 +0000410 if (!CondExpr->isTypeDependent()) {
411 if (!CondType->isIntegerType()) { // C99 6.8.4.2p1
412 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
413 << CondType << CondExpr->getSourceRange();
414 return StmtError();
415 }
416
417 if (CondTypeBeforePromotion->isBooleanType()) {
418 // switch(bool_expr) {...} is often a programmer error, e.g.
419 // switch(n && mask) { ... } // Doh - should be "n & mask".
420 // One can always use an if statement instead of switch(bool_expr).
421 Diag(SwitchLoc, diag::warn_bool_switch_condition)
422 << CondExpr->getSourceRange();
423 }
Anders Carlsson51873c22007-07-22 07:07:56 +0000424 }
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000425
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000426 // Get the bitwidth of the switched-on value before promotions. We must
427 // convert the integer case values to this width before comparison.
Mike Stump11289f42009-09-09 15:08:12 +0000428 bool HasDependentValue
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000429 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
Mike Stump11289f42009-09-09 15:08:12 +0000430 unsigned CondWidth
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000431 = HasDependentValue? 0
Chris Lattnera96d4272009-10-16 16:45:22 +0000432 : static_cast<unsigned>(Context.getTypeSize(CondTypeBeforePromotion));
433 bool CondIsSigned = CondTypeBeforePromotion->isSignedIntegerType();
Mike Stump11289f42009-09-09 15:08:12 +0000434
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000435 // Accumulate all of the case values in a vector so that we can sort them
436 // and detect duplicates. This vector contains the APInt for the case after
437 // it has been converted to the condition type.
Chris Lattner67998452007-08-23 18:29:20 +0000438 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
439 CaseValsTy CaseVals;
Mike Stump11289f42009-09-09 15:08:12 +0000440
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000441 // Keep track of any GNU case ranges we see. The APSInt is the low value.
442 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
Mike Stump11289f42009-09-09 15:08:12 +0000443
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000444 DefaultStmt *TheDefaultStmt = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000445
Chris Lattner10cb5e52007-08-23 06:23:56 +0000446 bool CaseListIsErroneous = false;
Mike Stump11289f42009-09-09 15:08:12 +0000447
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000448 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlsson51873c22007-07-22 07:07:56 +0000449 SC = SC->getNextSwitchCase()) {
Mike Stump11289f42009-09-09 15:08:12 +0000450
Anders Carlsson51873c22007-07-22 07:07:56 +0000451 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000452 if (TheDefaultStmt) {
453 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner0369c572008-11-23 23:12:31 +0000454 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000455
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000456 // FIXME: Remove the default statement from the switch block so that
Mike Stump87c57ac2009-05-16 07:39:55 +0000457 // we'll return a valid AST. This requires recursing down the AST and
458 // finding it, not something we are set up to do right now. For now,
459 // just lop the entire switch stmt out of the AST.
Chris Lattner10cb5e52007-08-23 06:23:56 +0000460 CaseListIsErroneous = true;
Anders Carlsson51873c22007-07-22 07:07:56 +0000461 }
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000462 TheDefaultStmt = DS;
Mike Stump11289f42009-09-09 15:08:12 +0000463
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000464 } else {
465 CaseStmt *CS = cast<CaseStmt>(SC);
Mike Stump11289f42009-09-09 15:08:12 +0000466
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000467 // We already verified that the expression has a i-c-e value (C99
468 // 6.8.4.2p3) - get that value now.
Chris Lattnera65e1f32008-01-16 19:17:22 +0000469 Expr *Lo = CS->getLHS();
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000470
471 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
472 HasDependentValue = true;
473 break;
474 }
Mike Stump11289f42009-09-09 15:08:12 +0000475
Anders Carlsson59689ed2008-11-22 21:04:56 +0000476 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Mike Stump11289f42009-09-09 15:08:12 +0000477
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000478 // Convert the value to the same width/sign as the condition.
479 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
480 CS->getLHS()->getLocStart(),
481 diag::warn_case_value_overflow);
Anders Carlsson51873c22007-07-22 07:07:56 +0000482
Chris Lattnera65e1f32008-01-16 19:17:22 +0000483 // If the LHS is not the same type as the condition, insert an implicit
484 // cast.
Eli Friedman06ed2a52009-10-20 08:27:19 +0000485 ImpCastExprToType(Lo, CondType, CastExpr::CK_IntegralCast);
Chris Lattnera65e1f32008-01-16 19:17:22 +0000486 CS->setLHS(Lo);
Mike Stump11289f42009-09-09 15:08:12 +0000487
Chris Lattner10cb5e52007-08-23 06:23:56 +0000488 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000489 if (CS->getRHS()) {
Mike Stump11289f42009-09-09 15:08:12 +0000490 if (CS->getRHS()->isTypeDependent() ||
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000491 CS->getRHS()->isValueDependent()) {
492 HasDependentValue = true;
493 break;
494 }
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000495 CaseRanges.push_back(std::make_pair(LoVal, CS));
Mike Stump11289f42009-09-09 15:08:12 +0000496 } else
Chris Lattner10cb5e52007-08-23 06:23:56 +0000497 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerfc1c44a2007-08-23 05:46:52 +0000498 }
499 }
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000500
501 if (!HasDependentValue) {
502 // Sort all the scalar case values so we can easily detect duplicates.
503 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
504
505 if (!CaseVals.empty()) {
506 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
507 if (CaseVals[i].first == CaseVals[i+1].first) {
508 // If we have a duplicate, report it.
509 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
510 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
Mike Stump11289f42009-09-09 15:08:12 +0000511 Diag(CaseVals[i].second->getLHS()->getLocStart(),
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000512 diag::note_duplicate_case_prev);
Mike Stump87c57ac2009-05-16 07:39:55 +0000513 // FIXME: We really want to remove the bogus case stmt from the
514 // substmt, but we have no way to do this right now.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000515 CaseListIsErroneous = true;
516 }
517 }
518 }
Mike Stump11289f42009-09-09 15:08:12 +0000519
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000520 // Detect duplicate case ranges, which usually don't exist at all in
521 // the first place.
522 if (!CaseRanges.empty()) {
523 // Sort all the case ranges by their low value so we can easily detect
524 // overlaps between ranges.
525 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Mike Stump11289f42009-09-09 15:08:12 +0000526
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000527 // Scan the ranges, computing the high values and removing empty ranges.
528 std::vector<llvm::APSInt> HiVals;
529 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
530 CaseStmt *CR = CaseRanges[i].second;
531 Expr *Hi = CR->getRHS();
532 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
Mike Stump11289f42009-09-09 15:08:12 +0000533
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000534 // Convert the value to the same width/sign as the condition.
535 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
536 CR->getRHS()->getLocStart(),
537 diag::warn_case_value_overflow);
Mike Stump11289f42009-09-09 15:08:12 +0000538
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000539 // If the LHS is not the same type as the condition, insert an implicit
540 // cast.
Eli Friedman06ed2a52009-10-20 08:27:19 +0000541 ImpCastExprToType(Hi, CondType, CastExpr::CK_IntegralCast);
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000542 CR->setRHS(Hi);
Mike Stump11289f42009-09-09 15:08:12 +0000543
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000544 // If the low value is bigger than the high value, the case is empty.
545 if (CaseRanges[i].first > HiVal) {
546 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
547 << SourceRange(CR->getLHS()->getLocStart(),
548 CR->getRHS()->getLocEnd());
549 CaseRanges.erase(CaseRanges.begin()+i);
550 --i, --e;
551 continue;
552 }
553 HiVals.push_back(HiVal);
554 }
Mike Stump11289f42009-09-09 15:08:12 +0000555
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000556 // Rescan the ranges, looking for overlap with singleton values and other
557 // ranges. Since the range list is sorted, we only need to compare case
558 // ranges with their neighbors.
559 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
560 llvm::APSInt &CRLo = CaseRanges[i].first;
561 llvm::APSInt &CRHi = HiVals[i];
562 CaseStmt *CR = CaseRanges[i].second;
Mike Stump11289f42009-09-09 15:08:12 +0000563
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000564 // Check to see whether the case range overlaps with any
565 // singleton cases.
566 CaseStmt *OverlapStmt = 0;
567 llvm::APSInt OverlapVal(32);
Mike Stump11289f42009-09-09 15:08:12 +0000568
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000569 // Find the smallest value >= the lower bound. If I is in the
570 // case range, then we have overlap.
571 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
572 CaseVals.end(), CRLo,
573 CaseCompareFunctor());
574 if (I != CaseVals.end() && I->first < CRHi) {
575 OverlapVal = I->first; // Found overlap with scalar.
576 OverlapStmt = I->second;
577 }
Mike Stump11289f42009-09-09 15:08:12 +0000578
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000579 // Find the smallest value bigger than the upper bound.
580 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
581 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
582 OverlapVal = (I-1)->first; // Found overlap with scalar.
583 OverlapStmt = (I-1)->second;
584 }
Mike Stump11289f42009-09-09 15:08:12 +0000585
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000586 // Check to see if this case stmt overlaps with the subsequent
587 // case range.
588 if (i && CRLo <= HiVals[i-1]) {
589 OverlapVal = HiVals[i-1]; // Found overlap with range.
590 OverlapStmt = CaseRanges[i-1].second;
591 }
Mike Stump11289f42009-09-09 15:08:12 +0000592
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000593 if (OverlapStmt) {
594 // If we have a duplicate, report it.
595 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
596 << OverlapVal.toString(10);
Mike Stump11289f42009-09-09 15:08:12 +0000597 Diag(OverlapStmt->getLHS()->getLocStart(),
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000598 diag::note_duplicate_case_prev);
Mike Stump87c57ac2009-05-16 07:39:55 +0000599 // FIXME: We really want to remove the bogus case stmt from the
600 // substmt, but we have no way to do this right now.
Douglas Gregor2a2d00f2009-05-15 23:57:33 +0000601 CaseListIsErroneous = true;
602 }
Chris Lattnerfcb920d2007-08-23 14:29:07 +0000603 }
Chris Lattner10cb5e52007-08-23 06:23:56 +0000604 }
605 }
Chris Lattner10cb5e52007-08-23 06:23:56 +0000606
Mike Stump87c57ac2009-05-16 07:39:55 +0000607 // FIXME: If the case list was broken is some way, we don't have a good system
608 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattner10cb5e52007-08-23 06:23:56 +0000609 if (CaseListIsErroneous)
Sebastian Redl6a8002e2009-01-11 00:38:46 +0000610 return StmtError();
611
612 Switch.release();
613 return Owned(SS);
Chris Lattneraf8d5812006-11-10 05:07:45 +0000614}
615
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000616Action::OwningStmtResult
Anders Carlssonee139262009-05-17 21:22:26 +0000617Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, StmtArg Body) {
618 ExprArg CondArg(Cond.release());
619 Expr *condExpr = CondArg.takeAs<Expr>();
Steve Naroff66356bd2007-09-16 14:56:35 +0000620 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000621
John McCalld5707ab2009-10-12 21:59:07 +0000622 if (CheckBooleanCondition(condExpr, WhileLoc)) {
Anders Carlssonee139262009-05-17 21:22:26 +0000623 CondArg = condExpr;
John McCalld5707ab2009-10-12 21:59:07 +0000624 return StmtError();
Douglas Gregor8a930c32009-05-15 21:45:53 +0000625 }
Steve Naroff86272ea2007-05-29 02:14:17 +0000626
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000627 Stmt *bodyStmt = Body.takeAs<Stmt>();
628 DiagnoseUnusedExprResult(bodyStmt);
Mike Stump11289f42009-09-09 15:08:12 +0000629
Anders Carlssonee139262009-05-17 21:22:26 +0000630 CondArg.release();
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000631 return Owned(new (Context) WhileStmt(condExpr, bodyStmt, WhileLoc));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000632}
633
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000634Action::OwningStmtResult
635Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
Chris Lattner815b70e2009-06-12 23:04:47 +0000636 SourceLocation WhileLoc, SourceLocation CondLParen,
637 ExprArg Cond, SourceLocation CondRParen) {
Anders Carlssonb781bcd2009-05-01 19:49:17 +0000638 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff66356bd2007-09-16 14:56:35 +0000639 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000640
John McCalld5707ab2009-10-12 21:59:07 +0000641 if (CheckBooleanCondition(condExpr, DoLoc)) {
Douglas Gregor3daa82d2009-05-15 21:56:04 +0000642 Cond = condExpr;
John McCalld5707ab2009-10-12 21:59:07 +0000643 return StmtError();
Douglas Gregor3daa82d2009-05-15 21:56:04 +0000644 }
Steve Naroff86272ea2007-05-29 02:14:17 +0000645
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000646 Stmt *bodyStmt = Body.takeAs<Stmt>();
647 DiagnoseUnusedExprResult(bodyStmt);
648
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000649 Cond.release();
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000650 return Owned(new (Context) DoStmt(bodyStmt, condExpr, DoLoc,
Chris Lattner815b70e2009-06-12 23:04:47 +0000651 WhileLoc, CondRParen));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000652}
653
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000654Action::OwningStmtResult
655Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
656 StmtArg first, ExprArg second, ExprArg third,
657 SourceLocation RParenLoc, StmtArg body) {
658 Stmt *First = static_cast<Stmt*>(first.get());
John McCalld5707ab2009-10-12 21:59:07 +0000659 Expr *Second = second.takeAs<Expr>();
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000660 Expr *Third = static_cast<Expr*>(third.get());
661 Stmt *Body = static_cast<Stmt*>(body.get());
662
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +0000663 if (!getLangOptions().CPlusPlus) {
664 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattner651d42d2008-11-20 06:38:18 +0000665 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
666 // declare identifiers for objects having storage class 'auto' or
667 // 'register'.
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +0000668 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
669 DI!=DE; ++DI) {
670 VarDecl *VD = dyn_cast<VarDecl>(*DI);
671 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
672 VD = 0;
673 if (VD == 0)
674 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
675 // FIXME: mark decl erroneous!
676 }
Chris Lattner39f920f2007-08-28 05:03:08 +0000677 }
Steve Naroff86272ea2007-05-29 02:14:17 +0000678 }
John McCalld5707ab2009-10-12 21:59:07 +0000679 if (Second && CheckBooleanCondition(Second, ForLoc)) {
680 second = Second;
681 return StmtError();
Steve Naroff86272ea2007-05-29 02:14:17 +0000682 }
Mike Stump11289f42009-09-09 15:08:12 +0000683
Anders Carlsson1682af52009-08-01 01:39:59 +0000684 DiagnoseUnusedExprResult(First);
685 DiagnoseUnusedExprResult(Third);
Anders Carlsson5c5f1602009-07-30 22:39:03 +0000686 DiagnoseUnusedExprResult(Body);
687
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000688 first.release();
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000689 third.release();
690 body.release();
Douglas Gregor5d138682009-05-15 22:12:32 +0000691 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc,
692 LParenLoc, RParenLoc));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000693}
694
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000695Action::OwningStmtResult
696Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
697 SourceLocation LParenLoc,
698 StmtArg first, ExprArg second,
699 SourceLocation RParenLoc, StmtArg body) {
700 Stmt *First = static_cast<Stmt*>(first.get());
701 Expr *Second = static_cast<Expr*>(second.get());
702 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian93977672008-01-10 20:33:58 +0000703 if (First) {
704 QualType FirstType;
705 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner529efc72009-03-28 06:33:19 +0000706 if (!DS->isSingleDecl())
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000707 return StmtError(Diag((*DS->decl_begin())->getLocation(),
708 diag::err_toomany_element_decls));
709
Chris Lattner529efc72009-03-28 06:33:19 +0000710 Decl *D = DS->getSingleDecl();
Ted Kremenek11b00422008-10-06 20:58:11 +0000711 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattner651d42d2008-11-20 06:38:18 +0000712 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
713 // declare identifiers for objects having storage class 'auto' or
714 // 'register'.
Steve Naroff08899ff2008-04-15 22:42:06 +0000715 VarDecl *VD = cast<VarDecl>(D);
716 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000717 return StmtError(Diag(VD->getLocation(),
718 diag::err_non_variable_decl_in_for));
Anders Carlsson1ec2ccd2008-08-25 18:16:36 +0000719 } else {
Chris Lattnercda4d7e2009-03-13 17:38:01 +0000720 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000721 return StmtError(Diag(First->getLocStart(),
722 diag::err_selector_element_not_lvalue)
723 << First->getSourceRange());
724
Mike Stump11289f42009-09-09 15:08:12 +0000725 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson1ec2ccd2008-08-25 18:16:36 +0000726 }
Mike Stump11289f42009-09-09 15:08:12 +0000727 if (!FirstType->isObjCObjectPointerType() &&
Fariborz Jahanian2e4a46b2009-08-14 21:53:27 +0000728 !FirstType->isBlockPointerType())
Chris Lattnerf490e152008-11-19 05:27:50 +0000729 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000730 << FirstType << First->getSourceRange();
Fariborz Jahanian732b8c22008-01-03 17:55:25 +0000731 }
732 if (Second) {
733 DefaultFunctionArrayConversion(Second);
734 QualType SecondType = Second->getType();
Steve Naroff79d12152009-07-16 15:41:00 +0000735 if (!SecondType->isObjCObjectPointerType())
Chris Lattnerf490e152008-11-19 05:27:50 +0000736 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000737 << SecondType << Second->getSourceRange();
Fariborz Jahanian732b8c22008-01-03 17:55:25 +0000738 }
Sebastian Redlfbfaafc2009-01-16 23:28:06 +0000739 first.release();
740 second.release();
741 body.release();
Ted Kremenek5a201952009-02-07 01:47:29 +0000742 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
743 ForLoc, RParenLoc));
Fariborz Jahanian732b8c22008-01-03 17:55:25 +0000744}
Chris Lattneraf8d5812006-11-10 05:07:45 +0000745
Sebastian Redl573feed2009-01-18 13:19:59 +0000746Action::OwningStmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +0000747Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Chris Lattneraf8d5812006-11-10 05:07:45 +0000748 IdentifierInfo *LabelII) {
Steve Naroffc540d662008-09-03 18:15:37 +0000749 // If we are in a block, reject all gotos for now.
750 if (CurBlock)
Sebastian Redl573feed2009-01-18 13:19:59 +0000751 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroffc540d662008-09-03 18:15:37 +0000752
Chris Lattnere2473062007-05-28 06:28:18 +0000753 // Look up the record for this label identifier.
Chris Lattner3318e862009-04-18 20:01:55 +0000754 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Chris Lattnere2473062007-05-28 06:28:18 +0000755
Steve Naroff846b1ec2009-03-13 15:38:40 +0000756 // If we haven't seen this label yet, create a forward reference.
757 if (LabelDecl == 0)
Ted Kremenek5a201952009-02-07 01:47:29 +0000758 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl573feed2009-01-18 13:19:59 +0000759
Ted Kremenek5a201952009-02-07 01:47:29 +0000760 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000761}
Chris Lattner1c310502007-05-31 06:00:00 +0000762
Sebastian Redl573feed2009-01-18 13:19:59 +0000763Action::OwningStmtResult
Chris Lattner34d9a512009-04-19 01:04:21 +0000764Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl573feed2009-01-18 13:19:59 +0000765 ExprArg DestExp) {
Eli Friedman8d7ff402009-03-26 00:18:06 +0000766 // Convert operand to void*
Eli Friedman6568eef2009-03-26 07:32:37 +0000767 Expr* E = DestExp.takeAs<Expr>();
Douglas Gregor30776d42009-05-16 00:20:29 +0000768 if (!E->isTypeDependent()) {
769 QualType ETy = E->getType();
770 AssignConvertType ConvTy =
771 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
772 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
773 E, "passing"))
774 return StmtError();
775 }
776 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000777}
778
Sebastian Redl573feed2009-01-18 13:19:59 +0000779Action::OwningStmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +0000780Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Chris Lattnereaafe1222006-11-10 05:17:58 +0000781 Scope *S = CurScope->getContinueParent();
782 if (!S) {
783 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl573feed2009-01-18 13:19:59 +0000784 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Chris Lattnereaafe1222006-11-10 05:17:58 +0000785 }
Sebastian Redl573feed2009-01-18 13:19:59 +0000786
Ted Kremenek5a201952009-02-07 01:47:29 +0000787 return Owned(new (Context) ContinueStmt(ContinueLoc));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000788}
789
Sebastian Redl573feed2009-01-18 13:19:59 +0000790Action::OwningStmtResult
Steve Naroff66356bd2007-09-16 14:56:35 +0000791Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Chris Lattnereaafe1222006-11-10 05:17:58 +0000792 Scope *S = CurScope->getBreakParent();
793 if (!S) {
794 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl573feed2009-01-18 13:19:59 +0000795 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Chris Lattnereaafe1222006-11-10 05:17:58 +0000796 }
Sebastian Redl573feed2009-01-18 13:19:59 +0000797
Ted Kremenek5a201952009-02-07 01:47:29 +0000798 return Owned(new (Context) BreakStmt(BreakLoc));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000799}
800
Douglas Gregor8e1cf602008-10-29 00:13:59 +0000801/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroffc540d662008-09-03 18:15:37 +0000802///
Sebastian Redl573feed2009-01-18 13:19:59 +0000803Action::OwningStmtResult
Steve Naroffc540d662008-09-03 18:15:37 +0000804Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Steve Naroffc540d662008-09-03 18:15:37 +0000805 // If this is the first return we've seen in the block, infer the type of
806 // the block from it.
Fariborz Jahanian3fd73102009-06-19 23:37:08 +0000807 if (CurBlock->ReturnType.isNull()) {
Steve Naroff3b1e1722008-09-16 22:25:10 +0000808 if (RetValExp) {
Steve Naroffc60873c2008-09-24 22:26:48 +0000809 // Don't call UsualUnaryConversions(), since we don't want to do
810 // integer promotions here.
811 DefaultFunctionArrayConversion(RetValExp);
Fariborz Jahanian3fd73102009-06-19 23:37:08 +0000812 CurBlock->ReturnType = RetValExp->getType();
813 if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(RetValExp)) {
814 // We have to remove a 'const' added to copied-in variable which was
815 // part of the implementation spec. and not the actual qualifier for
816 // the variable.
817 if (CDRE->isConstQualAdded())
818 CurBlock->ReturnType.removeConst();
819 }
Steve Naroff3b1e1722008-09-16 22:25:10 +0000820 } else
Fariborz Jahanian3fd73102009-06-19 23:37:08 +0000821 CurBlock->ReturnType = Context.VoidTy;
Steve Naroffc540d662008-09-03 18:15:37 +0000822 }
Fariborz Jahanian3fd73102009-06-19 23:37:08 +0000823 QualType FnRetType = CurBlock->ReturnType;
Sebastian Redl573feed2009-01-18 13:19:59 +0000824
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000825 if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) {
Mike Stump56ed2ea2009-04-29 21:40:37 +0000826 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr)
827 << getCurFunctionOrMethodDecl()->getDeclName();
828 return StmtError();
829 }
830
Steve Naroffc540d662008-09-03 18:15:37 +0000831 // Otherwise, verify that this result type matches the previous one. We are
832 // pickier with blocks than for normal functions because we don't have GCC
833 // compatibility to worry about here.
834 if (CurBlock->ReturnType->isVoidType()) {
835 if (RetValExp) {
836 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek5a201952009-02-07 01:47:29 +0000837 RetValExp->Destroy(Context);
Steve Naroffc540d662008-09-03 18:15:37 +0000838 RetValExp = 0;
839 }
Ted Kremenek5a201952009-02-07 01:47:29 +0000840 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroffc540d662008-09-03 18:15:37 +0000841 }
Sebastian Redl573feed2009-01-18 13:19:59 +0000842
843 if (!RetValExp)
844 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
845
Mike Stump82f071f2009-02-04 22:31:32 +0000846 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
847 // we have a non-void block with an expression, continue checking
848 QualType RetValType = RetValExp->getType();
Sebastian Redl573feed2009-01-18 13:19:59 +0000849
Mike Stump11289f42009-09-09 15:08:12 +0000850 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
851 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Mike Stump82f071f2009-02-04 22:31:32 +0000852 // function return.
853
854 // In C++ the return statement is handled via a copy initialization.
855 // the C version of which boils down to CheckSingleAssignmentConstraints.
856 // FIXME: Leaks RetValExp.
857 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
858 return StmtError();
859
860 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroffc540d662008-09-03 18:15:37 +0000861 }
Sebastian Redl573feed2009-01-18 13:19:59 +0000862
Ted Kremenek5a201952009-02-07 01:47:29 +0000863 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroffc540d662008-09-03 18:15:37 +0000864}
Chris Lattneraf8d5812006-11-10 05:07:45 +0000865
Sebastian Redl42e92c42009-04-12 17:16:29 +0000866/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
867/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
868static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
869 Expr *RetExpr) {
870 QualType ExprType = RetExpr->getType();
871 // - in a return statement in a function with ...
872 // ... a class return type ...
873 if (!RetType->isRecordType())
874 return false;
875 // ... the same cv-unqualified type as the function return type ...
876 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
877 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
878 return false;
879 // ... the expression is the name of a non-volatile automatic object ...
880 // We ignore parentheses here.
881 // FIXME: Is this compliant?
882 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
883 if (!DR)
884 return false;
885 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
886 if (!VD)
887 return false;
888 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
889 && !VD->getType().isVolatileQualified();
890}
891
Sebastian Redl573feed2009-01-18 13:19:59 +0000892Action::OwningStmtResult
Anders Carlssona1929472009-08-18 16:11:00 +0000893Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprArg rex) {
894 Expr *RetValExp = rex.takeAs<Expr>();
Steve Naroffc540d662008-09-03 18:15:37 +0000895 if (CurBlock)
896 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl573feed2009-01-18 13:19:59 +0000897
Chris Lattner79413952008-12-04 23:50:19 +0000898 QualType FnRetType;
Mike Stumpd00bc1a2009-04-29 00:43:21 +0000899 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattner79413952008-12-04 23:50:19 +0000900 FnRetType = FD->getResultType();
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000901 if (FD->hasAttr<NoReturnAttr>())
Chris Lattner6e127a62009-05-31 19:32:13 +0000902 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Mike Stumpd00bc1a2009-04-29 00:43:21 +0000903 << getCurFunctionOrMethodDecl()->getDeclName();
Mike Stumpd00bc1a2009-04-29 00:43:21 +0000904 } else if (ObjCMethodDecl *MD = getCurMethodDecl())
Steve Narofff3833d72009-03-03 00:45:38 +0000905 FnRetType = MD->getResultType();
906 else // If we don't have a function/method context, bail.
907 return StmtError();
Mike Stump11289f42009-09-09 15:08:12 +0000908
Chris Lattner9bad62c2008-01-04 18:04:52 +0000909 if (FnRetType->isVoidType()) {
Douglas Gregor78b691a2009-10-01 23:25:31 +0000910 if (RetValExp && !RetValExp->isTypeDependent()) {
911 // C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner27e5bef2008-12-18 02:01:17 +0000912 unsigned D = diag::ext_return_has_expr;
913 if (RetValExp->getType()->isVoidType())
914 D = diag::ext_return_has_void_expr;
Sebastian Redl573feed2009-01-18 13:19:59 +0000915
Chris Lattner0cb00d62008-12-18 02:03:48 +0000916 // return (some void expression); is legal in C++.
917 if (D != diag::ext_return_has_void_expr ||
918 !getLangOptions().CPlusPlus) {
919 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
920 Diag(ReturnLoc, D)
921 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
922 << RetValExp->getSourceRange();
923 }
Mike Stump11289f42009-09-09 15:08:12 +0000924
Anders Carlssona1929472009-08-18 16:11:00 +0000925 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Steve Naroff6f49f5d2007-05-29 14:23:36 +0000926 }
Ted Kremenek5a201952009-02-07 01:47:29 +0000927 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff9358c712007-05-27 23:58:33 +0000928 }
Sebastian Redl573feed2009-01-18 13:19:59 +0000929
Anders Carlsson19b8c4c2009-05-15 00:48:27 +0000930 if (!RetValExp && !FnRetType->isDependentType()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000931 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
932 // C99 6.8.6.4p1 (ext_ since GCC warns)
933 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
934
935 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattnere3d20d92008-11-23 21:45:46 +0000936 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000937 else
Chris Lattnere3d20d92008-11-23 21:45:46 +0000938 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek5a201952009-02-07 01:47:29 +0000939 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000940 }
Sebastian Redl573feed2009-01-18 13:19:59 +0000941
Douglas Gregor4619e432008-12-05 23:32:09 +0000942 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
943 // we have a non-void function with an expression, continue checking
Sebastian Redl573feed2009-01-18 13:19:59 +0000944
Mike Stump11289f42009-09-09 15:08:12 +0000945 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
946 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl573feed2009-01-18 13:19:59 +0000947 // function return.
948
Sebastian Redl42e92c42009-04-12 17:16:29 +0000949 // C++0x 12.8p15: When certain criteria are met, an implementation is
950 // allowed to omit the copy construction of a class object, [...]
951 // - in a return statement in a function with a class return type, when
952 // the expression is the name of a non-volatile automatic object with
953 // the same cv-unqualified type as the function return type, the copy
954 // operation can be omitted [...]
955 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
956 // and the object to be copied is designated by an lvalue, overload
957 // resolution to select the constructor for the copy is first performed
958 // as if the object were designated by an rvalue.
959 // Note that we only compute Elidable if we're in C++0x, since we don't
960 // care otherwise.
961 bool Elidable = getLangOptions().CPlusPlus0x ?
962 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
963 false;
964
Douglas Gregor4619e432008-12-05 23:32:09 +0000965 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl573feed2009-01-18 13:19:59 +0000966 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redl42e92c42009-04-12 17:16:29 +0000967 // FIXME: Leaks RetValExp on error.
Douglas Gregorffe14e32009-11-14 01:20:54 +0000968 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable)){
969 // We should still clean up our temporaries, even when we're failing!
970 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Sebastian Redl573feed2009-01-18 13:19:59 +0000971 return StmtError();
Douglas Gregorffe14e32009-11-14 01:20:54 +0000972 }
973
Douglas Gregor4619e432008-12-05 23:32:09 +0000974 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
975 }
976
Anders Carlssona1929472009-08-18 16:11:00 +0000977 if (RetValExp)
978 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Ted Kremenek5a201952009-02-07 01:47:29 +0000979 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Chris Lattneraf8d5812006-11-10 05:07:45 +0000980}
981
Chris Lattnercda4d7e2009-03-13 17:38:01 +0000982/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
983/// ignore "noop" casts in places where an lvalue is required by an inline asm.
984/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
985/// provide a strong guidance to not use it.
986///
987/// This method checks to see if the argument is an acceptable l-value and
988/// returns false if it is a case we can handle.
989static bool CheckAsmLValue(const Expr *E, Sema &S) {
990 if (E->isLvalue(S.Context) == Expr::LV_Valid)
991 return false; // Cool, this is an lvalue.
992
993 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
994 // are supposed to allow.
995 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
996 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
997 if (!S.getLangOptions().HeinousExtensions)
998 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
999 << E->getSourceRange();
1000 else
1001 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
1002 << E->getSourceRange();
1003 // Accept, even if we emitted an error diagnostic.
1004 return false;
1005 }
1006
1007 // None of the above, just randomly invalid non-lvalue.
1008 return true;
1009}
1010
1011
Sebastian Redl24b8e152009-01-18 16:53:17 +00001012Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
1013 bool IsSimple,
1014 bool IsVolatile,
1015 unsigned NumOutputs,
1016 unsigned NumInputs,
1017 std::string *Names,
1018 MultiExprArg constraints,
1019 MultiExprArg exprs,
1020 ExprArg asmString,
1021 MultiExprArg clobbers,
1022 SourceLocation RParenLoc) {
1023 unsigned NumClobbers = clobbers.size();
1024 StringLiteral **Constraints =
1025 reinterpret_cast<StringLiteral**>(constraints.get());
1026 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
1027 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
1028 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
1029
Anders Carlsson570c3572009-01-27 20:38:24 +00001030 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
Mike Stump11289f42009-09-09 15:08:12 +00001031
Chris Lattner496acc12008-08-18 19:55:17 +00001032 // The parser verifies that there is a string literal here.
Chris Lattner07096892008-07-23 06:46:56 +00001033 if (AsmString->isWide())
Sebastian Redl24b8e152009-01-18 16:53:17 +00001034 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
1035 << AsmString->getSourceRange());
1036
Chris Lattner496acc12008-08-18 19:55:17 +00001037 for (unsigned i = 0; i != NumOutputs; i++) {
1038 StringLiteral *Literal = Constraints[i];
Chris Lattner07096892008-07-23 06:46:56 +00001039 if (Literal->isWide())
Sebastian Redl24b8e152009-01-18 16:53:17 +00001040 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1041 << Literal->getSourceRange());
1042
Mike Stump11289f42009-09-09 15:08:12 +00001043 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattnerc16d4762009-04-26 17:57:12 +00001044 Literal->getByteLength(),
1045 Names[i]);
Chris Lattnerc3f4c7b2009-04-26 17:19:08 +00001046 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redl24b8e152009-01-18 16:53:17 +00001047 return StmtError(Diag(Literal->getLocStart(),
Chris Lattnerc3f4c7b2009-04-26 17:19:08 +00001048 diag::err_asm_invalid_output_constraint)
1049 << Info.getConstraintStr());
Sebastian Redl24b8e152009-01-18 16:53:17 +00001050
Anders Carlssonf511f642007-11-27 04:11:28 +00001051 // Check that the output exprs are valid lvalues.
Eli Friedman47e78572009-05-03 07:49:42 +00001052 Expr *OutputExpr = Exprs[i];
Chris Lattnercda4d7e2009-03-13 17:38:01 +00001053 if (CheckAsmLValue(OutputExpr, *this)) {
Eli Friedman47e78572009-05-03 07:49:42 +00001054 return StmtError(Diag(OutputExpr->getLocStart(),
Chris Lattnerf490e152008-11-19 05:27:50 +00001055 diag::err_asm_invalid_lvalue_in_output)
Eli Friedman47e78572009-05-03 07:49:42 +00001056 << OutputExpr->getSourceRange());
Anders Carlsson80a5ea32007-11-23 19:43:50 +00001057 }
Mike Stump11289f42009-09-09 15:08:12 +00001058
Chris Lattnerd9725f72009-04-26 07:16:29 +00001059 OutputConstraintInfos.push_back(Info);
Anders Carlsson80a5ea32007-11-23 19:43:50 +00001060 }
Sebastian Redl24b8e152009-01-18 16:53:17 +00001061
Chris Lattner34b51e82009-05-03 05:55:43 +00001062 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
1063
Anders Carlsson80a5ea32007-11-23 19:43:50 +00001064 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattner496acc12008-08-18 19:55:17 +00001065 StringLiteral *Literal = Constraints[i];
Chris Lattner07096892008-07-23 06:46:56 +00001066 if (Literal->isWide())
Sebastian Redl24b8e152009-01-18 16:53:17 +00001067 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1068 << Literal->getSourceRange());
1069
Mike Stump11289f42009-09-09 15:08:12 +00001070 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattnerc16d4762009-04-26 17:57:12 +00001071 Literal->getByteLength(),
1072 Names[i]);
Jay Foad7d0479f2009-05-21 09:52:38 +00001073 if (!Context.Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattnerc16d4762009-04-26 17:57:12 +00001074 NumOutputs, Info)) {
Sebastian Redl24b8e152009-01-18 16:53:17 +00001075 return StmtError(Diag(Literal->getLocStart(),
Chris Lattnerc3f4c7b2009-04-26 17:19:08 +00001076 diag::err_asm_invalid_input_constraint)
1077 << Info.getConstraintStr());
Anders Carlssonf511f642007-11-27 04:11:28 +00001078 }
Sebastian Redl24b8e152009-01-18 16:53:17 +00001079
Eli Friedman47e78572009-05-03 07:49:42 +00001080 Expr *InputExpr = Exprs[i];
Sebastian Redl24b8e152009-01-18 16:53:17 +00001081
Anders Carlsson224fca82009-01-20 20:49:22 +00001082 // Only allow void types for memory constraints.
Chris Lattnerd9725f72009-04-26 07:16:29 +00001083 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattnercda4d7e2009-03-13 17:38:01 +00001084 if (CheckAsmLValue(InputExpr, *this))
Eli Friedman47e78572009-05-03 07:49:42 +00001085 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlsson224fca82009-01-20 20:49:22 +00001086 diag::err_asm_invalid_lvalue_in_input)
Chris Lattnerc3f4c7b2009-04-26 17:19:08 +00001087 << Info.getConstraintStr()
Eli Friedman47e78572009-05-03 07:49:42 +00001088 << InputExpr->getSourceRange());
Anders Carlsson80a5ea32007-11-23 19:43:50 +00001089 }
Sebastian Redl24b8e152009-01-18 16:53:17 +00001090
Chris Lattnerd9725f72009-04-26 07:16:29 +00001091 if (Info.allowsRegister()) {
Anders Carlsson224fca82009-01-20 20:49:22 +00001092 if (InputExpr->getType()->isVoidType()) {
Eli Friedman47e78572009-05-03 07:49:42 +00001093 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlsson224fca82009-01-20 20:49:22 +00001094 diag::err_asm_invalid_type_in_input)
Mike Stump11289f42009-09-09 15:08:12 +00001095 << InputExpr->getType() << Info.getConstraintStr()
Eli Friedman47e78572009-05-03 07:49:42 +00001096 << InputExpr->getSourceRange());
Anders Carlsson224fca82009-01-20 20:49:22 +00001097 }
Anders Carlsson224fca82009-01-20 20:49:22 +00001098 }
Mike Stump11289f42009-09-09 15:08:12 +00001099
Anders Carlssonb8482c52009-02-22 02:11:23 +00001100 DefaultFunctionArrayConversion(Exprs[i]);
Mike Stump11289f42009-09-09 15:08:12 +00001101
Chris Lattner34b51e82009-05-03 05:55:43 +00001102 InputConstraintInfos.push_back(Info);
Anders Carlsson80a5ea32007-11-23 19:43:50 +00001103 }
Sebastian Redl24b8e152009-01-18 16:53:17 +00001104
Anders Carlsson290aa852007-11-25 00:25:21 +00001105 // Check that the clobbers are valid.
Chris Lattner496acc12008-08-18 19:55:17 +00001106 for (unsigned i = 0; i != NumClobbers; i++) {
1107 StringLiteral *Literal = Clobbers[i];
Chris Lattner07096892008-07-23 06:46:56 +00001108 if (Literal->isWide())
Sebastian Redl24b8e152009-01-18 16:53:17 +00001109 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1110 << Literal->getSourceRange());
1111
Daniel Dunbar58bc48c2009-08-19 20:04:03 +00001112 std::string Clobber(Literal->getStrData(),
1113 Literal->getStrData() +
1114 Literal->getByteLength());
Sebastian Redl24b8e152009-01-18 16:53:17 +00001115
Chris Lattner07096892008-07-23 06:46:56 +00001116 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redl24b8e152009-01-18 16:53:17 +00001117 return StmtError(Diag(Literal->getLocStart(),
Daniel Dunbar58bc48c2009-08-19 20:04:03 +00001118 diag::err_asm_unknown_register_name) << Clobber);
Anders Carlsson290aa852007-11-25 00:25:21 +00001119 }
Sebastian Redl24b8e152009-01-18 16:53:17 +00001120
1121 constraints.release();
1122 exprs.release();
1123 asmString.release();
1124 clobbers.release();
Chris Lattnerd8c7ba22009-03-10 23:41:04 +00001125 AsmStmt *NS =
1126 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1127 Names, Constraints, Exprs, AsmString, NumClobbers,
1128 Clobbers, RParenLoc);
1129 // Validate the asm string, ensuring it makes sense given the operands we
1130 // have.
1131 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1132 unsigned DiagOffs;
1133 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattner0cdaa2e2009-03-10 23:57:07 +00001134 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1135 << AsmString->getSourceRange();
Chris Lattnerd8c7ba22009-03-10 23:41:04 +00001136 DeleteStmt(NS);
1137 return StmtError();
1138 }
Mike Stump11289f42009-09-09 15:08:12 +00001139
Chris Lattner34b51e82009-05-03 05:55:43 +00001140 // Validate tied input operands for type mismatches.
1141 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
1142 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
Mike Stump11289f42009-09-09 15:08:12 +00001143
Chris Lattner34b51e82009-05-03 05:55:43 +00001144 // If this is a tied constraint, verify that the output and input have
1145 // either exactly the same type, or that they are int/ptr operands with the
1146 // same size (int/long, int*/long, are ok etc).
1147 if (!Info.hasTiedOperand()) continue;
Mike Stump11289f42009-09-09 15:08:12 +00001148
Chris Lattner34b51e82009-05-03 05:55:43 +00001149 unsigned TiedTo = Info.getTiedOperand();
Chris Lattnercb66c732009-05-03 07:04:21 +00001150 Expr *OutputExpr = Exprs[TiedTo];
Chris Lattner28b05c82009-05-03 06:50:40 +00001151 Expr *InputExpr = Exprs[i+NumOutputs];
Chris Lattner2c295cf2009-05-03 05:59:17 +00001152 QualType InTy = InputExpr->getType();
1153 QualType OutTy = OutputExpr->getType();
1154 if (Context.hasSameType(InTy, OutTy))
Chris Lattner34b51e82009-05-03 05:55:43 +00001155 continue; // All types can be tied to themselves.
Mike Stump11289f42009-09-09 15:08:12 +00001156
Chris Lattner2c295cf2009-05-03 05:59:17 +00001157 // Int/ptr operands have some special cases that we allow.
1158 if ((OutTy->isIntegerType() || OutTy->isPointerType()) &&
1159 (InTy->isIntegerType() || InTy->isPointerType())) {
Mike Stump11289f42009-09-09 15:08:12 +00001160
Chris Lattner2c295cf2009-05-03 05:59:17 +00001161 // They are ok if they are the same size. Tying void* to int is ok if
1162 // they are the same size, for example. This also allows tying void* to
1163 // int*.
Chris Lattnercc1cde92009-05-03 08:32:32 +00001164 uint64_t OutSize = Context.getTypeSize(OutTy);
1165 uint64_t InSize = Context.getTypeSize(InTy);
1166 if (OutSize == InSize)
Chris Lattner34b51e82009-05-03 05:55:43 +00001167 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001168
Chris Lattnercc1cde92009-05-03 08:32:32 +00001169 // If the smaller input/output operand is not mentioned in the asm string,
1170 // then we can promote it and the asm string won't notice. Check this
Chris Lattnercb66c732009-05-03 07:04:21 +00001171 // case now.
Chris Lattnercc1cde92009-05-03 08:32:32 +00001172 bool SmallerValueMentioned = false;
Chris Lattner97de21f2009-05-03 08:24:16 +00001173 for (unsigned p = 0, e = Pieces.size(); p != e; ++p) {
1174 AsmStmt::AsmStringPiece &Piece = Pieces[p];
1175 if (!Piece.isOperand()) continue;
Mike Stump11289f42009-09-09 15:08:12 +00001176
Chris Lattnercc1cde92009-05-03 08:32:32 +00001177 // If this is a reference to the input and if the input was the smaller
1178 // one, then we have to reject this asm.
1179 if (Piece.getOperandNo() == i+NumOutputs) {
1180 if (InSize < OutSize) {
1181 SmallerValueMentioned = true;
1182 break;
1183 }
1184 }
1185
1186 // If this is a reference to the input and if the input was the smaller
1187 // one, then we have to reject this asm.
1188 if (Piece.getOperandNo() == TiedTo) {
1189 if (InSize > OutSize) {
1190 SmallerValueMentioned = true;
1191 break;
1192 }
1193 }
Chris Lattnercb66c732009-05-03 07:04:21 +00001194 }
Mike Stump11289f42009-09-09 15:08:12 +00001195
Chris Lattnercc1cde92009-05-03 08:32:32 +00001196 // If the smaller value wasn't mentioned in the asm string, and if the
1197 // output was a register, just extend the shorter one to the size of the
1198 // larger one.
1199 if (!SmallerValueMentioned &&
Chris Lattnercb66c732009-05-03 07:04:21 +00001200 OutputConstraintInfos[TiedTo].allowsRegister())
1201 continue;
Chris Lattner34b51e82009-05-03 05:55:43 +00001202 }
Mike Stump11289f42009-09-09 15:08:12 +00001203
Chris Lattner28b05c82009-05-03 06:50:40 +00001204 Diag(InputExpr->getLocStart(),
Chris Lattner34b51e82009-05-03 05:55:43 +00001205 diag::err_asm_tying_incompatible_types)
Chris Lattner2c295cf2009-05-03 05:59:17 +00001206 << InTy << OutTy << OutputExpr->getSourceRange()
Chris Lattner34b51e82009-05-03 05:55:43 +00001207 << InputExpr->getSourceRange();
1208 DeleteStmt(NS);
1209 return StmtError();
1210 }
Mike Stump11289f42009-09-09 15:08:12 +00001211
Chris Lattnerd8c7ba22009-03-10 23:41:04 +00001212 return Owned(NS);
Chris Lattner73c56c02007-10-29 04:04:16 +00001213}
Fariborz Jahanian9e63b982007-11-01 23:59:59 +00001214
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001215Action::OwningStmtResult
1216Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00001217 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001218 StmtArg Body, StmtArg catchList) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +00001219 Stmt *CatchList = catchList.takeAs<Stmt>();
Chris Lattner83f095c2009-03-28 19:18:32 +00001220 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Mike Stump11289f42009-09-09 15:08:12 +00001221
Steve Naroff39d6fba2009-03-03 20:59:06 +00001222 // PVD == 0 implies @catch(...).
Steve Naroff27ed6f62009-03-03 21:16:54 +00001223 if (PVD) {
Chris Lattnera2ca03a2009-04-12 23:26:56 +00001224 // If we already know the decl is invalid, reject it.
1225 if (PVD->isInvalidDecl())
1226 return StmtError();
Mike Stump11289f42009-09-09 15:08:12 +00001227
Steve Naroff79d12152009-07-16 15:41:00 +00001228 if (!PVD->getType()->isObjCObjectPointerType())
Mike Stump11289f42009-09-09 15:08:12 +00001229 return StmtError(Diag(PVD->getLocation(),
Steve Naroff27ed6f62009-03-03 21:16:54 +00001230 diag::err_catch_param_not_objc_type));
1231 if (PVD->getType()->isObjCQualifiedIdType())
Mike Stump11289f42009-09-09 15:08:12 +00001232 return StmtError(Diag(PVD->getLocation(),
Steve Naroff013813d2009-03-03 23:13:51 +00001233 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff27ed6f62009-03-03 21:16:54 +00001234 }
Chris Lattnera2ca03a2009-04-12 23:26:56 +00001235
Ted Kremenek5a201952009-02-07 01:47:29 +00001236 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001237 PVD, Body.takeAs<Stmt>(), CatchList);
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001238 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian9e63b982007-11-01 23:59:59 +00001239}
1240
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001241Action::OwningStmtResult
1242Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek5a201952009-02-07 01:47:29 +00001243 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1244 static_cast<Stmt*>(Body.release())));
Fariborz Jahanian71234d82007-11-02 00:18:53 +00001245}
Fariborz Jahanianf859ef22007-11-02 15:39:31 +00001246
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001247Action::OwningStmtResult
1248Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1249 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattner9fecd742009-04-19 05:21:20 +00001250 CurFunctionNeedsScopeChecking = true;
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001251 return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(),
1252 Catch.takeAs<Stmt>(),
1253 Finally.takeAs<Stmt>()));
Fariborz Jahanianf859ef22007-11-02 15:39:31 +00001254}
1255
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001256Action::OwningStmtResult
Steve Naroff0fa412c2009-02-12 15:54:59 +00001257Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +00001258 Expr *ThrowExpr = expr.takeAs<Expr>();
Steve Naroffd5581d22009-02-11 17:45:08 +00001259 if (!ThrowExpr) {
Steve Naroff5ee2c022009-02-11 20:05:44 +00001260 // @throw without an expression designates a rethrow (which much occur
1261 // in the context of an @catch clause).
1262 Scope *AtCatchParent = CurScope;
1263 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1264 AtCatchParent = AtCatchParent->getParent();
1265 if (!AtCatchParent)
Steve Naroffc49b22a2009-02-12 18:09:32 +00001266 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroffd5581d22009-02-11 17:45:08 +00001267 } else {
1268 QualType ThrowType = ThrowExpr->getType();
1269 // Make sure the expression type is an ObjC pointer or "void *".
Steve Naroff79d12152009-07-16 15:41:00 +00001270 if (!ThrowType->isObjCObjectPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001271 const PointerType *PT = ThrowType->getAs<PointerType>();
Steve Naroffd5581d22009-02-11 17:45:08 +00001272 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroffc49b22a2009-02-12 18:09:32 +00001273 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1274 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroffd5581d22009-02-11 17:45:08 +00001275 }
1276 }
1277 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanianadfbbc32007-11-07 02:00:49 +00001278}
Fariborz Jahanianf859ef22007-11-02 15:39:31 +00001279
Sebastian Redl481bf3f2009-01-18 17:43:11 +00001280Action::OwningStmtResult
1281Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1282 StmtArg SynchBody) {
Chris Lattnerc70dd562009-04-21 06:01:00 +00001283 CurFunctionNeedsScopeChecking = true;
1284
Chris Lattner3501d432009-04-21 06:11:25 +00001285 // Make sure the expression type is an ObjC pointer or "void *".
1286 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
Steve Naroff79d12152009-07-16 15:41:00 +00001287 if (!SyncExpr->getType()->isObjCObjectPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001288 const PointerType *PT = SyncExpr->getType()->getAs<PointerType>();
Chris Lattner3501d432009-04-21 06:11:25 +00001289 if (!PT || !PT->getPointeeType()->isVoidType())
1290 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1291 << SyncExpr->getType() << SyncExpr->getSourceRange());
1292 }
Mike Stump11289f42009-09-09 15:08:12 +00001293
1294 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001295 SynchExpr.takeAs<Stmt>(),
1296 SynchBody.takeAs<Stmt>()));
Fariborz Jahanian48085b82008-01-29 19:14:59 +00001297}
Sebastian Redl54c04d42008-12-22 19:15:10 +00001298
1299/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1300/// and creates a proper catch handler from them.
1301Action::OwningStmtResult
Chris Lattner83f095c2009-03-28 19:18:32 +00001302Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl54c04d42008-12-22 19:15:10 +00001303 StmtArg HandlerBlock) {
1304 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek5a201952009-02-07 01:47:29 +00001305 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00001306 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001307 HandlerBlock.takeAs<Stmt>()));
Sebastian Redl54c04d42008-12-22 19:15:10 +00001308}
Sebastian Redl9b244a82008-12-22 21:35:02 +00001309
Sebastian Redl63c4da02009-07-29 17:15:45 +00001310class TypeWithHandler {
1311 QualType t;
1312 CXXCatchStmt *stmt;
1313public:
1314 TypeWithHandler(const QualType &type, CXXCatchStmt *statement)
1315 : t(type), stmt(statement) {}
1316
John McCall8ccfcb52009-09-24 19:53:00 +00001317 // An arbitrary order is fine as long as it places identical
1318 // types next to each other.
Sebastian Redl63c4da02009-07-29 17:15:45 +00001319 bool operator<(const TypeWithHandler &y) const {
John McCall8ccfcb52009-09-24 19:53:00 +00001320 if (t.getAsOpaquePtr() < y.t.getAsOpaquePtr())
Sebastian Redl63c4da02009-07-29 17:15:45 +00001321 return true;
John McCall8ccfcb52009-09-24 19:53:00 +00001322 if (t.getAsOpaquePtr() > y.t.getAsOpaquePtr())
Sebastian Redl63c4da02009-07-29 17:15:45 +00001323 return false;
1324 else
1325 return getTypeSpecStartLoc() < y.getTypeSpecStartLoc();
1326 }
Mike Stump11289f42009-09-09 15:08:12 +00001327
Sebastian Redl63c4da02009-07-29 17:15:45 +00001328 bool operator==(const TypeWithHandler& other) const {
John McCall8ccfcb52009-09-24 19:53:00 +00001329 return t == other.t;
Sebastian Redl63c4da02009-07-29 17:15:45 +00001330 }
Mike Stump11289f42009-09-09 15:08:12 +00001331
Sebastian Redl63c4da02009-07-29 17:15:45 +00001332 QualType getQualType() const { return t; }
1333 CXXCatchStmt *getCatchStmt() const { return stmt; }
1334 SourceLocation getTypeSpecStartLoc() const {
1335 return stmt->getExceptionDecl()->getTypeSpecStartLoc();
1336 }
1337};
1338
Sebastian Redl9b244a82008-12-22 21:35:02 +00001339/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
1340/// handlers and creates a try statement from them.
1341Action::OwningStmtResult
1342Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock,
1343 MultiStmtArg RawHandlers) {
1344 unsigned NumHandlers = RawHandlers.size();
1345 assert(NumHandlers > 0 &&
1346 "The parser shouldn't call this if there are no handlers.");
1347 Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get());
1348
Sebastian Redl63c4da02009-07-29 17:15:45 +00001349 llvm::SmallVector<TypeWithHandler, 8> TypesWithHandlers;
Mike Stump11289f42009-09-09 15:08:12 +00001350
1351 for (unsigned i = 0; i < NumHandlers; ++i) {
Sebastian Redl9b244a82008-12-22 21:35:02 +00001352 CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]);
Sebastian Redl63c4da02009-07-29 17:15:45 +00001353 if (!Handler->getExceptionDecl()) {
1354 if (i < NumHandlers - 1)
1355 return StmtError(Diag(Handler->getLocStart(),
1356 diag::err_early_catch_all));
Mike Stump11289f42009-09-09 15:08:12 +00001357
Sebastian Redl63c4da02009-07-29 17:15:45 +00001358 continue;
1359 }
Mike Stump11289f42009-09-09 15:08:12 +00001360
Sebastian Redl63c4da02009-07-29 17:15:45 +00001361 const QualType CaughtType = Handler->getCaughtType();
1362 const QualType CanonicalCaughtType = Context.getCanonicalType(CaughtType);
1363 TypesWithHandlers.push_back(TypeWithHandler(CanonicalCaughtType, Handler));
Sebastian Redl9b244a82008-12-22 21:35:02 +00001364 }
Sebastian Redl63c4da02009-07-29 17:15:45 +00001365
1366 // Detect handlers for the same type as an earlier one.
1367 if (NumHandlers > 1) {
1368 llvm::array_pod_sort(TypesWithHandlers.begin(), TypesWithHandlers.end());
Mike Stump11289f42009-09-09 15:08:12 +00001369
Sebastian Redl63c4da02009-07-29 17:15:45 +00001370 TypeWithHandler prev = TypesWithHandlers[0];
1371 for (unsigned i = 1; i < TypesWithHandlers.size(); ++i) {
1372 TypeWithHandler curr = TypesWithHandlers[i];
Mike Stump11289f42009-09-09 15:08:12 +00001373
Sebastian Redl63c4da02009-07-29 17:15:45 +00001374 if (curr == prev) {
1375 Diag(curr.getTypeSpecStartLoc(),
1376 diag::warn_exception_caught_by_earlier_handler)
1377 << curr.getCatchStmt()->getCaughtType().getAsString();
1378 Diag(prev.getTypeSpecStartLoc(),
1379 diag::note_previous_exception_handler)
1380 << prev.getCatchStmt()->getCaughtType().getAsString();
1381 }
Mike Stump11289f42009-09-09 15:08:12 +00001382
Sebastian Redl63c4da02009-07-29 17:15:45 +00001383 prev = curr;
1384 }
1385 }
Mike Stump11289f42009-09-09 15:08:12 +00001386
Sebastian Redl9b244a82008-12-22 21:35:02 +00001387 // FIXME: We should detect handlers that cannot catch anything because an
1388 // earlier handler catches a superclass. Need to find a method that is not
1389 // quadratic for this.
1390 // Neither of these are explicitly forbidden, but every compiler detects them
1391 // and warns.
1392
Sebastian Redl4de47b42009-04-27 20:27:31 +00001393 CurFunctionNeedsScopeChecking = true;
Sebastian Redl9b244a82008-12-22 21:35:02 +00001394 RawHandlers.release();
Ted Kremenek5a201952009-02-07 01:47:29 +00001395 return Owned(new (Context) CXXTryStmt(TryLoc,
1396 static_cast<Stmt*>(TryBlock.release()),
1397 Handlers, NumHandlers));
Sebastian Redl9b244a82008-12-22 21:35:02 +00001398}