blob: e8cd6b081de16f5c4baac9e7225df1b720924a89 [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;
Chris Lattnerbc8d42c2009-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 Stump1eb44332009-09-09 15:08:12 +0000102
Chris Lattner419cfb32009-08-16 16:57:27 +0000103 Diag(Loc, DiagID) << R1 << R2;
Anders Carlsson636463e2009-07-30 22:17:18 +0000104}
105
Sebastian Redla60528c2008-12-21 12:04:03 +0000106Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000107Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Sebastian Redla60528c2008-12-21 12:04:03 +0000108 MultiStmtArg elts, bool isStmtExpr) {
109 unsigned NumElts = elts.size();
110 Stmt **Elts = reinterpret_cast<Stmt**>(elts.release());
Chris Lattnerc30ebfb2007-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 Stump1eb44332009-09-09 15:08:12 +0000123
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000124 if (i != NumElts) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000125 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerc30ebfb2007-08-27 04:29:41 +0000126 Diag(D->getLocation(), diag::ext_mixed_decls_code);
127 }
128 }
Chris Lattner98414c12007-08-31 21:49:55 +0000129 // Warn about unused expressions in statements.
130 for (unsigned i = 0; i != NumElts; ++i) {
Anders Carlsson636463e2009-07-30 22:17:18 +0000131 // Ignore statements that are last in a statement expression.
132 if (isStmtExpr && i == NumElts - 1)
Chris Lattner98414c12007-08-31 21:49:55 +0000133 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Anders Carlsson636463e2009-07-30 22:17:18 +0000135 DiagnoseUnusedExprResult(Elts[i]);
Chris Lattner98414c12007-08-31 21:49:55 +0000136 }
Sebastian Redla60528c2008-12-21 12:04:03 +0000137
Ted Kremenek8189cde2009-02-07 01:47:29 +0000138 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
Reid Spencer5f016e22007-07-11 17:01:13 +0000139}
140
Sebastian Redl117054a2008-12-28 16:13:43 +0000141Action::OwningStmtResult
142Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval,
143 SourceLocation DotDotDotLoc, ExprArg rhsval,
Chris Lattner24e1e702009-03-04 04:23:07 +0000144 SourceLocation ColonLoc) {
Sebastian Redl117054a2008-12-28 16:13:43 +0000145 assert((lhsval.get() != 0) && "missing expression in case statement");
146
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 // C99 6.8.4.2p3: The expression shall be an integer constant.
Mike Stump1eb44332009-09-09 15:08:12 +0000148 // However, GCC allows any evaluatable integer expression.
Sebastian Redl117054a2008-12-28 16:13:43 +0000149 Expr *LHSVal = static_cast<Expr*>(lhsval.get());
Mike Stump1eb44332009-09-09 15:08:12 +0000150 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() &&
Douglas Gregordbb26db2009-05-15 23:57:33 +0000151 VerifyIntegerConstantExpression(LHSVal))
Chris Lattner24e1e702009-03-04 04:23:07 +0000152 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000153
Chris Lattner6c36be52007-07-18 02:28:47 +0000154 // GCC extension: The expression shall be an integer constant.
Sebastian Redl117054a2008-12-28 16:13:43 +0000155
156 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000157 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
158 VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000159 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl117054a2008-12-28 16:13:43 +0000160 rhsval = 0;
161 }
162
Chris Lattnerbcfce662009-04-18 20:10:59 +0000163 if (getSwitchStack().empty()) {
Chris Lattner8a87e572007-07-23 17:05:23 +0000164 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner24e1e702009-03-04 04:23:07 +0000165 return StmtError();
Chris Lattner8a87e572007-07-23 17:05:23 +0000166 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000167
Sebastian Redl117054a2008-12-28 16:13:43 +0000168 // Only now release the smart pointers.
169 lhsval.release();
170 rhsval.release();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000171 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
172 ColonLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000173 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000174 return Owned(CS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000175}
176
Chris Lattner24e1e702009-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 Carlssonf1b1d592009-05-01 19:30:39 +0000180 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Chris Lattner24e1e702009-03-04 04:23:07 +0000181 CS->setSubStmt(SubStmt);
182}
183
Sebastian Redl117054a2008-12-28 16:13:43 +0000184Action::OwningStmtResult
Mike Stump1eb44332009-09-09 15:08:12 +0000185Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl117054a2008-12-28 16:13:43 +0000186 StmtArg subStmt, Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000187 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Sebastian Redl117054a2008-12-28 16:13:43 +0000188
Chris Lattnerbcfce662009-04-18 20:10:59 +0000189 if (getSwitchStack().empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000190 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl117054a2008-12-28 16:13:43 +0000191 return Owned(SubStmt);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000192 }
Sebastian Redl117054a2008-12-28 16:13:43 +0000193
Douglas Gregordbb26db2009-05-15 23:57:33 +0000194 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000195 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000196 return Owned(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000197}
198
Sebastian Redlde307472009-01-11 00:38:46 +0000199Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000200Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redlde307472009-01-11 00:38:46 +0000201 SourceLocation ColonLoc, StmtArg subStmt) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000202 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Steve Narofff3cf8972009-02-28 16:48:43 +0000203 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000204 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Narofff3cf8972009-02-28 16:48:43 +0000205
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroffcaaacec2009-03-13 15:38:40 +0000207 if (LabelDecl == 0)
208 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redlde307472009-01-11 00:38:46 +0000209
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redlde307472009-01-11 00:38:46 +0000211
Reid Spencer5f016e22007-07-11 17:01:13 +0000212 // Otherwise, this label was either forward reference or multiply defined. If
213 // multiply defined, reject it now.
214 if (LabelDecl->getSubStmt()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000215 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000216 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redlde307472009-01-11 00:38:46 +0000217 return Owned(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000218 }
Sebastian Redlde307472009-01-11 00:38:46 +0000219
Reid Spencer5f016e22007-07-11 17:01:13 +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 Lattner0fa152e2007-07-21 03:00:26 +0000223 LabelDecl->setSubStmt(SubStmt);
Sebastian Redlde307472009-01-11 00:38:46 +0000224 return Owned(LabelDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000225}
226
Sebastian Redlde307472009-01-11 00:38:46 +0000227Action::OwningStmtResult
Anders Carlssona99fad82009-05-17 18:26:53 +0000228Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal,
Sebastian Redlde307472009-01-11 00:38:46 +0000229 StmtArg ThenVal, SourceLocation ElseLoc,
230 StmtArg ElseVal) {
Anders Carlssona99fad82009-05-17 18:26:53 +0000231 OwningExprResult CondResult(CondVal.release());
Mike Stump1eb44332009-09-09 15:08:12 +0000232
Anders Carlssona99fad82009-05-17 18:26:53 +0000233 Expr *condExpr = CondResult.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000234
Steve Naroff1b273c42007-09-16 14:56:35 +0000235 assert(condExpr && "ActOnIfStmt(): missing expression");
John McCall5a881bb2009-10-12 21:59:07 +0000236 if (CheckBooleanCondition(condExpr, IfLoc)) {
Anders Carlssona99fad82009-05-17 18:26:53 +0000237 CondResult = condExpr;
John McCall5a881bb2009-10-12 21:59:07 +0000238 return StmtError();
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000239 }
Sebastian Redlde307472009-01-11 00:38:46 +0000240
Anders Carlssone9146f22009-05-01 19:49:17 +0000241 Stmt *thenStmt = ThenVal.takeAs<Stmt>();
Anders Carlsson75443112009-07-30 22:39:03 +0000242 DiagnoseUnusedExprResult(thenStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000243
Anders Carlsson2d85f8b2007-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 Stump1eb44332009-09-09 15:08:12 +0000248 if (!ElseVal.get()) {
Anders Carlsson2d85f8b2007-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 Carlsson75443112009-07-30 22:39:03 +0000253 Stmt *elseStmt = ElseVal.takeAs<Stmt>();
254 DiagnoseUnusedExprResult(elseStmt);
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Anders Carlssona99fad82009-05-17 18:26:53 +0000256 CondResult.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000257 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
Anders Carlsson75443112009-07-30 22:39:03 +0000258 ElseLoc, elseStmt));
Reid Spencer5f016e22007-07-11 17:01:13 +0000259}
260
Sebastian Redlde307472009-01-11 00:38:46 +0000261Action::OwningStmtResult
262Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000263 Expr *Cond = cond.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000264
Argyrios Kyrtzidis59210932008-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 Gregordbb26db2009-05-15 23:57:33 +0000273 if (!Cond->isTypeDependent()) {
274 QualType Ty = Cond->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Douglas Gregordbb26db2009-05-15 23:57:33 +0000276 // FIXME: Handle class types.
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Douglas Gregordbb26db2009-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 Kyrtzidis59210932008-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 Redlde307472009-01-11 00:38:46 +0000290
Ted Kremenek8189cde2009-02-07 01:47:29 +0000291 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000292 getSwitchStack().push_back(SS);
Sebastian Redlde307472009-01-11 00:38:46 +0000293 return Owned(SS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000294}
Chris Lattner6c36be52007-07-18 02:28:47 +0000295
Chris Lattnerf4021e72007-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 Stump1eb44332009-09-09 15:08:12 +0000301 SourceLocation Loc,
Chris Lattnerf4021e72007-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 Stump1eb44332009-09-09 15:08:12 +0000308
Chris Lattnerf4021e72007-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 Lattnerd3a94e22008-11-20 06:06:08 +0000312 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Chris Lattnerf4021e72007-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 Lattnerb2137ae2007-08-23 22:08:35 +0000319 ConvVal.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000320 ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000321 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000322 if (ConvVal != Val)
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000323 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Chris Lattnerf4021e72007-08-23 05:46:52 +0000325 // Regardless of whether a diagnostic was emitted, really do the
326 // truncation.
327 Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000328 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-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 Stump1eb44332009-09-09 15:08:12 +0000334
Chris Lattnerf4021e72007-08-23 05:46:52 +0000335 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000336 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000337 }
338}
339
Chris Lattner0471f5b2007-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 Lattner0e85a272007-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 Lattner0471f5b2007-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 Lattner764a7ce2007-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
Sebastian Redlde307472009-01-11 00:38:46 +0000371Action::OwningStmtResult
372Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
373 StmtArg Body) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000374 Stmt *BodyStmt = Body.takeAs<Stmt>();
Sebastian Redlde307472009-01-11 00:38:46 +0000375
Chris Lattnerbcfce662009-04-18 20:10:59 +0000376 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redlde307472009-01-11 00:38:46 +0000377 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
378
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000379 SS->setBody(BodyStmt, SwitchLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000380 getSwitchStack().pop_back();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000381
Chris Lattnerf4021e72007-08-23 05:46:52 +0000382 Expr *CondExpr = SS->getCond();
383 QualType CondType = CondExpr->getType();
Sebastian Redlde307472009-01-11 00:38:46 +0000384
Mike Stump1eb44332009-09-09 15:08:12 +0000385 if (!CondExpr->isTypeDependent() &&
Douglas Gregordbb26db2009-05-15 23:57:33 +0000386 !CondType->isIntegerType()) { // C99 6.8.4.2p1
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000387 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000388 << CondType << CondExpr->getSourceRange();
Sebastian Redlde307472009-01-11 00:38:46 +0000389 return StmtError();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000390 }
Sebastian Redlde307472009-01-11 00:38:46 +0000391
Chris Lattnerf4021e72007-08-23 05:46:52 +0000392 // Get the bitwidth of the switched-on value before promotions. We must
393 // convert the integer case values to this width before comparison.
Mike Stump1eb44332009-09-09 15:08:12 +0000394 bool HasDependentValue
Douglas Gregordbb26db2009-05-15 23:57:33 +0000395 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
Mike Stump1eb44332009-09-09 15:08:12 +0000396 unsigned CondWidth
Douglas Gregordbb26db2009-05-15 23:57:33 +0000397 = HasDependentValue? 0
398 : static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000399 bool CondIsSigned = CondType->isSignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +0000400
Chris Lattnerf4021e72007-08-23 05:46:52 +0000401 // Accumulate all of the case values in a vector so that we can sort them
402 // and detect duplicates. This vector contains the APInt for the case after
403 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000404 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
405 CaseValsTy CaseVals;
Mike Stump1eb44332009-09-09 15:08:12 +0000406
Chris Lattnerf4021e72007-08-23 05:46:52 +0000407 // Keep track of any GNU case ranges we see. The APSInt is the low value.
408 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattnerf4021e72007-08-23 05:46:52 +0000410 DefaultStmt *TheDefaultStmt = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000411
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000412 bool CaseListIsErroneous = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000413
Douglas Gregordbb26db2009-05-15 23:57:33 +0000414 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000415 SC = SC->getNextSwitchCase()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000416
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000417 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000418 if (TheDefaultStmt) {
419 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner5f4a6822008-11-23 23:12:31 +0000420 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redlde307472009-01-11 00:38:46 +0000421
Chris Lattnerf4021e72007-08-23 05:46:52 +0000422 // FIXME: Remove the default statement from the switch block so that
Mike Stump390b4cc2009-05-16 07:39:55 +0000423 // we'll return a valid AST. This requires recursing down the AST and
424 // finding it, not something we are set up to do right now. For now,
425 // just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000426 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000427 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000428 TheDefaultStmt = DS;
Mike Stump1eb44332009-09-09 15:08:12 +0000429
Chris Lattnerf4021e72007-08-23 05:46:52 +0000430 } else {
431 CaseStmt *CS = cast<CaseStmt>(SC);
Mike Stump1eb44332009-09-09 15:08:12 +0000432
Chris Lattnerf4021e72007-08-23 05:46:52 +0000433 // We already verified that the expression has a i-c-e value (C99
434 // 6.8.4.2p3) - get that value now.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000435 Expr *Lo = CS->getLHS();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000436
437 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
438 HasDependentValue = true;
439 break;
440 }
Mike Stump1eb44332009-09-09 15:08:12 +0000441
Anders Carlsson51fe9962008-11-22 21:04:56 +0000442 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000443
Chris Lattnerf4021e72007-08-23 05:46:52 +0000444 // Convert the value to the same width/sign as the condition.
445 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
446 CS->getLHS()->getLocStart(),
447 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000448
Chris Lattner1e0a3902008-01-16 19:17:22 +0000449 // If the LHS is not the same type as the condition, insert an implicit
450 // cast.
451 ImpCastExprToType(Lo, CondType);
452 CS->setLHS(Lo);
Mike Stump1eb44332009-09-09 15:08:12 +0000453
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000454 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000455 if (CS->getRHS()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000456 if (CS->getRHS()->isTypeDependent() ||
Douglas Gregordbb26db2009-05-15 23:57:33 +0000457 CS->getRHS()->isValueDependent()) {
458 HasDependentValue = true;
459 break;
460 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000461 CaseRanges.push_back(std::make_pair(LoVal, CS));
Mike Stump1eb44332009-09-09 15:08:12 +0000462 } else
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000463 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000464 }
465 }
Douglas Gregordbb26db2009-05-15 23:57:33 +0000466
467 if (!HasDependentValue) {
468 // Sort all the scalar case values so we can easily detect duplicates.
469 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
470
471 if (!CaseVals.empty()) {
472 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
473 if (CaseVals[i].first == CaseVals[i+1].first) {
474 // If we have a duplicate, report it.
475 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
476 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000477 Diag(CaseVals[i].second->getLHS()->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000478 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000479 // FIXME: We really want to remove the bogus case stmt from the
480 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000481 CaseListIsErroneous = true;
482 }
483 }
484 }
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Douglas Gregordbb26db2009-05-15 23:57:33 +0000486 // Detect duplicate case ranges, which usually don't exist at all in
487 // the first place.
488 if (!CaseRanges.empty()) {
489 // Sort all the case ranges by their low value so we can easily detect
490 // overlaps between ranges.
491 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Douglas Gregordbb26db2009-05-15 23:57:33 +0000493 // Scan the ranges, computing the high values and removing empty ranges.
494 std::vector<llvm::APSInt> HiVals;
495 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
496 CaseStmt *CR = CaseRanges[i].second;
497 Expr *Hi = CR->getRHS();
498 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Douglas Gregordbb26db2009-05-15 23:57:33 +0000500 // Convert the value to the same width/sign as the condition.
501 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
502 CR->getRHS()->getLocStart(),
503 diag::warn_case_value_overflow);
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Douglas Gregordbb26db2009-05-15 23:57:33 +0000505 // If the LHS is not the same type as the condition, insert an implicit
506 // cast.
507 ImpCastExprToType(Hi, CondType);
508 CR->setRHS(Hi);
Mike Stump1eb44332009-09-09 15:08:12 +0000509
Douglas Gregordbb26db2009-05-15 23:57:33 +0000510 // If the low value is bigger than the high value, the case is empty.
511 if (CaseRanges[i].first > HiVal) {
512 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
513 << SourceRange(CR->getLHS()->getLocStart(),
514 CR->getRHS()->getLocEnd());
515 CaseRanges.erase(CaseRanges.begin()+i);
516 --i, --e;
517 continue;
518 }
519 HiVals.push_back(HiVal);
520 }
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Douglas Gregordbb26db2009-05-15 23:57:33 +0000522 // Rescan the ranges, looking for overlap with singleton values and other
523 // ranges. Since the range list is sorted, we only need to compare case
524 // ranges with their neighbors.
525 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
526 llvm::APSInt &CRLo = CaseRanges[i].first;
527 llvm::APSInt &CRHi = HiVals[i];
528 CaseStmt *CR = CaseRanges[i].second;
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Douglas Gregordbb26db2009-05-15 23:57:33 +0000530 // Check to see whether the case range overlaps with any
531 // singleton cases.
532 CaseStmt *OverlapStmt = 0;
533 llvm::APSInt OverlapVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Douglas Gregordbb26db2009-05-15 23:57:33 +0000535 // Find the smallest value >= the lower bound. If I is in the
536 // case range, then we have overlap.
537 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
538 CaseVals.end(), CRLo,
539 CaseCompareFunctor());
540 if (I != CaseVals.end() && I->first < CRHi) {
541 OverlapVal = I->first; // Found overlap with scalar.
542 OverlapStmt = I->second;
543 }
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Douglas Gregordbb26db2009-05-15 23:57:33 +0000545 // Find the smallest value bigger than the upper bound.
546 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
547 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
548 OverlapVal = (I-1)->first; // Found overlap with scalar.
549 OverlapStmt = (I-1)->second;
550 }
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Douglas Gregordbb26db2009-05-15 23:57:33 +0000552 // Check to see if this case stmt overlaps with the subsequent
553 // case range.
554 if (i && CRLo <= HiVals[i-1]) {
555 OverlapVal = HiVals[i-1]; // Found overlap with range.
556 OverlapStmt = CaseRanges[i-1].second;
557 }
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Douglas Gregordbb26db2009-05-15 23:57:33 +0000559 if (OverlapStmt) {
560 // If we have a duplicate, report it.
561 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
562 << OverlapVal.toString(10);
Mike Stump1eb44332009-09-09 15:08:12 +0000563 Diag(OverlapStmt->getLHS()->getLocStart(),
Douglas Gregordbb26db2009-05-15 23:57:33 +0000564 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000565 // FIXME: We really want to remove the bogus case stmt from the
566 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000567 CaseListIsErroneous = true;
568 }
Chris Lattnerf3348502007-08-23 14:29:07 +0000569 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000570 }
571 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000572
Mike Stump390b4cc2009-05-16 07:39:55 +0000573 // FIXME: If the case list was broken is some way, we don't have a good system
574 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000575 if (CaseListIsErroneous)
Sebastian Redlde307472009-01-11 00:38:46 +0000576 return StmtError();
577
578 Switch.release();
579 return Owned(SS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000580}
581
Sebastian Redlf05b1522009-01-16 23:28:06 +0000582Action::OwningStmtResult
Anders Carlsson7f537c12009-05-17 21:22:26 +0000583Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, StmtArg Body) {
584 ExprArg CondArg(Cond.release());
585 Expr *condExpr = CondArg.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000586 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000587
John McCall5a881bb2009-10-12 21:59:07 +0000588 if (CheckBooleanCondition(condExpr, WhileLoc)) {
Anders Carlsson7f537c12009-05-17 21:22:26 +0000589 CondArg = condExpr;
John McCall5a881bb2009-10-12 21:59:07 +0000590 return StmtError();
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000591 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000592
Anders Carlsson75443112009-07-30 22:39:03 +0000593 Stmt *bodyStmt = Body.takeAs<Stmt>();
594 DiagnoseUnusedExprResult(bodyStmt);
Mike Stump1eb44332009-09-09 15:08:12 +0000595
Anders Carlsson7f537c12009-05-17 21:22:26 +0000596 CondArg.release();
Anders Carlsson75443112009-07-30 22:39:03 +0000597 return Owned(new (Context) WhileStmt(condExpr, bodyStmt, WhileLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000598}
599
Sebastian Redlf05b1522009-01-16 23:28:06 +0000600Action::OwningStmtResult
601Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
Chris Lattner98913592009-06-12 23:04:47 +0000602 SourceLocation WhileLoc, SourceLocation CondLParen,
603 ExprArg Cond, SourceLocation CondRParen) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000604 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000605 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000606
John McCall5a881bb2009-10-12 21:59:07 +0000607 if (CheckBooleanCondition(condExpr, DoLoc)) {
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000608 Cond = condExpr;
John McCall5a881bb2009-10-12 21:59:07 +0000609 return StmtError();
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000610 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000611
Anders Carlsson75443112009-07-30 22:39:03 +0000612 Stmt *bodyStmt = Body.takeAs<Stmt>();
613 DiagnoseUnusedExprResult(bodyStmt);
614
Sebastian Redlf05b1522009-01-16 23:28:06 +0000615 Cond.release();
Anders Carlsson75443112009-07-30 22:39:03 +0000616 return Owned(new (Context) DoStmt(bodyStmt, condExpr, DoLoc,
Chris Lattner98913592009-06-12 23:04:47 +0000617 WhileLoc, CondRParen));
Reid Spencer5f016e22007-07-11 17:01:13 +0000618}
619
Sebastian Redlf05b1522009-01-16 23:28:06 +0000620Action::OwningStmtResult
621Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
622 StmtArg first, ExprArg second, ExprArg third,
623 SourceLocation RParenLoc, StmtArg body) {
624 Stmt *First = static_cast<Stmt*>(first.get());
John McCall5a881bb2009-10-12 21:59:07 +0000625 Expr *Second = second.takeAs<Expr>();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000626 Expr *Third = static_cast<Expr*>(third.get());
627 Stmt *Body = static_cast<Stmt*>(body.get());
628
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000629 if (!getLangOptions().CPlusPlus) {
630 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000631 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
632 // declare identifiers for objects having storage class 'auto' or
633 // 'register'.
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000634 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
635 DI!=DE; ++DI) {
636 VarDecl *VD = dyn_cast<VarDecl>(*DI);
637 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
638 VD = 0;
639 if (VD == 0)
640 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
641 // FIXME: mark decl erroneous!
642 }
Chris Lattnerae3b7012007-08-28 05:03:08 +0000643 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000644 }
John McCall5a881bb2009-10-12 21:59:07 +0000645 if (Second && CheckBooleanCondition(Second, ForLoc)) {
646 second = Second;
647 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000648 }
Mike Stump1eb44332009-09-09 15:08:12 +0000649
Anders Carlsson3af708f2009-08-01 01:39:59 +0000650 DiagnoseUnusedExprResult(First);
651 DiagnoseUnusedExprResult(Third);
Anders Carlsson75443112009-07-30 22:39:03 +0000652 DiagnoseUnusedExprResult(Body);
653
Sebastian Redlf05b1522009-01-16 23:28:06 +0000654 first.release();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000655 third.release();
656 body.release();
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000657 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc,
658 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000659}
660
Sebastian Redlf05b1522009-01-16 23:28:06 +0000661Action::OwningStmtResult
662Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
663 SourceLocation LParenLoc,
664 StmtArg first, ExprArg second,
665 SourceLocation RParenLoc, StmtArg body) {
666 Stmt *First = static_cast<Stmt*>(first.get());
667 Expr *Second = static_cast<Expr*>(second.get());
668 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian20552d22008-01-10 20:33:58 +0000669 if (First) {
670 QualType FirstType;
671 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner7e24e822009-03-28 06:33:19 +0000672 if (!DS->isSingleDecl())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000673 return StmtError(Diag((*DS->decl_begin())->getLocation(),
674 diag::err_toomany_element_decls));
675
Chris Lattner7e24e822009-03-28 06:33:19 +0000676 Decl *D = DS->getSingleDecl();
Ted Kremenekf34afee2008-10-06 20:58:11 +0000677 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000678 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
679 // declare identifiers for objects having storage class 'auto' or
680 // 'register'.
Steve Naroff248a7532008-04-15 22:42:06 +0000681 VarDecl *VD = cast<VarDecl>(D);
682 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000683 return StmtError(Diag(VD->getLocation(),
684 diag::err_non_variable_decl_in_for));
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000685 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000686 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redlf05b1522009-01-16 23:28:06 +0000687 return StmtError(Diag(First->getLocStart(),
688 diag::err_selector_element_not_lvalue)
689 << First->getSourceRange());
690
Mike Stump1eb44332009-09-09 15:08:12 +0000691 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000692 }
Mike Stump1eb44332009-09-09 15:08:12 +0000693 if (!FirstType->isObjCObjectPointerType() &&
Fariborz Jahaniana5e42a82009-08-14 21:53:27 +0000694 !FirstType->isBlockPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000695 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000696 << FirstType << First->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000697 }
698 if (Second) {
699 DefaultFunctionArrayConversion(Second);
700 QualType SecondType = Second->getType();
Steve Narofff4954562009-07-16 15:41:00 +0000701 if (!SecondType->isObjCObjectPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000702 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000703 << SecondType << Second->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000704 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000705 first.release();
706 second.release();
707 body.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000708 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
709 ForLoc, RParenLoc));
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000710}
Reid Spencer5f016e22007-07-11 17:01:13 +0000711
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000712Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000713Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000714 IdentifierInfo *LabelII) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000715 // If we are in a block, reject all gotos for now.
716 if (CurBlock)
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000717 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000718
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000720 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Reid Spencer5f016e22007-07-11 17:01:13 +0000721
Steve Naroffcaaacec2009-03-13 15:38:40 +0000722 // If we haven't seen this label yet, create a forward reference.
723 if (LabelDecl == 0)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000724 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000725
Ted Kremenek8189cde2009-02-07 01:47:29 +0000726 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000727}
728
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000729Action::OwningStmtResult
Chris Lattnerad56d682009-04-19 01:04:21 +0000730Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000731 ExprArg DestExp) {
Eli Friedmanbbf46232009-03-26 00:18:06 +0000732 // Convert operand to void*
Eli Friedman33083822009-03-26 07:32:37 +0000733 Expr* E = DestExp.takeAs<Expr>();
Douglas Gregor5f1b9e62009-05-16 00:20:29 +0000734 if (!E->isTypeDependent()) {
735 QualType ETy = E->getType();
736 AssignConvertType ConvTy =
737 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
738 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
739 E, "passing"))
740 return StmtError();
741 }
742 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000743}
744
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000745Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000746Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 Scope *S = CurScope->getContinueParent();
748 if (!S) {
749 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000750 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000752
Ted Kremenek8189cde2009-02-07 01:47:29 +0000753 return Owned(new (Context) ContinueStmt(ContinueLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000754}
755
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000756Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000757Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000758 Scope *S = CurScope->getBreakParent();
759 if (!S) {
760 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000761 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000763
Ted Kremenek8189cde2009-02-07 01:47:29 +0000764 return Owned(new (Context) BreakStmt(BreakLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000765}
766
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000767/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000768///
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000769Action::OwningStmtResult
Steve Naroff4eb206b2008-09-03 18:15:37 +0000770Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000771 // If this is the first return we've seen in the block, infer the type of
772 // the block from it.
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000773 if (CurBlock->ReturnType.isNull()) {
Steve Naroffc50a4a52008-09-16 22:25:10 +0000774 if (RetValExp) {
Steve Naroff16564422008-09-24 22:26:48 +0000775 // Don't call UsualUnaryConversions(), since we don't want to do
776 // integer promotions here.
777 DefaultFunctionArrayConversion(RetValExp);
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000778 CurBlock->ReturnType = RetValExp->getType();
779 if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(RetValExp)) {
780 // We have to remove a 'const' added to copied-in variable which was
781 // part of the implementation spec. and not the actual qualifier for
782 // the variable.
783 if (CDRE->isConstQualAdded())
784 CurBlock->ReturnType.removeConst();
785 }
Steve Naroffc50a4a52008-09-16 22:25:10 +0000786 } else
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000787 CurBlock->ReturnType = Context.VoidTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +0000788 }
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000789 QualType FnRetType = CurBlock->ReturnType;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000790
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000791 if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) {
Mike Stump6c92fa72009-04-29 21:40:37 +0000792 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr)
793 << getCurFunctionOrMethodDecl()->getDeclName();
794 return StmtError();
795 }
796
Steve Naroff4eb206b2008-09-03 18:15:37 +0000797 // Otherwise, verify that this result type matches the previous one. We are
798 // pickier with blocks than for normal functions because we don't have GCC
799 // compatibility to worry about here.
800 if (CurBlock->ReturnType->isVoidType()) {
801 if (RetValExp) {
802 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000803 RetValExp->Destroy(Context);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000804 RetValExp = 0;
805 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000806 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000807 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000808
809 if (!RetValExp)
810 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
811
Mike Stump98eb8a72009-02-04 22:31:32 +0000812 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
813 // we have a non-void block with an expression, continue checking
814 QualType RetValType = RetValExp->getType();
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000815
Mike Stump1eb44332009-09-09 15:08:12 +0000816 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
817 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Mike Stump98eb8a72009-02-04 22:31:32 +0000818 // function return.
819
820 // In C++ the return statement is handled via a copy initialization.
821 // the C version of which boils down to CheckSingleAssignmentConstraints.
822 // FIXME: Leaks RetValExp.
823 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
824 return StmtError();
825
826 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000827 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000828
Ted Kremenek8189cde2009-02-07 01:47:29 +0000829 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000830}
Reid Spencer5f016e22007-07-11 17:01:13 +0000831
Sebastian Redle2b68332009-04-12 17:16:29 +0000832/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
833/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
834static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
835 Expr *RetExpr) {
836 QualType ExprType = RetExpr->getType();
837 // - in a return statement in a function with ...
838 // ... a class return type ...
839 if (!RetType->isRecordType())
840 return false;
841 // ... the same cv-unqualified type as the function return type ...
842 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
843 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
844 return false;
845 // ... the expression is the name of a non-volatile automatic object ...
846 // We ignore parentheses here.
847 // FIXME: Is this compliant?
848 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
849 if (!DR)
850 return false;
851 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
852 if (!VD)
853 return false;
854 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
855 && !VD->getType().isVolatileQualified();
856}
857
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000858Action::OwningStmtResult
Anders Carlssonf53b4432009-08-18 16:11:00 +0000859Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprArg rex) {
860 Expr *RetValExp = rex.takeAs<Expr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000861 if (CurBlock)
862 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000863
Chris Lattner371f2582008-12-04 23:50:19 +0000864 QualType FnRetType;
Mike Stumpf7c41da2009-04-29 00:43:21 +0000865 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattner371f2582008-12-04 23:50:19 +0000866 FnRetType = FD->getResultType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000867 if (FD->hasAttr<NoReturnAttr>())
Chris Lattner86625872009-05-31 19:32:13 +0000868 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Mike Stumpf7c41da2009-04-29 00:43:21 +0000869 << getCurFunctionOrMethodDecl()->getDeclName();
Mike Stumpf7c41da2009-04-29 00:43:21 +0000870 } else if (ObjCMethodDecl *MD = getCurMethodDecl())
Steve Naroffc97fb9a2009-03-03 00:45:38 +0000871 FnRetType = MD->getResultType();
872 else // If we don't have a function/method context, bail.
873 return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +0000874
Chris Lattner5cf216b2008-01-04 18:04:52 +0000875 if (FnRetType->isVoidType()) {
Douglas Gregor1be8aee2009-10-01 23:25:31 +0000876 if (RetValExp && !RetValExp->isTypeDependent()) {
877 // C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner65ce04b2008-12-18 02:01:17 +0000878 unsigned D = diag::ext_return_has_expr;
879 if (RetValExp->getType()->isVoidType())
880 D = diag::ext_return_has_void_expr;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000881
Chris Lattnere878eb02008-12-18 02:03:48 +0000882 // return (some void expression); is legal in C++.
883 if (D != diag::ext_return_has_void_expr ||
884 !getLangOptions().CPlusPlus) {
885 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
886 Diag(ReturnLoc, D)
887 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
888 << RetValExp->getSourceRange();
889 }
Mike Stump1eb44332009-09-09 15:08:12 +0000890
Anders Carlssonf53b4432009-08-18 16:11:00 +0000891 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000893 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000894 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000895
Anders Carlsson03d77762009-05-15 00:48:27 +0000896 if (!RetValExp && !FnRetType->isDependentType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000897 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
898 // C99 6.8.6.4p1 (ext_ since GCC warns)
899 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
900
901 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner08631c52008-11-23 21:45:46 +0000902 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner3c73c412008-11-19 08:23:25 +0000903 else
Chris Lattner08631c52008-11-23 21:45:46 +0000904 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000905 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner3c73c412008-11-19 08:23:25 +0000906 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000907
Douglas Gregor898574e2008-12-05 23:32:09 +0000908 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
909 // we have a non-void function with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000910
Mike Stump1eb44332009-09-09 15:08:12 +0000911 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
912 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000913 // function return.
914
Sebastian Redle2b68332009-04-12 17:16:29 +0000915 // C++0x 12.8p15: When certain criteria are met, an implementation is
916 // allowed to omit the copy construction of a class object, [...]
917 // - in a return statement in a function with a class return type, when
918 // the expression is the name of a non-volatile automatic object with
919 // the same cv-unqualified type as the function return type, the copy
920 // operation can be omitted [...]
921 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
922 // and the object to be copied is designated by an lvalue, overload
923 // resolution to select the constructor for the copy is first performed
924 // as if the object were designated by an rvalue.
925 // Note that we only compute Elidable if we're in C++0x, since we don't
926 // care otherwise.
927 bool Elidable = getLangOptions().CPlusPlus0x ?
928 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
929 false;
930
Douglas Gregor898574e2008-12-05 23:32:09 +0000931 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000932 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redle2b68332009-04-12 17:16:29 +0000933 // FIXME: Leaks RetValExp on error.
934 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable))
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000935 return StmtError();
936
Douglas Gregor898574e2008-12-05 23:32:09 +0000937 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
938 }
939
Anders Carlssonf53b4432009-08-18 16:11:00 +0000940 if (RetValExp)
941 RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000942 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000943}
944
Chris Lattner810f6d52009-03-13 17:38:01 +0000945/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
946/// ignore "noop" casts in places where an lvalue is required by an inline asm.
947/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
948/// provide a strong guidance to not use it.
949///
950/// This method checks to see if the argument is an acceptable l-value and
951/// returns false if it is a case we can handle.
952static bool CheckAsmLValue(const Expr *E, Sema &S) {
953 if (E->isLvalue(S.Context) == Expr::LV_Valid)
954 return false; // Cool, this is an lvalue.
955
956 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
957 // are supposed to allow.
958 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
959 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
960 if (!S.getLangOptions().HeinousExtensions)
961 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
962 << E->getSourceRange();
963 else
964 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
965 << E->getSourceRange();
966 // Accept, even if we emitted an error diagnostic.
967 return false;
968 }
969
970 // None of the above, just randomly invalid non-lvalue.
971 return true;
972}
973
974
Sebastian Redl3037ed02009-01-18 16:53:17 +0000975Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
976 bool IsSimple,
977 bool IsVolatile,
978 unsigned NumOutputs,
979 unsigned NumInputs,
980 std::string *Names,
981 MultiExprArg constraints,
982 MultiExprArg exprs,
983 ExprArg asmString,
984 MultiExprArg clobbers,
985 SourceLocation RParenLoc) {
986 unsigned NumClobbers = clobbers.size();
987 StringLiteral **Constraints =
988 reinterpret_cast<StringLiteral**>(constraints.get());
989 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
990 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
991 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
992
Anders Carlsson03eb5432009-01-27 20:38:24 +0000993 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Chris Lattner1708b962008-08-18 19:55:17 +0000995 // The parser verifies that there is a string literal here.
Chris Lattner6bc52112008-07-23 06:46:56 +0000996 if (AsmString->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000997 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
998 << AsmString->getSourceRange());
999
Chris Lattner1708b962008-08-18 19:55:17 +00001000 for (unsigned i = 0; i != NumOutputs; i++) {
1001 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001002 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001003 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1004 << Literal->getSourceRange());
1005
Mike Stump1eb44332009-09-09 15:08:12 +00001006 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001007 Literal->getByteLength(),
1008 Names[i]);
Chris Lattner432c8692009-04-26 17:19:08 +00001009 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001010 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001011 diag::err_asm_invalid_output_constraint)
1012 << Info.getConstraintStr());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001013
Anders Carlssond04c6e22007-11-27 04:11:28 +00001014 // Check that the output exprs are valid lvalues.
Eli Friedman72056a22009-05-03 07:49:42 +00001015 Expr *OutputExpr = Exprs[i];
Chris Lattner810f6d52009-03-13 17:38:01 +00001016 if (CheckAsmLValue(OutputExpr, *this)) {
Eli Friedman72056a22009-05-03 07:49:42 +00001017 return StmtError(Diag(OutputExpr->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001018 diag::err_asm_invalid_lvalue_in_output)
Eli Friedman72056a22009-05-03 07:49:42 +00001019 << OutputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001020 }
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Chris Lattner44def072009-04-26 07:16:29 +00001022 OutputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001023 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001024
Chris Lattner806503f2009-05-03 05:55:43 +00001025 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
1026
Anders Carlsson04728b72007-11-23 19:43:50 +00001027 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattner1708b962008-08-18 19:55:17 +00001028 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001029 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001030 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1031 << Literal->getSourceRange());
1032
Mike Stump1eb44332009-09-09 15:08:12 +00001033 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001034 Literal->getByteLength(),
1035 Names[i]);
Jay Foadbeaaccd2009-05-21 09:52:38 +00001036 if (!Context.Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001037 NumOutputs, Info)) {
Sebastian Redl3037ed02009-01-18 16:53:17 +00001038 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001039 diag::err_asm_invalid_input_constraint)
1040 << Info.getConstraintStr());
Anders Carlssond04c6e22007-11-27 04:11:28 +00001041 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001042
Eli Friedman72056a22009-05-03 07:49:42 +00001043 Expr *InputExpr = Exprs[i];
Sebastian Redl3037ed02009-01-18 16:53:17 +00001044
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001045 // Only allow void types for memory constraints.
Chris Lattner44def072009-04-26 07:16:29 +00001046 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattner810f6d52009-03-13 17:38:01 +00001047 if (CheckAsmLValue(InputExpr, *this))
Eli Friedman72056a22009-05-03 07:49:42 +00001048 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001049 diag::err_asm_invalid_lvalue_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +00001050 << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001051 << InputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001052 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001053
Chris Lattner44def072009-04-26 07:16:29 +00001054 if (Info.allowsRegister()) {
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001055 if (InputExpr->getType()->isVoidType()) {
Eli Friedman72056a22009-05-03 07:49:42 +00001056 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001057 diag::err_asm_invalid_type_in_input)
Mike Stump1eb44332009-09-09 15:08:12 +00001058 << InputExpr->getType() << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001059 << InputExpr->getSourceRange());
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001060 }
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001061 }
Mike Stump1eb44332009-09-09 15:08:12 +00001062
Anders Carlsson60329792009-02-22 02:11:23 +00001063 DefaultFunctionArrayConversion(Exprs[i]);
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Chris Lattner806503f2009-05-03 05:55:43 +00001065 InputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001066 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001067
Anders Carlsson6fa90862007-11-25 00:25:21 +00001068 // Check that the clobbers are valid.
Chris Lattner1708b962008-08-18 19:55:17 +00001069 for (unsigned i = 0; i != NumClobbers; i++) {
1070 StringLiteral *Literal = Clobbers[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001071 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001072 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1073 << Literal->getSourceRange());
1074
Daniel Dunbar77659342009-08-19 20:04:03 +00001075 std::string Clobber(Literal->getStrData(),
1076 Literal->getStrData() +
1077 Literal->getByteLength());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001078
Chris Lattner6bc52112008-07-23 06:46:56 +00001079 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001080 return StmtError(Diag(Literal->getLocStart(),
Daniel Dunbar77659342009-08-19 20:04:03 +00001081 diag::err_asm_unknown_register_name) << Clobber);
Anders Carlsson6fa90862007-11-25 00:25:21 +00001082 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001083
1084 constraints.release();
1085 exprs.release();
1086 asmString.release();
1087 clobbers.release();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001088 AsmStmt *NS =
1089 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1090 Names, Constraints, Exprs, AsmString, NumClobbers,
1091 Clobbers, RParenLoc);
1092 // Validate the asm string, ensuring it makes sense given the operands we
1093 // have.
1094 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1095 unsigned DiagOffs;
1096 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattner2ff0f422009-03-10 23:57:07 +00001097 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1098 << AsmString->getSourceRange();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001099 DeleteStmt(NS);
1100 return StmtError();
1101 }
Mike Stump1eb44332009-09-09 15:08:12 +00001102
Chris Lattner806503f2009-05-03 05:55:43 +00001103 // Validate tied input operands for type mismatches.
1104 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
1105 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
Mike Stump1eb44332009-09-09 15:08:12 +00001106
Chris Lattner806503f2009-05-03 05:55:43 +00001107 // If this is a tied constraint, verify that the output and input have
1108 // either exactly the same type, or that they are int/ptr operands with the
1109 // same size (int/long, int*/long, are ok etc).
1110 if (!Info.hasTiedOperand()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Chris Lattner806503f2009-05-03 05:55:43 +00001112 unsigned TiedTo = Info.getTiedOperand();
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001113 Expr *OutputExpr = Exprs[TiedTo];
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001114 Expr *InputExpr = Exprs[i+NumOutputs];
Chris Lattner7adaa182009-05-03 05:59:17 +00001115 QualType InTy = InputExpr->getType();
1116 QualType OutTy = OutputExpr->getType();
1117 if (Context.hasSameType(InTy, OutTy))
Chris Lattner806503f2009-05-03 05:55:43 +00001118 continue; // All types can be tied to themselves.
Mike Stump1eb44332009-09-09 15:08:12 +00001119
Chris Lattner7adaa182009-05-03 05:59:17 +00001120 // Int/ptr operands have some special cases that we allow.
1121 if ((OutTy->isIntegerType() || OutTy->isPointerType()) &&
1122 (InTy->isIntegerType() || InTy->isPointerType())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001123
Chris Lattner7adaa182009-05-03 05:59:17 +00001124 // They are ok if they are the same size. Tying void* to int is ok if
1125 // they are the same size, for example. This also allows tying void* to
1126 // int*.
Chris Lattner3351f112009-05-03 08:32:32 +00001127 uint64_t OutSize = Context.getTypeSize(OutTy);
1128 uint64_t InSize = Context.getTypeSize(InTy);
1129 if (OutSize == InSize)
Chris Lattner806503f2009-05-03 05:55:43 +00001130 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001131
Chris Lattner3351f112009-05-03 08:32:32 +00001132 // If the smaller input/output operand is not mentioned in the asm string,
1133 // then we can promote it and the asm string won't notice. Check this
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001134 // case now.
Chris Lattner3351f112009-05-03 08:32:32 +00001135 bool SmallerValueMentioned = false;
Chris Lattner58bce892009-05-03 08:24:16 +00001136 for (unsigned p = 0, e = Pieces.size(); p != e; ++p) {
1137 AsmStmt::AsmStringPiece &Piece = Pieces[p];
1138 if (!Piece.isOperand()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001139
Chris Lattner3351f112009-05-03 08:32:32 +00001140 // If this is a reference to the input and if the input was the smaller
1141 // one, then we have to reject this asm.
1142 if (Piece.getOperandNo() == i+NumOutputs) {
1143 if (InSize < OutSize) {
1144 SmallerValueMentioned = true;
1145 break;
1146 }
1147 }
1148
1149 // If this is a reference to the input and if the input was the smaller
1150 // one, then we have to reject this asm.
1151 if (Piece.getOperandNo() == TiedTo) {
1152 if (InSize > OutSize) {
1153 SmallerValueMentioned = true;
1154 break;
1155 }
1156 }
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001157 }
Mike Stump1eb44332009-09-09 15:08:12 +00001158
Chris Lattner3351f112009-05-03 08:32:32 +00001159 // If the smaller value wasn't mentioned in the asm string, and if the
1160 // output was a register, just extend the shorter one to the size of the
1161 // larger one.
1162 if (!SmallerValueMentioned &&
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001163 OutputConstraintInfos[TiedTo].allowsRegister())
1164 continue;
Chris Lattner806503f2009-05-03 05:55:43 +00001165 }
Mike Stump1eb44332009-09-09 15:08:12 +00001166
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001167 Diag(InputExpr->getLocStart(),
Chris Lattner806503f2009-05-03 05:55:43 +00001168 diag::err_asm_tying_incompatible_types)
Chris Lattner7adaa182009-05-03 05:59:17 +00001169 << InTy << OutTy << OutputExpr->getSourceRange()
Chris Lattner806503f2009-05-03 05:55:43 +00001170 << InputExpr->getSourceRange();
1171 DeleteStmt(NS);
1172 return StmtError();
1173 }
Mike Stump1eb44332009-09-09 15:08:12 +00001174
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001175 return Owned(NS);
Chris Lattnerfe795952007-10-29 04:04:16 +00001176}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001177
Sebastian Redl431e90e2009-01-18 17:43:11 +00001178Action::OwningStmtResult
1179Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001180 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redl431e90e2009-01-18 17:43:11 +00001181 StmtArg Body, StmtArg catchList) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001182 Stmt *CatchList = catchList.takeAs<Stmt>();
Chris Lattnerb28317a2009-03-28 19:18:32 +00001183 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +00001184
Steve Narofff50cb362009-03-03 20:59:06 +00001185 // PVD == 0 implies @catch(...).
Steve Naroff9d40ee52009-03-03 21:16:54 +00001186 if (PVD) {
Chris Lattner93c49452009-04-12 23:26:56 +00001187 // If we already know the decl is invalid, reject it.
1188 if (PVD->isInvalidDecl())
1189 return StmtError();
Mike Stump1eb44332009-09-09 15:08:12 +00001190
Steve Narofff4954562009-07-16 15:41:00 +00001191 if (!PVD->getType()->isObjCObjectPointerType())
Mike Stump1eb44332009-09-09 15:08:12 +00001192 return StmtError(Diag(PVD->getLocation(),
Steve Naroff9d40ee52009-03-03 21:16:54 +00001193 diag::err_catch_param_not_objc_type));
1194 if (PVD->getType()->isObjCQualifiedIdType())
Mike Stump1eb44332009-09-09 15:08:12 +00001195 return StmtError(Diag(PVD->getLocation(),
Steve Naroffd198aba2009-03-03 23:13:51 +00001196 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff9d40ee52009-03-03 21:16:54 +00001197 }
Chris Lattner93c49452009-04-12 23:26:56 +00001198
Ted Kremenek8189cde2009-02-07 01:47:29 +00001199 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Anders Carlssone9146f22009-05-01 19:49:17 +00001200 PVD, Body.takeAs<Stmt>(), CatchList);
Sebastian Redl431e90e2009-01-18 17:43:11 +00001201 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001202}
1203
Sebastian Redl431e90e2009-01-18 17:43:11 +00001204Action::OwningStmtResult
1205Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00001206 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1207 static_cast<Stmt*>(Body.release())));
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001208}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001209
Sebastian Redl431e90e2009-01-18 17:43:11 +00001210Action::OwningStmtResult
1211Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1212 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattner38c5ebd2009-04-19 05:21:20 +00001213 CurFunctionNeedsScopeChecking = true;
Anders Carlssone9146f22009-05-01 19:49:17 +00001214 return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(),
1215 Catch.takeAs<Stmt>(),
1216 Finally.takeAs<Stmt>()));
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001217}
1218
Sebastian Redl431e90e2009-01-18 17:43:11 +00001219Action::OwningStmtResult
Steve Naroff3dcfe102009-02-12 15:54:59 +00001220Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001221 Expr *ThrowExpr = expr.takeAs<Expr>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001222 if (!ThrowExpr) {
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001223 // @throw without an expression designates a rethrow (which much occur
1224 // in the context of an @catch clause).
1225 Scope *AtCatchParent = CurScope;
1226 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1227 AtCatchParent = AtCatchParent->getParent();
1228 if (!AtCatchParent)
Steve Naroff4ab24142009-02-12 18:09:32 +00001229 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroff7151bbb2009-02-11 17:45:08 +00001230 } else {
1231 QualType ThrowType = ThrowExpr->getType();
1232 // Make sure the expression type is an ObjC pointer or "void *".
Steve Narofff4954562009-07-16 15:41:00 +00001233 if (!ThrowType->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001234 const PointerType *PT = ThrowType->getAs<PointerType>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001235 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroff4ab24142009-02-12 18:09:32 +00001236 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1237 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroff7151bbb2009-02-11 17:45:08 +00001238 }
1239 }
1240 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001241}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001242
Sebastian Redl431e90e2009-01-18 17:43:11 +00001243Action::OwningStmtResult
1244Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1245 StmtArg SynchBody) {
Chris Lattner46c3c4b2009-04-21 06:01:00 +00001246 CurFunctionNeedsScopeChecking = true;
1247
Chris Lattnera868a202009-04-21 06:11:25 +00001248 // Make sure the expression type is an ObjC pointer or "void *".
1249 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
Steve Narofff4954562009-07-16 15:41:00 +00001250 if (!SyncExpr->getType()->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001251 const PointerType *PT = SyncExpr->getType()->getAs<PointerType>();
Chris Lattnera868a202009-04-21 06:11:25 +00001252 if (!PT || !PT->getPointeeType()->isVoidType())
1253 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1254 << SyncExpr->getType() << SyncExpr->getSourceRange());
1255 }
Mike Stump1eb44332009-09-09 15:08:12 +00001256
1257 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
Anders Carlssone9146f22009-05-01 19:49:17 +00001258 SynchExpr.takeAs<Stmt>(),
1259 SynchBody.takeAs<Stmt>()));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001260}
Sebastian Redl4b07b292008-12-22 19:15:10 +00001261
1262/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1263/// and creates a proper catch handler from them.
1264Action::OwningStmtResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001265Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl4b07b292008-12-22 19:15:10 +00001266 StmtArg HandlerBlock) {
1267 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001268 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001269 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Anders Carlssone9146f22009-05-01 19:49:17 +00001270 HandlerBlock.takeAs<Stmt>()));
Sebastian Redl4b07b292008-12-22 19:15:10 +00001271}
Sebastian Redl8351da02008-12-22 21:35:02 +00001272
Sebastian Redlc447aba2009-07-29 17:15:45 +00001273class TypeWithHandler {
1274 QualType t;
1275 CXXCatchStmt *stmt;
1276public:
1277 TypeWithHandler(const QualType &type, CXXCatchStmt *statement)
1278 : t(type), stmt(statement) {}
1279
John McCall0953e762009-09-24 19:53:00 +00001280 // An arbitrary order is fine as long as it places identical
1281 // types next to each other.
Sebastian Redlc447aba2009-07-29 17:15:45 +00001282 bool operator<(const TypeWithHandler &y) const {
John McCall0953e762009-09-24 19:53:00 +00001283 if (t.getAsOpaquePtr() < y.t.getAsOpaquePtr())
Sebastian Redlc447aba2009-07-29 17:15:45 +00001284 return true;
John McCall0953e762009-09-24 19:53:00 +00001285 if (t.getAsOpaquePtr() > y.t.getAsOpaquePtr())
Sebastian Redlc447aba2009-07-29 17:15:45 +00001286 return false;
1287 else
1288 return getTypeSpecStartLoc() < y.getTypeSpecStartLoc();
1289 }
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Sebastian Redlc447aba2009-07-29 17:15:45 +00001291 bool operator==(const TypeWithHandler& other) const {
John McCall0953e762009-09-24 19:53:00 +00001292 return t == other.t;
Sebastian Redlc447aba2009-07-29 17:15:45 +00001293 }
Mike Stump1eb44332009-09-09 15:08:12 +00001294
Sebastian Redlc447aba2009-07-29 17:15:45 +00001295 QualType getQualType() const { return t; }
1296 CXXCatchStmt *getCatchStmt() const { return stmt; }
1297 SourceLocation getTypeSpecStartLoc() const {
1298 return stmt->getExceptionDecl()->getTypeSpecStartLoc();
1299 }
1300};
1301
Sebastian Redl8351da02008-12-22 21:35:02 +00001302/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
1303/// handlers and creates a try statement from them.
1304Action::OwningStmtResult
1305Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock,
1306 MultiStmtArg RawHandlers) {
1307 unsigned NumHandlers = RawHandlers.size();
1308 assert(NumHandlers > 0 &&
1309 "The parser shouldn't call this if there are no handlers.");
1310 Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get());
1311
Sebastian Redlc447aba2009-07-29 17:15:45 +00001312 llvm::SmallVector<TypeWithHandler, 8> TypesWithHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +00001313
1314 for (unsigned i = 0; i < NumHandlers; ++i) {
Sebastian Redl8351da02008-12-22 21:35:02 +00001315 CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]);
Sebastian Redlc447aba2009-07-29 17:15:45 +00001316 if (!Handler->getExceptionDecl()) {
1317 if (i < NumHandlers - 1)
1318 return StmtError(Diag(Handler->getLocStart(),
1319 diag::err_early_catch_all));
Mike Stump1eb44332009-09-09 15:08:12 +00001320
Sebastian Redlc447aba2009-07-29 17:15:45 +00001321 continue;
1322 }
Mike Stump1eb44332009-09-09 15:08:12 +00001323
Sebastian Redlc447aba2009-07-29 17:15:45 +00001324 const QualType CaughtType = Handler->getCaughtType();
1325 const QualType CanonicalCaughtType = Context.getCanonicalType(CaughtType);
1326 TypesWithHandlers.push_back(TypeWithHandler(CanonicalCaughtType, Handler));
Sebastian Redl8351da02008-12-22 21:35:02 +00001327 }
Sebastian Redlc447aba2009-07-29 17:15:45 +00001328
1329 // Detect handlers for the same type as an earlier one.
1330 if (NumHandlers > 1) {
1331 llvm::array_pod_sort(TypesWithHandlers.begin(), TypesWithHandlers.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001332
Sebastian Redlc447aba2009-07-29 17:15:45 +00001333 TypeWithHandler prev = TypesWithHandlers[0];
1334 for (unsigned i = 1; i < TypesWithHandlers.size(); ++i) {
1335 TypeWithHandler curr = TypesWithHandlers[i];
Mike Stump1eb44332009-09-09 15:08:12 +00001336
Sebastian Redlc447aba2009-07-29 17:15:45 +00001337 if (curr == prev) {
1338 Diag(curr.getTypeSpecStartLoc(),
1339 diag::warn_exception_caught_by_earlier_handler)
1340 << curr.getCatchStmt()->getCaughtType().getAsString();
1341 Diag(prev.getTypeSpecStartLoc(),
1342 diag::note_previous_exception_handler)
1343 << prev.getCatchStmt()->getCaughtType().getAsString();
1344 }
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Sebastian Redlc447aba2009-07-29 17:15:45 +00001346 prev = curr;
1347 }
1348 }
Mike Stump1eb44332009-09-09 15:08:12 +00001349
Sebastian Redl8351da02008-12-22 21:35:02 +00001350 // FIXME: We should detect handlers that cannot catch anything because an
1351 // earlier handler catches a superclass. Need to find a method that is not
1352 // quadratic for this.
1353 // Neither of these are explicitly forbidden, but every compiler detects them
1354 // and warns.
1355
Sebastian Redl972041f2009-04-27 20:27:31 +00001356 CurFunctionNeedsScopeChecking = true;
Sebastian Redl8351da02008-12-22 21:35:02 +00001357 RawHandlers.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +00001358 return Owned(new (Context) CXXTryStmt(TryLoc,
1359 static_cast<Stmt*>(TryBlock.release()),
1360 Handlers, NumHandlers));
Sebastian Redl8351da02008-12-22 21:35:02 +00001361}