blob: 65611f2e5850998d52b82710a20ee72b77e9ee2c [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/AST/Expr.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");
Sebastian Redla60528c2008-12-21 12:04:03 +000029
Chris Lattner834a72a2008-07-25 23:18:17 +000030 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
31 // void expression for its side effects. Conversion to void allows any
32 // operand, even incomplete types.
Sebastian Redla60528c2008-12-21 12:04:03 +000033
Chris Lattner834a72a2008-07-25 23:18:17 +000034 // Same thing in for stmt first clause (when expr) and third clause.
Sebastian Redla60528c2008-12-21 12:04:03 +000035 return Owned(static_cast<Stmt*>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +000036}
37
38
Sebastian Redla60528c2008-12-21 12:04:03 +000039Sema::OwningStmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000040 return Owned(new (Context) NullStmt(SemiLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000041}
42
Chris Lattner682bf922009-03-29 16:50:03 +000043Sema::OwningStmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg,
Sebastian Redla60528c2008-12-21 12:04:03 +000044 SourceLocation StartLoc,
45 SourceLocation EndLoc) {
Chris Lattner682bf922009-03-29 16:50:03 +000046 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
Chris Lattner20401692009-04-12 20:13:14 +000047
48 // If we have an invalid decl, just return an error.
49 if (DG.isNull()) return StmtError();
50
Chris Lattner24e1e702009-03-04 04:23:07 +000051 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000052}
53
Anders Carlsson636463e2009-07-30 22:17:18 +000054void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
Anders Carlsson75443112009-07-30 22:39:03 +000055 const Expr *E = dyn_cast_or_null<Expr>(S);
Anders Carlsson636463e2009-07-30 22:17:18 +000056 if (!E)
57 return;
58
59 // Ignore expressions that have void type.
60 if (E->getType()->isVoidType())
61 return;
62
63 SourceLocation Loc;
64 SourceRange R1, R2;
65 if (!E->isUnusedResultAWarning(Loc, R1, R2))
66 return;
67
68 Diag(Loc, diag::warn_unused_expr) << R1 << R2;
69}
70
Sebastian Redla60528c2008-12-21 12:04:03 +000071Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +000072Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Sebastian Redla60528c2008-12-21 12:04:03 +000073 MultiStmtArg elts, bool isStmtExpr) {
74 unsigned NumElts = elts.size();
75 Stmt **Elts = reinterpret_cast<Stmt**>(elts.release());
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000076 // If we're in C89 mode, check that we don't have any decls after stmts. If
77 // so, emit an extension diagnostic.
78 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) {
79 // Note that __extension__ can be around a decl.
80 unsigned i = 0;
81 // Skip over all declarations.
82 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
83 /*empty*/;
84
85 // We found the end of the list or a statement. Scan for another declstmt.
86 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
87 /*empty*/;
88
89 if (i != NumElts) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +000090 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000091 Diag(D->getLocation(), diag::ext_mixed_decls_code);
92 }
93 }
Chris Lattner98414c12007-08-31 21:49:55 +000094 // Warn about unused expressions in statements.
95 for (unsigned i = 0; i != NumElts; ++i) {
Anders Carlsson636463e2009-07-30 22:17:18 +000096 // Ignore statements that are last in a statement expression.
97 if (isStmtExpr && i == NumElts - 1)
Chris Lattner98414c12007-08-31 21:49:55 +000098 continue;
99
Anders Carlsson636463e2009-07-30 22:17:18 +0000100 DiagnoseUnusedExprResult(Elts[i]);
Chris Lattner98414c12007-08-31 21:49:55 +0000101 }
Sebastian Redla60528c2008-12-21 12:04:03 +0000102
Ted Kremenek8189cde2009-02-07 01:47:29 +0000103 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
Reid Spencer5f016e22007-07-11 17:01:13 +0000104}
105
Sebastian Redl117054a2008-12-28 16:13:43 +0000106Action::OwningStmtResult
107Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval,
108 SourceLocation DotDotDotLoc, ExprArg rhsval,
Chris Lattner24e1e702009-03-04 04:23:07 +0000109 SourceLocation ColonLoc) {
Sebastian Redl117054a2008-12-28 16:13:43 +0000110 assert((lhsval.get() != 0) && "missing expression in case statement");
111
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 // C99 6.8.4.2p3: The expression shall be an integer constant.
Anders Carlsson51fe9962008-11-22 21:04:56 +0000113 // However, GCC allows any evaluatable integer expression.
Sebastian Redl117054a2008-12-28 16:13:43 +0000114 Expr *LHSVal = static_cast<Expr*>(lhsval.get());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000115 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() &&
116 VerifyIntegerConstantExpression(LHSVal))
Chris Lattner24e1e702009-03-04 04:23:07 +0000117 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000118
Chris Lattner6c36be52007-07-18 02:28:47 +0000119 // GCC extension: The expression shall be an integer constant.
Sebastian Redl117054a2008-12-28 16:13:43 +0000120
121 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000122 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
123 VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000124 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl117054a2008-12-28 16:13:43 +0000125 rhsval = 0;
126 }
127
Chris Lattnerbcfce662009-04-18 20:10:59 +0000128 if (getSwitchStack().empty()) {
Chris Lattner8a87e572007-07-23 17:05:23 +0000129 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner24e1e702009-03-04 04:23:07 +0000130 return StmtError();
Chris Lattner8a87e572007-07-23 17:05:23 +0000131 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000132
Sebastian Redl117054a2008-12-28 16:13:43 +0000133 // Only now release the smart pointers.
134 lhsval.release();
135 rhsval.release();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000136 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
137 ColonLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000138 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000139 return Owned(CS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000140}
141
Chris Lattner24e1e702009-03-04 04:23:07 +0000142/// ActOnCaseStmtBody - This installs a statement as the body of a case.
143void Sema::ActOnCaseStmtBody(StmtTy *caseStmt, StmtArg subStmt) {
144 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000145 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Chris Lattner24e1e702009-03-04 04:23:07 +0000146 CS->setSubStmt(SubStmt);
147}
148
Sebastian Redl117054a2008-12-28 16:13:43 +0000149Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000150Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl117054a2008-12-28 16:13:43 +0000151 StmtArg subStmt, Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000152 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Sebastian Redl117054a2008-12-28 16:13:43 +0000153
Chris Lattnerbcfce662009-04-18 20:10:59 +0000154 if (getSwitchStack().empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000155 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl117054a2008-12-28 16:13:43 +0000156 return Owned(SubStmt);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000157 }
Sebastian Redl117054a2008-12-28 16:13:43 +0000158
Douglas Gregordbb26db2009-05-15 23:57:33 +0000159 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000160 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000161 return Owned(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000162}
163
Sebastian Redlde307472009-01-11 00:38:46 +0000164Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000165Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redlde307472009-01-11 00:38:46 +0000166 SourceLocation ColonLoc, StmtArg subStmt) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000167 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Steve Narofff3cf8972009-02-28 16:48:43 +0000168 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000169 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Narofff3cf8972009-02-28 16:48:43 +0000170
Reid Spencer5f016e22007-07-11 17:01:13 +0000171 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroffcaaacec2009-03-13 15:38:40 +0000172 if (LabelDecl == 0)
173 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redlde307472009-01-11 00:38:46 +0000174
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redlde307472009-01-11 00:38:46 +0000176
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 // Otherwise, this label was either forward reference or multiply defined. If
178 // multiply defined, reject it now.
179 if (LabelDecl->getSubStmt()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000180 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000181 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redlde307472009-01-11 00:38:46 +0000182 return Owned(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 }
Sebastian Redlde307472009-01-11 00:38:46 +0000184
Reid Spencer5f016e22007-07-11 17:01:13 +0000185 // Otherwise, this label was forward declared, and we just found its real
186 // definition. Fill in the forward definition and return it.
187 LabelDecl->setIdentLoc(IdentLoc);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000188 LabelDecl->setSubStmt(SubStmt);
Sebastian Redlde307472009-01-11 00:38:46 +0000189 return Owned(LabelDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000190}
191
Sebastian Redlde307472009-01-11 00:38:46 +0000192Action::OwningStmtResult
Anders Carlssona99fad82009-05-17 18:26:53 +0000193Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal,
Sebastian Redlde307472009-01-11 00:38:46 +0000194 StmtArg ThenVal, SourceLocation ElseLoc,
195 StmtArg ElseVal) {
Anders Carlssona99fad82009-05-17 18:26:53 +0000196 OwningExprResult CondResult(CondVal.release());
197
198 Expr *condExpr = CondResult.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000199
Steve Naroff1b273c42007-09-16 14:56:35 +0000200 assert(condExpr && "ActOnIfStmt(): missing expression");
Sebastian Redlde307472009-01-11 00:38:46 +0000201
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000202 if (!condExpr->isTypeDependent()) {
203 DefaultFunctionArrayConversion(condExpr);
204 // Take ownership again until we're past the error checking.
Anders Carlssona99fad82009-05-17 18:26:53 +0000205 CondResult = condExpr;
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000206 QualType condType = condExpr->getType();
207
208 if (getLangOptions().CPlusPlus) {
209 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
210 return StmtError();
211 } else if (!condType->isScalarType()) // C99 6.8.4.1p1
212 return StmtError(Diag(IfLoc,
213 diag::err_typecheck_statement_requires_scalar)
214 << condType << condExpr->getSourceRange());
215 }
Sebastian Redlde307472009-01-11 00:38:46 +0000216
Anders Carlssone9146f22009-05-01 19:49:17 +0000217 Stmt *thenStmt = ThenVal.takeAs<Stmt>();
Anders Carlsson75443112009-07-30 22:39:03 +0000218 DiagnoseUnusedExprResult(thenStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000219
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000220 // Warn if the if block has a null body without an else value.
221 // this helps prevent bugs due to typos, such as
222 // if (condition);
223 // do_stuff();
Sebastian Redlde307472009-01-11 00:38:46 +0000224 if (!ElseVal.get()) {
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000225 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
226 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
227 }
228
Anders Carlsson75443112009-07-30 22:39:03 +0000229 Stmt *elseStmt = ElseVal.takeAs<Stmt>();
230 DiagnoseUnusedExprResult(elseStmt);
231
Anders Carlssona99fad82009-05-17 18:26:53 +0000232 CondResult.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000233 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
Anders Carlsson75443112009-07-30 22:39:03 +0000234 ElseLoc, elseStmt));
Reid Spencer5f016e22007-07-11 17:01:13 +0000235}
236
Sebastian Redlde307472009-01-11 00:38:46 +0000237Action::OwningStmtResult
238Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000239 Expr *Cond = cond.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000240
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000241 if (getLangOptions().CPlusPlus) {
242 // C++ 6.4.2.p2:
243 // The condition shall be of integral type, enumeration type, or of a class
244 // type for which a single conversion function to integral or enumeration
245 // type exists (12.3). If the condition is of class type, the condition is
246 // converted by calling that conversion function, and the result of the
247 // conversion is used in place of the original condition for the remainder
248 // of this section. Integral promotions are performed.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000249 if (!Cond->isTypeDependent()) {
250 QualType Ty = Cond->getType();
251
252 // FIXME: Handle class types.
253
254 // If the type is wrong a diagnostic will be emitted later at
255 // ActOnFinishSwitchStmt.
256 if (Ty->isIntegralType() || Ty->isEnumeralType()) {
257 // Integral promotions are performed.
258 // FIXME: Integral promotions for C++ are not complete.
259 UsualUnaryConversions(Cond);
260 }
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000261 }
262 } else {
263 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
264 UsualUnaryConversions(Cond);
265 }
Sebastian Redlde307472009-01-11 00:38:46 +0000266
Ted Kremenek8189cde2009-02-07 01:47:29 +0000267 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000268 getSwitchStack().push_back(SS);
Sebastian Redlde307472009-01-11 00:38:46 +0000269 return Owned(SS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000270}
Chris Lattner6c36be52007-07-18 02:28:47 +0000271
Chris Lattnerf4021e72007-08-23 05:46:52 +0000272/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
273/// the specified width and sign. If an overflow occurs, detect it and emit
274/// the specified diagnostic.
275void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
276 unsigned NewWidth, bool NewSign,
277 SourceLocation Loc,
278 unsigned DiagID) {
279 // Perform a conversion to the promoted condition type if needed.
280 if (NewWidth > Val.getBitWidth()) {
281 // If this is an extension, just do it.
282 llvm::APSInt OldVal(Val);
283 Val.extend(NewWidth);
284
285 // If the input was signed and negative and the output is unsigned,
286 // warn.
287 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000288 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000289
290 Val.setIsSigned(NewSign);
291 } else if (NewWidth < Val.getBitWidth()) {
292 // If this is a truncation, check for overflow.
293 llvm::APSInt ConvVal(Val);
294 ConvVal.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000295 ConvVal.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000296 ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000297 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000298 if (ConvVal != Val)
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000299 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000300
301 // Regardless of whether a diagnostic was emitted, really do the
302 // truncation.
303 Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000304 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000305 } else if (NewSign != Val.isSigned()) {
306 // Convert the sign to match the sign of the condition. This can cause
307 // overflow as well: unsigned(INTMIN)
308 llvm::APSInt OldVal(Val);
309 Val.setIsSigned(NewSign);
310
311 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000312 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000313 }
314}
315
Chris Lattner0471f5b2007-08-23 18:29:20 +0000316namespace {
317 struct CaseCompareFunctor {
318 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
319 const llvm::APSInt &RHS) {
320 return LHS.first < RHS;
321 }
Chris Lattner0e85a272007-09-03 18:31:57 +0000322 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
323 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
324 return LHS.first < RHS.first;
325 }
Chris Lattner0471f5b2007-08-23 18:29:20 +0000326 bool operator()(const llvm::APSInt &LHS,
327 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
328 return LHS < RHS.first;
329 }
330 };
331}
332
Chris Lattner764a7ce2007-09-21 18:15:22 +0000333/// CmpCaseVals - Comparison predicate for sorting case values.
334///
335static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
336 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
337 if (lhs.first < rhs.first)
338 return true;
339
340 if (lhs.first == rhs.first &&
341 lhs.second->getCaseLoc().getRawEncoding()
342 < rhs.second->getCaseLoc().getRawEncoding())
343 return true;
344 return false;
345}
346
Sebastian Redlde307472009-01-11 00:38:46 +0000347Action::OwningStmtResult
348Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
349 StmtArg Body) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000350 Stmt *BodyStmt = Body.takeAs<Stmt>();
Sebastian Redlde307472009-01-11 00:38:46 +0000351
Chris Lattnerbcfce662009-04-18 20:10:59 +0000352 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redlde307472009-01-11 00:38:46 +0000353 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
354
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000355 SS->setBody(BodyStmt, SwitchLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000356 getSwitchStack().pop_back();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000357
Chris Lattnerf4021e72007-08-23 05:46:52 +0000358 Expr *CondExpr = SS->getCond();
359 QualType CondType = CondExpr->getType();
Sebastian Redlde307472009-01-11 00:38:46 +0000360
Douglas Gregordbb26db2009-05-15 23:57:33 +0000361 if (!CondExpr->isTypeDependent() &&
362 !CondType->isIntegerType()) { // C99 6.8.4.2p1
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000363 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000364 << CondType << CondExpr->getSourceRange();
Sebastian Redlde307472009-01-11 00:38:46 +0000365 return StmtError();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000366 }
Sebastian Redlde307472009-01-11 00:38:46 +0000367
Chris Lattnerf4021e72007-08-23 05:46:52 +0000368 // Get the bitwidth of the switched-on value before promotions. We must
369 // convert the integer case values to this width before comparison.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000370 bool HasDependentValue
371 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
372 unsigned CondWidth
373 = HasDependentValue? 0
374 : static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000375 bool CondIsSigned = CondType->isSignedIntegerType();
376
377 // Accumulate all of the case values in a vector so that we can sort them
378 // and detect duplicates. This vector contains the APInt for the case after
379 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000380 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
381 CaseValsTy CaseVals;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000382
383 // Keep track of any GNU case ranges we see. The APSInt is the low value.
384 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
385
386 DefaultStmt *TheDefaultStmt = 0;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000387
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000388 bool CaseListIsErroneous = false;
389
Douglas Gregordbb26db2009-05-15 23:57:33 +0000390 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000391 SC = SC->getNextSwitchCase()) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000392
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000393 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000394 if (TheDefaultStmt) {
395 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner5f4a6822008-11-23 23:12:31 +0000396 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redlde307472009-01-11 00:38:46 +0000397
Chris Lattnerf4021e72007-08-23 05:46:52 +0000398 // FIXME: Remove the default statement from the switch block so that
Mike Stump390b4cc2009-05-16 07:39:55 +0000399 // we'll return a valid AST. This requires recursing down the AST and
400 // finding it, not something we are set up to do right now. For now,
401 // just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000402 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000403 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000404 TheDefaultStmt = DS;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000405
Chris Lattnerf4021e72007-08-23 05:46:52 +0000406 } else {
407 CaseStmt *CS = cast<CaseStmt>(SC);
408
409 // We already verified that the expression has a i-c-e value (C99
410 // 6.8.4.2p3) - get that value now.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000411 Expr *Lo = CS->getLHS();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000412
413 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
414 HasDependentValue = true;
415 break;
416 }
417
Anders Carlsson51fe9962008-11-22 21:04:56 +0000418 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000419
420 // Convert the value to the same width/sign as the condition.
421 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
422 CS->getLHS()->getLocStart(),
423 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000424
Chris Lattner1e0a3902008-01-16 19:17:22 +0000425 // If the LHS is not the same type as the condition, insert an implicit
426 // cast.
427 ImpCastExprToType(Lo, CondType);
428 CS->setLHS(Lo);
429
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000430 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000431 if (CS->getRHS()) {
432 if (CS->getRHS()->isTypeDependent() ||
433 CS->getRHS()->isValueDependent()) {
434 HasDependentValue = true;
435 break;
436 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000437 CaseRanges.push_back(std::make_pair(LoVal, CS));
Douglas Gregordbb26db2009-05-15 23:57:33 +0000438 } else
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000439 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000440 }
441 }
Douglas Gregordbb26db2009-05-15 23:57:33 +0000442
443 if (!HasDependentValue) {
444 // Sort all the scalar case values so we can easily detect duplicates.
445 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
446
447 if (!CaseVals.empty()) {
448 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
449 if (CaseVals[i].first == CaseVals[i+1].first) {
450 // If we have a duplicate, report it.
451 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
452 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
453 Diag(CaseVals[i].second->getLHS()->getLocStart(),
454 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000455 // FIXME: We really want to remove the bogus case stmt from the
456 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000457 CaseListIsErroneous = true;
458 }
459 }
460 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000461
Douglas Gregordbb26db2009-05-15 23:57:33 +0000462 // Detect duplicate case ranges, which usually don't exist at all in
463 // the first place.
464 if (!CaseRanges.empty()) {
465 // Sort all the case ranges by their low value so we can easily detect
466 // overlaps between ranges.
467 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
468
469 // Scan the ranges, computing the high values and removing empty ranges.
470 std::vector<llvm::APSInt> HiVals;
471 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
472 CaseStmt *CR = CaseRanges[i].second;
473 Expr *Hi = CR->getRHS();
474 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
475
476 // Convert the value to the same width/sign as the condition.
477 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
478 CR->getRHS()->getLocStart(),
479 diag::warn_case_value_overflow);
480
481 // If the LHS is not the same type as the condition, insert an implicit
482 // cast.
483 ImpCastExprToType(Hi, CondType);
484 CR->setRHS(Hi);
485
486 // If the low value is bigger than the high value, the case is empty.
487 if (CaseRanges[i].first > HiVal) {
488 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
489 << SourceRange(CR->getLHS()->getLocStart(),
490 CR->getRHS()->getLocEnd());
491 CaseRanges.erase(CaseRanges.begin()+i);
492 --i, --e;
493 continue;
494 }
495 HiVals.push_back(HiVal);
496 }
497
498 // Rescan the ranges, looking for overlap with singleton values and other
499 // ranges. Since the range list is sorted, we only need to compare case
500 // ranges with their neighbors.
501 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
502 llvm::APSInt &CRLo = CaseRanges[i].first;
503 llvm::APSInt &CRHi = HiVals[i];
504 CaseStmt *CR = CaseRanges[i].second;
505
506 // Check to see whether the case range overlaps with any
507 // singleton cases.
508 CaseStmt *OverlapStmt = 0;
509 llvm::APSInt OverlapVal(32);
510
511 // Find the smallest value >= the lower bound. If I is in the
512 // case range, then we have overlap.
513 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
514 CaseVals.end(), CRLo,
515 CaseCompareFunctor());
516 if (I != CaseVals.end() && I->first < CRHi) {
517 OverlapVal = I->first; // Found overlap with scalar.
518 OverlapStmt = I->second;
519 }
520
521 // Find the smallest value bigger than the upper bound.
522 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
523 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
524 OverlapVal = (I-1)->first; // Found overlap with scalar.
525 OverlapStmt = (I-1)->second;
526 }
527
528 // Check to see if this case stmt overlaps with the subsequent
529 // case range.
530 if (i && CRLo <= HiVals[i-1]) {
531 OverlapVal = HiVals[i-1]; // Found overlap with range.
532 OverlapStmt = CaseRanges[i-1].second;
533 }
534
535 if (OverlapStmt) {
536 // If we have a duplicate, report it.
537 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
538 << OverlapVal.toString(10);
539 Diag(OverlapStmt->getLHS()->getLocStart(),
540 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000541 // FIXME: We really want to remove the bogus case stmt from the
542 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000543 CaseListIsErroneous = true;
544 }
Chris Lattnerf3348502007-08-23 14:29:07 +0000545 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000546 }
547 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000548
Mike Stump390b4cc2009-05-16 07:39:55 +0000549 // FIXME: If the case list was broken is some way, we don't have a good system
550 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000551 if (CaseListIsErroneous)
Sebastian Redlde307472009-01-11 00:38:46 +0000552 return StmtError();
553
554 Switch.release();
555 return Owned(SS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000556}
557
Sebastian Redlf05b1522009-01-16 23:28:06 +0000558Action::OwningStmtResult
Anders Carlsson7f537c12009-05-17 21:22:26 +0000559Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, StmtArg Body) {
560 ExprArg CondArg(Cond.release());
561 Expr *condExpr = CondArg.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000562 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000563
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000564 if (!condExpr->isTypeDependent()) {
565 DefaultFunctionArrayConversion(condExpr);
Anders Carlsson7f537c12009-05-17 21:22:26 +0000566 CondArg = condExpr;
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000567 QualType condType = condExpr->getType();
568
569 if (getLangOptions().CPlusPlus) {
570 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
571 return StmtError();
572 } else if (!condType->isScalarType()) // C99 6.8.5p2
573 return StmtError(Diag(WhileLoc,
574 diag::err_typecheck_statement_requires_scalar)
575 << condType << condExpr->getSourceRange());
576 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000577
Anders Carlsson75443112009-07-30 22:39:03 +0000578 Stmt *bodyStmt = Body.takeAs<Stmt>();
579 DiagnoseUnusedExprResult(bodyStmt);
580
Anders Carlsson7f537c12009-05-17 21:22:26 +0000581 CondArg.release();
Anders Carlsson75443112009-07-30 22:39:03 +0000582 return Owned(new (Context) WhileStmt(condExpr, bodyStmt, WhileLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000583}
584
Sebastian Redlf05b1522009-01-16 23:28:06 +0000585Action::OwningStmtResult
586Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
Chris Lattner98913592009-06-12 23:04:47 +0000587 SourceLocation WhileLoc, SourceLocation CondLParen,
588 ExprArg Cond, SourceLocation CondRParen) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000589 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000590 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000591
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000592 if (!condExpr->isTypeDependent()) {
593 DefaultFunctionArrayConversion(condExpr);
594 Cond = condExpr;
595 QualType condType = condExpr->getType();
596
597 if (getLangOptions().CPlusPlus) {
598 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
599 return StmtError();
600 } else if (!condType->isScalarType()) // C99 6.8.5p2
601 return StmtError(Diag(DoLoc,
602 diag::err_typecheck_statement_requires_scalar)
603 << condType << condExpr->getSourceRange());
604 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000605
Anders Carlsson75443112009-07-30 22:39:03 +0000606 Stmt *bodyStmt = Body.takeAs<Stmt>();
607 DiagnoseUnusedExprResult(bodyStmt);
608
Sebastian Redlf05b1522009-01-16 23:28:06 +0000609 Cond.release();
Anders Carlsson75443112009-07-30 22:39:03 +0000610 return Owned(new (Context) DoStmt(bodyStmt, condExpr, DoLoc,
Chris Lattner98913592009-06-12 23:04:47 +0000611 WhileLoc, CondRParen));
Reid Spencer5f016e22007-07-11 17:01:13 +0000612}
613
Sebastian Redlf05b1522009-01-16 23:28:06 +0000614Action::OwningStmtResult
615Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
616 StmtArg first, ExprArg second, ExprArg third,
617 SourceLocation RParenLoc, StmtArg body) {
618 Stmt *First = static_cast<Stmt*>(first.get());
619 Expr *Second = static_cast<Expr*>(second.get());
620 Expr *Third = static_cast<Expr*>(third.get());
621 Stmt *Body = static_cast<Stmt*>(body.get());
622
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000623 if (!getLangOptions().CPlusPlus) {
624 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000625 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
626 // declare identifiers for objects having storage class 'auto' or
627 // 'register'.
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000628 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
629 DI!=DE; ++DI) {
630 VarDecl *VD = dyn_cast<VarDecl>(*DI);
631 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
632 VD = 0;
633 if (VD == 0)
634 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
635 // FIXME: mark decl erroneous!
636 }
Chris Lattnerae3b7012007-08-28 05:03:08 +0000637 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000638 }
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000639 if (Second && !Second->isTypeDependent()) {
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000640 DefaultFunctionArrayConversion(Second);
641 QualType SecondType = Second->getType();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000642
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000643 if (getLangOptions().CPlusPlus) {
644 if (CheckCXXBooleanCondition(Second)) // C++ 6.4p4
Sebastian Redlf05b1522009-01-16 23:28:06 +0000645 return StmtError();
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000646 } else if (!SecondType->isScalarType()) // C99 6.8.5p2
Sebastian Redlf05b1522009-01-16 23:28:06 +0000647 return StmtError(Diag(ForLoc,
648 diag::err_typecheck_statement_requires_scalar)
649 << SecondType << Second->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000650 }
Anders Carlsson75443112009-07-30 22:39:03 +0000651
Anders Carlsson3af708f2009-08-01 01:39:59 +0000652 DiagnoseUnusedExprResult(First);
653 DiagnoseUnusedExprResult(Third);
Anders Carlsson75443112009-07-30 22:39:03 +0000654 DiagnoseUnusedExprResult(Body);
655
Sebastian Redlf05b1522009-01-16 23:28:06 +0000656 first.release();
657 second.release();
658 third.release();
659 body.release();
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000660 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc,
661 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000662}
663
Sebastian Redlf05b1522009-01-16 23:28:06 +0000664Action::OwningStmtResult
665Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
666 SourceLocation LParenLoc,
667 StmtArg first, ExprArg second,
668 SourceLocation RParenLoc, StmtArg body) {
669 Stmt *First = static_cast<Stmt*>(first.get());
670 Expr *Second = static_cast<Expr*>(second.get());
671 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian20552d22008-01-10 20:33:58 +0000672 if (First) {
673 QualType FirstType;
674 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner7e24e822009-03-28 06:33:19 +0000675 if (!DS->isSingleDecl())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000676 return StmtError(Diag((*DS->decl_begin())->getLocation(),
677 diag::err_toomany_element_decls));
678
Chris Lattner7e24e822009-03-28 06:33:19 +0000679 Decl *D = DS->getSingleDecl();
Ted Kremenekf34afee2008-10-06 20:58:11 +0000680 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000681 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
682 // declare identifiers for objects having storage class 'auto' or
683 // 'register'.
Steve Naroff248a7532008-04-15 22:42:06 +0000684 VarDecl *VD = cast<VarDecl>(D);
685 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000686 return StmtError(Diag(VD->getLocation(),
687 diag::err_non_variable_decl_in_for));
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000688 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000689 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redlf05b1522009-01-16 23:28:06 +0000690 return StmtError(Diag(First->getLocStart(),
691 diag::err_selector_element_not_lvalue)
692 << First->getSourceRange());
693
694 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000695 }
Steve Narofff4954562009-07-16 15:41:00 +0000696 if (!FirstType->isObjCObjectPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000697 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000698 << FirstType << First->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000699 }
700 if (Second) {
701 DefaultFunctionArrayConversion(Second);
702 QualType SecondType = Second->getType();
Steve Narofff4954562009-07-16 15:41:00 +0000703 if (!SecondType->isObjCObjectPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000704 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000705 << SecondType << Second->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000706 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000707 first.release();
708 second.release();
709 body.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000710 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
711 ForLoc, RParenLoc));
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000712}
Reid Spencer5f016e22007-07-11 17:01:13 +0000713
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000714Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000715Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 IdentifierInfo *LabelII) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000717 // If we are in a block, reject all gotos for now.
718 if (CurBlock)
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000719 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000720
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000722 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Reid Spencer5f016e22007-07-11 17:01:13 +0000723
Steve Naroffcaaacec2009-03-13 15:38:40 +0000724 // If we haven't seen this label yet, create a forward reference.
725 if (LabelDecl == 0)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000726 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000727
Ted Kremenek8189cde2009-02-07 01:47:29 +0000728 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000729}
730
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000731Action::OwningStmtResult
Chris Lattnerad56d682009-04-19 01:04:21 +0000732Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000733 ExprArg DestExp) {
Eli Friedmanbbf46232009-03-26 00:18:06 +0000734 // Convert operand to void*
Eli Friedman33083822009-03-26 07:32:37 +0000735 Expr* E = DestExp.takeAs<Expr>();
Douglas Gregor5f1b9e62009-05-16 00:20:29 +0000736 if (!E->isTypeDependent()) {
737 QualType ETy = E->getType();
738 AssignConvertType ConvTy =
739 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
740 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
741 E, "passing"))
742 return StmtError();
743 }
744 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000745}
746
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000747Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000748Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000749 Scope *S = CurScope->getContinueParent();
750 if (!S) {
751 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000752 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Reid Spencer5f016e22007-07-11 17:01:13 +0000753 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000754
Ted Kremenek8189cde2009-02-07 01:47:29 +0000755 return Owned(new (Context) ContinueStmt(ContinueLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000756}
757
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000758Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000759Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 Scope *S = CurScope->getBreakParent();
761 if (!S) {
762 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000763 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Reid Spencer5f016e22007-07-11 17:01:13 +0000764 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000765
Ted Kremenek8189cde2009-02-07 01:47:29 +0000766 return Owned(new (Context) BreakStmt(BreakLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000767}
768
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000769/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000770///
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000771Action::OwningStmtResult
Steve Naroff4eb206b2008-09-03 18:15:37 +0000772Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000773 // If this is the first return we've seen in the block, infer the type of
774 // the block from it.
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000775 if (CurBlock->ReturnType.isNull()) {
Steve Naroffc50a4a52008-09-16 22:25:10 +0000776 if (RetValExp) {
Steve Naroff16564422008-09-24 22:26:48 +0000777 // Don't call UsualUnaryConversions(), since we don't want to do
778 // integer promotions here.
779 DefaultFunctionArrayConversion(RetValExp);
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000780 CurBlock->ReturnType = RetValExp->getType();
781 if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(RetValExp)) {
782 // We have to remove a 'const' added to copied-in variable which was
783 // part of the implementation spec. and not the actual qualifier for
784 // the variable.
785 if (CDRE->isConstQualAdded())
786 CurBlock->ReturnType.removeConst();
787 }
Steve Naroffc50a4a52008-09-16 22:25:10 +0000788 } else
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000789 CurBlock->ReturnType = Context.VoidTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +0000790 }
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000791 QualType FnRetType = CurBlock->ReturnType;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000792
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000793 if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) {
Mike Stump6c92fa72009-04-29 21:40:37 +0000794 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr)
795 << getCurFunctionOrMethodDecl()->getDeclName();
796 return StmtError();
797 }
798
Steve Naroff4eb206b2008-09-03 18:15:37 +0000799 // Otherwise, verify that this result type matches the previous one. We are
800 // pickier with blocks than for normal functions because we don't have GCC
801 // compatibility to worry about here.
802 if (CurBlock->ReturnType->isVoidType()) {
803 if (RetValExp) {
804 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000805 RetValExp->Destroy(Context);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000806 RetValExp = 0;
807 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000808 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000809 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000810
811 if (!RetValExp)
812 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
813
Mike Stump98eb8a72009-02-04 22:31:32 +0000814 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
815 // we have a non-void block with an expression, continue checking
816 QualType RetValType = RetValExp->getType();
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000817
Mike Stump98eb8a72009-02-04 22:31:32 +0000818 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
819 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
820 // function return.
821
822 // In C++ the return statement is handled via a copy initialization.
823 // the C version of which boils down to CheckSingleAssignmentConstraints.
824 // FIXME: Leaks RetValExp.
825 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
826 return StmtError();
827
828 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000829 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000830
Ted Kremenek8189cde2009-02-07 01:47:29 +0000831 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000832}
Reid Spencer5f016e22007-07-11 17:01:13 +0000833
Sebastian Redle2b68332009-04-12 17:16:29 +0000834/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
835/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
836static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
837 Expr *RetExpr) {
838 QualType ExprType = RetExpr->getType();
839 // - in a return statement in a function with ...
840 // ... a class return type ...
841 if (!RetType->isRecordType())
842 return false;
843 // ... the same cv-unqualified type as the function return type ...
844 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
845 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
846 return false;
847 // ... the expression is the name of a non-volatile automatic object ...
848 // We ignore parentheses here.
849 // FIXME: Is this compliant?
850 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
851 if (!DR)
852 return false;
853 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
854 if (!VD)
855 return false;
856 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
857 && !VD->getType().isVolatileQualified();
858}
859
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000860Action::OwningStmtResult
Anders Carlssona0ab25d2009-05-30 21:42:34 +0000861Sema::ActOnReturnStmt(SourceLocation ReturnLoc, FullExprArg rex) {
862 Expr *RetValExp = rex->takeAs<Expr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000863 if (CurBlock)
864 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000865
Chris Lattner371f2582008-12-04 23:50:19 +0000866 QualType FnRetType;
Mike Stumpf7c41da2009-04-29 00:43:21 +0000867 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattner371f2582008-12-04 23:50:19 +0000868 FnRetType = FD->getResultType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000869 if (FD->hasAttr<NoReturnAttr>())
Chris Lattner86625872009-05-31 19:32:13 +0000870 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Mike Stumpf7c41da2009-04-29 00:43:21 +0000871 << getCurFunctionOrMethodDecl()->getDeclName();
Mike Stumpf7c41da2009-04-29 00:43:21 +0000872 } else if (ObjCMethodDecl *MD = getCurMethodDecl())
Steve Naroffc97fb9a2009-03-03 00:45:38 +0000873 FnRetType = MD->getResultType();
874 else // If we don't have a function/method context, bail.
875 return StmtError();
876
Chris Lattner5cf216b2008-01-04 18:04:52 +0000877 if (FnRetType->isVoidType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000878 if (RetValExp) {// C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner65ce04b2008-12-18 02:01:17 +0000879 unsigned D = diag::ext_return_has_expr;
880 if (RetValExp->getType()->isVoidType())
881 D = diag::ext_return_has_void_expr;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000882
Chris Lattnere878eb02008-12-18 02:03:48 +0000883 // return (some void expression); is legal in C++.
884 if (D != diag::ext_return_has_void_expr ||
885 !getLangOptions().CPlusPlus) {
886 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
887 Diag(ReturnLoc, D)
888 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
889 << RetValExp->getSourceRange();
890 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000891 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000892 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000893 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000894
Anders Carlsson03d77762009-05-15 00:48:27 +0000895 if (!RetValExp && !FnRetType->isDependentType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000896 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
897 // C99 6.8.6.4p1 (ext_ since GCC warns)
898 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
899
900 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner08631c52008-11-23 21:45:46 +0000901 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner3c73c412008-11-19 08:23:25 +0000902 else
Chris Lattner08631c52008-11-23 21:45:46 +0000903 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000904 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner3c73c412008-11-19 08:23:25 +0000905 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000906
Douglas Gregor898574e2008-12-05 23:32:09 +0000907 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
908 // we have a non-void function with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000909
Douglas Gregor898574e2008-12-05 23:32:09 +0000910 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
911 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000912 // function return.
913
Sebastian Redle2b68332009-04-12 17:16:29 +0000914 // C++0x 12.8p15: When certain criteria are met, an implementation is
915 // allowed to omit the copy construction of a class object, [...]
916 // - in a return statement in a function with a class return type, when
917 // the expression is the name of a non-volatile automatic object with
918 // the same cv-unqualified type as the function return type, the copy
919 // operation can be omitted [...]
920 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
921 // and the object to be copied is designated by an lvalue, overload
922 // resolution to select the constructor for the copy is first performed
923 // as if the object were designated by an rvalue.
924 // Note that we only compute Elidable if we're in C++0x, since we don't
925 // care otherwise.
926 bool Elidable = getLangOptions().CPlusPlus0x ?
927 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
928 false;
929
Douglas Gregor898574e2008-12-05 23:32:09 +0000930 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000931 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redle2b68332009-04-12 17:16:29 +0000932 // FIXME: Leaks RetValExp on error.
933 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable))
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000934 return StmtError();
935
Douglas Gregor898574e2008-12-05 23:32:09 +0000936 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
937 }
938
Ted Kremenek8189cde2009-02-07 01:47:29 +0000939 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000940}
941
Chris Lattner810f6d52009-03-13 17:38:01 +0000942/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
943/// ignore "noop" casts in places where an lvalue is required by an inline asm.
944/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
945/// provide a strong guidance to not use it.
946///
947/// This method checks to see if the argument is an acceptable l-value and
948/// returns false if it is a case we can handle.
949static bool CheckAsmLValue(const Expr *E, Sema &S) {
950 if (E->isLvalue(S.Context) == Expr::LV_Valid)
951 return false; // Cool, this is an lvalue.
952
953 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
954 // are supposed to allow.
955 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
956 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
957 if (!S.getLangOptions().HeinousExtensions)
958 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
959 << E->getSourceRange();
960 else
961 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
962 << E->getSourceRange();
963 // Accept, even if we emitted an error diagnostic.
964 return false;
965 }
966
967 // None of the above, just randomly invalid non-lvalue.
968 return true;
969}
970
971
Sebastian Redl3037ed02009-01-18 16:53:17 +0000972Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
973 bool IsSimple,
974 bool IsVolatile,
975 unsigned NumOutputs,
976 unsigned NumInputs,
977 std::string *Names,
978 MultiExprArg constraints,
979 MultiExprArg exprs,
980 ExprArg asmString,
981 MultiExprArg clobbers,
982 SourceLocation RParenLoc) {
983 unsigned NumClobbers = clobbers.size();
984 StringLiteral **Constraints =
985 reinterpret_cast<StringLiteral**>(constraints.get());
986 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
987 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
988 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
989
Anders Carlsson03eb5432009-01-27 20:38:24 +0000990 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
991
Chris Lattner1708b962008-08-18 19:55:17 +0000992 // The parser verifies that there is a string literal here.
Chris Lattner6bc52112008-07-23 06:46:56 +0000993 if (AsmString->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000994 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
995 << AsmString->getSourceRange());
996
Chris Lattner1708b962008-08-18 19:55:17 +0000997 for (unsigned i = 0; i != NumOutputs; i++) {
998 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +0000999 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001000 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1001 << Literal->getSourceRange());
1002
Chris Lattner432c8692009-04-26 17:19:08 +00001003 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001004 Literal->getByteLength(),
1005 Names[i]);
Chris Lattner432c8692009-04-26 17:19:08 +00001006 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001007 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001008 diag::err_asm_invalid_output_constraint)
1009 << Info.getConstraintStr());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001010
Anders Carlssond04c6e22007-11-27 04:11:28 +00001011 // Check that the output exprs are valid lvalues.
Eli Friedman72056a22009-05-03 07:49:42 +00001012 Expr *OutputExpr = Exprs[i];
Chris Lattner810f6d52009-03-13 17:38:01 +00001013 if (CheckAsmLValue(OutputExpr, *this)) {
Eli Friedman72056a22009-05-03 07:49:42 +00001014 return StmtError(Diag(OutputExpr->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001015 diag::err_asm_invalid_lvalue_in_output)
Eli Friedman72056a22009-05-03 07:49:42 +00001016 << OutputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001017 }
Anders Carlsson03eb5432009-01-27 20:38:24 +00001018
Chris Lattner44def072009-04-26 07:16:29 +00001019 OutputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001020 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001021
Chris Lattner806503f2009-05-03 05:55:43 +00001022 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
1023
Anders Carlsson04728b72007-11-23 19:43:50 +00001024 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattner1708b962008-08-18 19:55:17 +00001025 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001026 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001027 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1028 << Literal->getSourceRange());
1029
Chris Lattner432c8692009-04-26 17:19:08 +00001030 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001031 Literal->getByteLength(),
1032 Names[i]);
Jay Foadbeaaccd2009-05-21 09:52:38 +00001033 if (!Context.Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001034 NumOutputs, Info)) {
Sebastian Redl3037ed02009-01-18 16:53:17 +00001035 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001036 diag::err_asm_invalid_input_constraint)
1037 << Info.getConstraintStr());
Anders Carlssond04c6e22007-11-27 04:11:28 +00001038 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001039
Eli Friedman72056a22009-05-03 07:49:42 +00001040 Expr *InputExpr = Exprs[i];
Sebastian Redl3037ed02009-01-18 16:53:17 +00001041
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001042 // Only allow void types for memory constraints.
Chris Lattner44def072009-04-26 07:16:29 +00001043 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattner810f6d52009-03-13 17:38:01 +00001044 if (CheckAsmLValue(InputExpr, *this))
Eli Friedman72056a22009-05-03 07:49:42 +00001045 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001046 diag::err_asm_invalid_lvalue_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +00001047 << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001048 << InputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001049 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001050
Chris Lattner44def072009-04-26 07:16:29 +00001051 if (Info.allowsRegister()) {
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001052 if (InputExpr->getType()->isVoidType()) {
Eli Friedman72056a22009-05-03 07:49:42 +00001053 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001054 diag::err_asm_invalid_type_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +00001055 << InputExpr->getType() << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001056 << InputExpr->getSourceRange());
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001057 }
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001058 }
Anders Carlsson60329792009-02-22 02:11:23 +00001059
1060 DefaultFunctionArrayConversion(Exprs[i]);
Chris Lattner49ac8812009-04-26 18:22:24 +00001061
Chris Lattner806503f2009-05-03 05:55:43 +00001062 InputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001063 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001064
Anders Carlsson6fa90862007-11-25 00:25:21 +00001065 // Check that the clobbers are valid.
Chris Lattner1708b962008-08-18 19:55:17 +00001066 for (unsigned i = 0; i != NumClobbers; i++) {
1067 StringLiteral *Literal = Clobbers[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001068 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001069 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1070 << Literal->getSourceRange());
1071
1072 llvm::SmallString<16> Clobber(Literal->getStrData(),
1073 Literal->getStrData() +
Anders Carlsson6fa90862007-11-25 00:25:21 +00001074 Literal->getByteLength());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001075
Chris Lattner6bc52112008-07-23 06:46:56 +00001076 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001077 return StmtError(Diag(Literal->getLocStart(),
1078 diag::err_asm_unknown_register_name) << Clobber.c_str());
Anders Carlsson6fa90862007-11-25 00:25:21 +00001079 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001080
1081 constraints.release();
1082 exprs.release();
1083 asmString.release();
1084 clobbers.release();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001085 AsmStmt *NS =
1086 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1087 Names, Constraints, Exprs, AsmString, NumClobbers,
1088 Clobbers, RParenLoc);
1089 // Validate the asm string, ensuring it makes sense given the operands we
1090 // have.
1091 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1092 unsigned DiagOffs;
1093 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattner2ff0f422009-03-10 23:57:07 +00001094 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1095 << AsmString->getSourceRange();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001096 DeleteStmt(NS);
1097 return StmtError();
1098 }
1099
Chris Lattner806503f2009-05-03 05:55:43 +00001100 // Validate tied input operands for type mismatches.
1101 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
1102 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
1103
1104 // If this is a tied constraint, verify that the output and input have
1105 // either exactly the same type, or that they are int/ptr operands with the
1106 // same size (int/long, int*/long, are ok etc).
1107 if (!Info.hasTiedOperand()) continue;
1108
1109 unsigned TiedTo = Info.getTiedOperand();
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001110 Expr *OutputExpr = Exprs[TiedTo];
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001111 Expr *InputExpr = Exprs[i+NumOutputs];
Chris Lattner7adaa182009-05-03 05:59:17 +00001112 QualType InTy = InputExpr->getType();
1113 QualType OutTy = OutputExpr->getType();
1114 if (Context.hasSameType(InTy, OutTy))
Chris Lattner806503f2009-05-03 05:55:43 +00001115 continue; // All types can be tied to themselves.
1116
Chris Lattner7adaa182009-05-03 05:59:17 +00001117 // Int/ptr operands have some special cases that we allow.
1118 if ((OutTy->isIntegerType() || OutTy->isPointerType()) &&
1119 (InTy->isIntegerType() || InTy->isPointerType())) {
1120
1121 // They are ok if they are the same size. Tying void* to int is ok if
1122 // they are the same size, for example. This also allows tying void* to
1123 // int*.
Chris Lattner3351f112009-05-03 08:32:32 +00001124 uint64_t OutSize = Context.getTypeSize(OutTy);
1125 uint64_t InSize = Context.getTypeSize(InTy);
1126 if (OutSize == InSize)
Chris Lattner806503f2009-05-03 05:55:43 +00001127 continue;
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001128
Chris Lattner3351f112009-05-03 08:32:32 +00001129 // If the smaller input/output operand is not mentioned in the asm string,
1130 // then we can promote it and the asm string won't notice. Check this
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001131 // case now.
Chris Lattner3351f112009-05-03 08:32:32 +00001132 bool SmallerValueMentioned = false;
Chris Lattner58bce892009-05-03 08:24:16 +00001133 for (unsigned p = 0, e = Pieces.size(); p != e; ++p) {
1134 AsmStmt::AsmStringPiece &Piece = Pieces[p];
1135 if (!Piece.isOperand()) continue;
Chris Lattner3351f112009-05-03 08:32:32 +00001136
1137 // If this is a reference to the input and if the input was the smaller
1138 // one, then we have to reject this asm.
1139 if (Piece.getOperandNo() == i+NumOutputs) {
1140 if (InSize < OutSize) {
1141 SmallerValueMentioned = true;
1142 break;
1143 }
1144 }
1145
1146 // If this is a reference to the input and if the input was the smaller
1147 // one, then we have to reject this asm.
1148 if (Piece.getOperandNo() == TiedTo) {
1149 if (InSize > OutSize) {
1150 SmallerValueMentioned = true;
1151 break;
1152 }
1153 }
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001154 }
1155
Chris Lattner3351f112009-05-03 08:32:32 +00001156 // If the smaller value wasn't mentioned in the asm string, and if the
1157 // output was a register, just extend the shorter one to the size of the
1158 // larger one.
1159 if (!SmallerValueMentioned &&
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001160 OutputConstraintInfos[TiedTo].allowsRegister())
1161 continue;
Chris Lattner806503f2009-05-03 05:55:43 +00001162 }
1163
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001164 Diag(InputExpr->getLocStart(),
Chris Lattner806503f2009-05-03 05:55:43 +00001165 diag::err_asm_tying_incompatible_types)
Chris Lattner7adaa182009-05-03 05:59:17 +00001166 << InTy << OutTy << OutputExpr->getSourceRange()
Chris Lattner806503f2009-05-03 05:55:43 +00001167 << InputExpr->getSourceRange();
1168 DeleteStmt(NS);
1169 return StmtError();
1170 }
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001171
1172 return Owned(NS);
Chris Lattnerfe795952007-10-29 04:04:16 +00001173}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001174
Sebastian Redl431e90e2009-01-18 17:43:11 +00001175Action::OwningStmtResult
1176Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001177 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redl431e90e2009-01-18 17:43:11 +00001178 StmtArg Body, StmtArg catchList) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001179 Stmt *CatchList = catchList.takeAs<Stmt>();
Chris Lattnerb28317a2009-03-28 19:18:32 +00001180 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Steve Narofff50cb362009-03-03 20:59:06 +00001181
1182 // PVD == 0 implies @catch(...).
Steve Naroff9d40ee52009-03-03 21:16:54 +00001183 if (PVD) {
Chris Lattner93c49452009-04-12 23:26:56 +00001184 // If we already know the decl is invalid, reject it.
1185 if (PVD->isInvalidDecl())
1186 return StmtError();
1187
Steve Narofff4954562009-07-16 15:41:00 +00001188 if (!PVD->getType()->isObjCObjectPointerType())
Steve Naroff9d40ee52009-03-03 21:16:54 +00001189 return StmtError(Diag(PVD->getLocation(),
1190 diag::err_catch_param_not_objc_type));
1191 if (PVD->getType()->isObjCQualifiedIdType())
1192 return StmtError(Diag(PVD->getLocation(),
Steve Naroffd198aba2009-03-03 23:13:51 +00001193 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff9d40ee52009-03-03 21:16:54 +00001194 }
Chris Lattner93c49452009-04-12 23:26:56 +00001195
Ted Kremenek8189cde2009-02-07 01:47:29 +00001196 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Anders Carlssone9146f22009-05-01 19:49:17 +00001197 PVD, Body.takeAs<Stmt>(), CatchList);
Sebastian Redl431e90e2009-01-18 17:43:11 +00001198 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001199}
1200
Sebastian Redl431e90e2009-01-18 17:43:11 +00001201Action::OwningStmtResult
1202Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00001203 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1204 static_cast<Stmt*>(Body.release())));
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001205}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001206
Sebastian Redl431e90e2009-01-18 17:43:11 +00001207Action::OwningStmtResult
1208Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1209 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattner38c5ebd2009-04-19 05:21:20 +00001210 CurFunctionNeedsScopeChecking = true;
Anders Carlssone9146f22009-05-01 19:49:17 +00001211 return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(),
1212 Catch.takeAs<Stmt>(),
1213 Finally.takeAs<Stmt>()));
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001214}
1215
Sebastian Redl431e90e2009-01-18 17:43:11 +00001216Action::OwningStmtResult
Steve Naroff3dcfe102009-02-12 15:54:59 +00001217Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001218 Expr *ThrowExpr = expr.takeAs<Expr>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001219 if (!ThrowExpr) {
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001220 // @throw without an expression designates a rethrow (which much occur
1221 // in the context of an @catch clause).
1222 Scope *AtCatchParent = CurScope;
1223 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1224 AtCatchParent = AtCatchParent->getParent();
1225 if (!AtCatchParent)
Steve Naroff4ab24142009-02-12 18:09:32 +00001226 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroff7151bbb2009-02-11 17:45:08 +00001227 } else {
1228 QualType ThrowType = ThrowExpr->getType();
1229 // Make sure the expression type is an ObjC pointer or "void *".
Steve Narofff4954562009-07-16 15:41:00 +00001230 if (!ThrowType->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001231 const PointerType *PT = ThrowType->getAs<PointerType>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001232 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroff4ab24142009-02-12 18:09:32 +00001233 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1234 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroff7151bbb2009-02-11 17:45:08 +00001235 }
1236 }
1237 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001238}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001239
Sebastian Redl431e90e2009-01-18 17:43:11 +00001240Action::OwningStmtResult
1241Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1242 StmtArg SynchBody) {
Chris Lattner46c3c4b2009-04-21 06:01:00 +00001243 CurFunctionNeedsScopeChecking = true;
1244
Chris Lattnera868a202009-04-21 06:11:25 +00001245 // Make sure the expression type is an ObjC pointer or "void *".
1246 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
Steve Narofff4954562009-07-16 15:41:00 +00001247 if (!SyncExpr->getType()->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001248 const PointerType *PT = SyncExpr->getType()->getAs<PointerType>();
Chris Lattnera868a202009-04-21 06:11:25 +00001249 if (!PT || !PT->getPointeeType()->isVoidType())
1250 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1251 << SyncExpr->getType() << SyncExpr->getSourceRange());
1252 }
1253
Anders Carlssone9146f22009-05-01 19:49:17 +00001254 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
1255 SynchExpr.takeAs<Stmt>(),
1256 SynchBody.takeAs<Stmt>()));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001257}
Sebastian Redl4b07b292008-12-22 19:15:10 +00001258
1259/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1260/// and creates a proper catch handler from them.
1261Action::OwningStmtResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001262Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl4b07b292008-12-22 19:15:10 +00001263 StmtArg HandlerBlock) {
1264 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001265 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001266 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Anders Carlssone9146f22009-05-01 19:49:17 +00001267 HandlerBlock.takeAs<Stmt>()));
Sebastian Redl4b07b292008-12-22 19:15:10 +00001268}
Sebastian Redl8351da02008-12-22 21:35:02 +00001269
Sebastian Redlc447aba2009-07-29 17:15:45 +00001270class TypeWithHandler {
1271 QualType t;
1272 CXXCatchStmt *stmt;
1273public:
1274 TypeWithHandler(const QualType &type, CXXCatchStmt *statement)
1275 : t(type), stmt(statement) {}
1276
1277 bool operator<(const TypeWithHandler &y) const {
1278 if (t.getTypePtr() < y.t.getTypePtr())
1279 return true;
1280 else if (t.getTypePtr() > y.t.getTypePtr())
1281 return false;
1282 else if (t.getCVRQualifiers() < y.t.getCVRQualifiers())
1283 return true;
1284 else if (t.getCVRQualifiers() < y.t.getCVRQualifiers())
1285 return false;
1286 else
1287 return getTypeSpecStartLoc() < y.getTypeSpecStartLoc();
1288 }
1289
1290 bool operator==(const TypeWithHandler& other) const {
1291 return t.getTypePtr() == other.t.getTypePtr()
1292 && t.getCVRQualifiers() == other.t.getCVRQualifiers();
1293 }
1294
1295 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;
1313
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));
1320
1321 continue;
1322 }
1323
1324 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());
1332
1333 TypeWithHandler prev = TypesWithHandlers[0];
1334 for (unsigned i = 1; i < TypesWithHandlers.size(); ++i) {
1335 TypeWithHandler curr = TypesWithHandlers[i];
1336
1337 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 }
1345
1346 prev = curr;
1347 }
1348 }
1349
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}