blob: 0a7ed462f81ed11621591672fb88bc73e6812432 [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
Anders Carlsson6b1d2832009-05-17 21:11:30 +000024Sema::OwningStmtResult Sema::ActOnExprStmt(FullExprArg expr) {
25 Expr *E = expr->takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +000026 assert(E && "ActOnExprStmt(): missing expression");
Sebastian Redla60528c2008-12-21 12:04:03 +000027
Chris Lattner834a72a2008-07-25 23:18:17 +000028 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
29 // void expression for its side effects. Conversion to void allows any
30 // operand, even incomplete types.
Sebastian Redla60528c2008-12-21 12:04:03 +000031
Chris Lattner834a72a2008-07-25 23:18:17 +000032 // Same thing in for stmt first clause (when expr) and third clause.
Sebastian Redla60528c2008-12-21 12:04:03 +000033 return Owned(static_cast<Stmt*>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +000034}
35
36
Sebastian Redla60528c2008-12-21 12:04:03 +000037Sema::OwningStmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000038 return Owned(new (Context) NullStmt(SemiLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000039}
40
Chris Lattner682bf922009-03-29 16:50:03 +000041Sema::OwningStmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg,
Sebastian Redla60528c2008-12-21 12:04:03 +000042 SourceLocation StartLoc,
43 SourceLocation EndLoc) {
Chris Lattner682bf922009-03-29 16:50:03 +000044 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
Chris Lattner20401692009-04-12 20:13:14 +000045
46 // If we have an invalid decl, just return an error.
47 if (DG.isNull()) return StmtError();
48
Chris Lattner24e1e702009-03-04 04:23:07 +000049 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +000050}
51
Sebastian Redla60528c2008-12-21 12:04:03 +000052Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +000053Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Sebastian Redla60528c2008-12-21 12:04:03 +000054 MultiStmtArg elts, bool isStmtExpr) {
55 unsigned NumElts = elts.size();
56 Stmt **Elts = reinterpret_cast<Stmt**>(elts.release());
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000057 // If we're in C89 mode, check that we don't have any decls after stmts. If
58 // so, emit an extension diagnostic.
59 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) {
60 // Note that __extension__ can be around a decl.
61 unsigned i = 0;
62 // Skip over all declarations.
63 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
64 /*empty*/;
65
66 // We found the end of the list or a statement. Scan for another declstmt.
67 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
68 /*empty*/;
69
70 if (i != NumElts) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +000071 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000072 Diag(D->getLocation(), diag::ext_mixed_decls_code);
73 }
74 }
Chris Lattner98414c12007-08-31 21:49:55 +000075 // Warn about unused expressions in statements.
76 for (unsigned i = 0; i != NumElts; ++i) {
77 Expr *E = dyn_cast<Expr>(Elts[i]);
78 if (!E) continue;
79
Chris Lattner026dc962009-02-14 07:37:35 +000080 // Warn about expressions with unused results if they are non-void and if
81 // this not the last stmt in a stmt expr.
82 if (E->getType()->isVoidType() || (isStmtExpr && i == NumElts-1))
Chris Lattner98414c12007-08-31 21:49:55 +000083 continue;
84
Chris Lattner026dc962009-02-14 07:37:35 +000085 SourceLocation Loc;
86 SourceRange R1, R2;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000087 if (!E->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattner98414c12007-08-31 21:49:55 +000088 continue;
Chris Lattner026dc962009-02-14 07:37:35 +000089
90 Diag(Loc, diag::warn_unused_expr) << R1 << R2;
Chris Lattner98414c12007-08-31 21:49:55 +000091 }
Sebastian Redla60528c2008-12-21 12:04:03 +000092
Ted Kremenek8189cde2009-02-07 01:47:29 +000093 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
Reid Spencer5f016e22007-07-11 17:01:13 +000094}
95
Sebastian Redl117054a2008-12-28 16:13:43 +000096Action::OwningStmtResult
97Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval,
98 SourceLocation DotDotDotLoc, ExprArg rhsval,
Chris Lattner24e1e702009-03-04 04:23:07 +000099 SourceLocation ColonLoc) {
Sebastian Redl117054a2008-12-28 16:13:43 +0000100 assert((lhsval.get() != 0) && "missing expression in case statement");
101
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 // C99 6.8.4.2p3: The expression shall be an integer constant.
Anders Carlsson51fe9962008-11-22 21:04:56 +0000103 // However, GCC allows any evaluatable integer expression.
Sebastian Redl117054a2008-12-28 16:13:43 +0000104 Expr *LHSVal = static_cast<Expr*>(lhsval.get());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000105 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() &&
106 VerifyIntegerConstantExpression(LHSVal))
Chris Lattner24e1e702009-03-04 04:23:07 +0000107 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000108
Chris Lattner6c36be52007-07-18 02:28:47 +0000109 // GCC extension: The expression shall be an integer constant.
Sebastian Redl117054a2008-12-28 16:13:43 +0000110
111 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
Douglas Gregordbb26db2009-05-15 23:57:33 +0000112 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
113 VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000114 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl117054a2008-12-28 16:13:43 +0000115 rhsval = 0;
116 }
117
Chris Lattnerbcfce662009-04-18 20:10:59 +0000118 if (getSwitchStack().empty()) {
Chris Lattner8a87e572007-07-23 17:05:23 +0000119 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner24e1e702009-03-04 04:23:07 +0000120 return StmtError();
Chris Lattner8a87e572007-07-23 17:05:23 +0000121 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000122
Sebastian Redl117054a2008-12-28 16:13:43 +0000123 // Only now release the smart pointers.
124 lhsval.release();
125 rhsval.release();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000126 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
127 ColonLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000128 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000129 return Owned(CS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000130}
131
Chris Lattner24e1e702009-03-04 04:23:07 +0000132/// ActOnCaseStmtBody - This installs a statement as the body of a case.
133void Sema::ActOnCaseStmtBody(StmtTy *caseStmt, StmtArg subStmt) {
134 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000135 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Chris Lattner24e1e702009-03-04 04:23:07 +0000136 CS->setSubStmt(SubStmt);
137}
138
Sebastian Redl117054a2008-12-28 16:13:43 +0000139Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000140Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl117054a2008-12-28 16:13:43 +0000141 StmtArg subStmt, Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000142 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Sebastian Redl117054a2008-12-28 16:13:43 +0000143
Chris Lattnerbcfce662009-04-18 20:10:59 +0000144 if (getSwitchStack().empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000145 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl117054a2008-12-28 16:13:43 +0000146 return Owned(SubStmt);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000147 }
Sebastian Redl117054a2008-12-28 16:13:43 +0000148
Douglas Gregordbb26db2009-05-15 23:57:33 +0000149 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000150 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000151 return Owned(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000152}
153
Sebastian Redlde307472009-01-11 00:38:46 +0000154Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000155Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redlde307472009-01-11 00:38:46 +0000156 SourceLocation ColonLoc, StmtArg subStmt) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000157 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Steve Narofff3cf8972009-02-28 16:48:43 +0000158 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000159 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Narofff3cf8972009-02-28 16:48:43 +0000160
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroffcaaacec2009-03-13 15:38:40 +0000162 if (LabelDecl == 0)
163 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redlde307472009-01-11 00:38:46 +0000164
Reid Spencer5f016e22007-07-11 17:01:13 +0000165 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redlde307472009-01-11 00:38:46 +0000166
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 // Otherwise, this label was either forward reference or multiply defined. If
168 // multiply defined, reject it now.
169 if (LabelDecl->getSubStmt()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000170 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000171 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redlde307472009-01-11 00:38:46 +0000172 return Owned(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 }
Sebastian Redlde307472009-01-11 00:38:46 +0000174
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 // Otherwise, this label was forward declared, and we just found its real
176 // definition. Fill in the forward definition and return it.
177 LabelDecl->setIdentLoc(IdentLoc);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000178 LabelDecl->setSubStmt(SubStmt);
Sebastian Redlde307472009-01-11 00:38:46 +0000179 return Owned(LabelDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000180}
181
Sebastian Redlde307472009-01-11 00:38:46 +0000182Action::OwningStmtResult
Anders Carlssona99fad82009-05-17 18:26:53 +0000183Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal,
Sebastian Redlde307472009-01-11 00:38:46 +0000184 StmtArg ThenVal, SourceLocation ElseLoc,
185 StmtArg ElseVal) {
Anders Carlssona99fad82009-05-17 18:26:53 +0000186 OwningExprResult CondResult(CondVal.release());
187
188 Expr *condExpr = CondResult.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000189
Steve Naroff1b273c42007-09-16 14:56:35 +0000190 assert(condExpr && "ActOnIfStmt(): missing expression");
Sebastian Redlde307472009-01-11 00:38:46 +0000191
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000192 if (!condExpr->isTypeDependent()) {
193 DefaultFunctionArrayConversion(condExpr);
194 // Take ownership again until we're past the error checking.
Anders Carlssona99fad82009-05-17 18:26:53 +0000195 CondResult = condExpr;
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000196 QualType condType = condExpr->getType();
197
198 if (getLangOptions().CPlusPlus) {
199 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
200 return StmtError();
201 } else if (!condType->isScalarType()) // C99 6.8.4.1p1
202 return StmtError(Diag(IfLoc,
203 diag::err_typecheck_statement_requires_scalar)
204 << condType << condExpr->getSourceRange());
205 }
Sebastian Redlde307472009-01-11 00:38:46 +0000206
Anders Carlssone9146f22009-05-01 19:49:17 +0000207 Stmt *thenStmt = ThenVal.takeAs<Stmt>();
Reid Spencer5f016e22007-07-11 17:01:13 +0000208
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000209 // Warn if the if block has a null body without an else value.
210 // this helps prevent bugs due to typos, such as
211 // if (condition);
212 // do_stuff();
Sebastian Redlde307472009-01-11 00:38:46 +0000213 if (!ElseVal.get()) {
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000214 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
215 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
216 }
217
Anders Carlssona99fad82009-05-17 18:26:53 +0000218 CondResult.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000219 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
Douglas Gregord06f6ca2009-05-15 18:53:42 +0000220 ElseLoc, ElseVal.takeAs<Stmt>()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000221}
222
Sebastian Redlde307472009-01-11 00:38:46 +0000223Action::OwningStmtResult
224Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000225 Expr *Cond = cond.takeAs<Expr>();
Sebastian Redlde307472009-01-11 00:38:46 +0000226
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000227 if (getLangOptions().CPlusPlus) {
228 // C++ 6.4.2.p2:
229 // The condition shall be of integral type, enumeration type, or of a class
230 // type for which a single conversion function to integral or enumeration
231 // type exists (12.3). If the condition is of class type, the condition is
232 // converted by calling that conversion function, and the result of the
233 // conversion is used in place of the original condition for the remainder
234 // of this section. Integral promotions are performed.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000235 if (!Cond->isTypeDependent()) {
236 QualType Ty = Cond->getType();
237
238 // FIXME: Handle class types.
239
240 // If the type is wrong a diagnostic will be emitted later at
241 // ActOnFinishSwitchStmt.
242 if (Ty->isIntegralType() || Ty->isEnumeralType()) {
243 // Integral promotions are performed.
244 // FIXME: Integral promotions for C++ are not complete.
245 UsualUnaryConversions(Cond);
246 }
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000247 }
248 } else {
249 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
250 UsualUnaryConversions(Cond);
251 }
Sebastian Redlde307472009-01-11 00:38:46 +0000252
Ted Kremenek8189cde2009-02-07 01:47:29 +0000253 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000254 getSwitchStack().push_back(SS);
Sebastian Redlde307472009-01-11 00:38:46 +0000255 return Owned(SS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000256}
Chris Lattner6c36be52007-07-18 02:28:47 +0000257
Chris Lattnerf4021e72007-08-23 05:46:52 +0000258/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
259/// the specified width and sign. If an overflow occurs, detect it and emit
260/// the specified diagnostic.
261void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
262 unsigned NewWidth, bool NewSign,
263 SourceLocation Loc,
264 unsigned DiagID) {
265 // Perform a conversion to the promoted condition type if needed.
266 if (NewWidth > Val.getBitWidth()) {
267 // If this is an extension, just do it.
268 llvm::APSInt OldVal(Val);
269 Val.extend(NewWidth);
270
271 // If the input was signed and negative and the output is unsigned,
272 // warn.
273 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000274 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000275
276 Val.setIsSigned(NewSign);
277 } else if (NewWidth < Val.getBitWidth()) {
278 // If this is a truncation, check for overflow.
279 llvm::APSInt ConvVal(Val);
280 ConvVal.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000281 ConvVal.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000282 ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000283 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000284 if (ConvVal != Val)
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000285 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000286
287 // Regardless of whether a diagnostic was emitted, really do the
288 // truncation.
289 Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000290 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000291 } else if (NewSign != Val.isSigned()) {
292 // Convert the sign to match the sign of the condition. This can cause
293 // overflow as well: unsigned(INTMIN)
294 llvm::APSInt OldVal(Val);
295 Val.setIsSigned(NewSign);
296
297 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000298 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000299 }
300}
301
Chris Lattner0471f5b2007-08-23 18:29:20 +0000302namespace {
303 struct CaseCompareFunctor {
304 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
305 const llvm::APSInt &RHS) {
306 return LHS.first < RHS;
307 }
Chris Lattner0e85a272007-09-03 18:31:57 +0000308 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
309 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
310 return LHS.first < RHS.first;
311 }
Chris Lattner0471f5b2007-08-23 18:29:20 +0000312 bool operator()(const llvm::APSInt &LHS,
313 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
314 return LHS < RHS.first;
315 }
316 };
317}
318
Chris Lattner764a7ce2007-09-21 18:15:22 +0000319/// CmpCaseVals - Comparison predicate for sorting case values.
320///
321static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
322 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
323 if (lhs.first < rhs.first)
324 return true;
325
326 if (lhs.first == rhs.first &&
327 lhs.second->getCaseLoc().getRawEncoding()
328 < rhs.second->getCaseLoc().getRawEncoding())
329 return true;
330 return false;
331}
332
Sebastian Redlde307472009-01-11 00:38:46 +0000333Action::OwningStmtResult
334Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
335 StmtArg Body) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000336 Stmt *BodyStmt = Body.takeAs<Stmt>();
Sebastian Redlde307472009-01-11 00:38:46 +0000337
Chris Lattnerbcfce662009-04-18 20:10:59 +0000338 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redlde307472009-01-11 00:38:46 +0000339 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
340
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000341 SS->setBody(BodyStmt, SwitchLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000342 getSwitchStack().pop_back();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000343
Chris Lattnerf4021e72007-08-23 05:46:52 +0000344 Expr *CondExpr = SS->getCond();
345 QualType CondType = CondExpr->getType();
Sebastian Redlde307472009-01-11 00:38:46 +0000346
Douglas Gregordbb26db2009-05-15 23:57:33 +0000347 if (!CondExpr->isTypeDependent() &&
348 !CondType->isIntegerType()) { // C99 6.8.4.2p1
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000349 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000350 << CondType << CondExpr->getSourceRange();
Sebastian Redlde307472009-01-11 00:38:46 +0000351 return StmtError();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000352 }
Sebastian Redlde307472009-01-11 00:38:46 +0000353
Chris Lattnerf4021e72007-08-23 05:46:52 +0000354 // Get the bitwidth of the switched-on value before promotions. We must
355 // convert the integer case values to this width before comparison.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000356 bool HasDependentValue
357 = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
358 unsigned CondWidth
359 = HasDependentValue? 0
360 : static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000361 bool CondIsSigned = CondType->isSignedIntegerType();
362
363 // Accumulate all of the case values in a vector so that we can sort them
364 // and detect duplicates. This vector contains the APInt for the case after
365 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000366 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
367 CaseValsTy CaseVals;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000368
369 // Keep track of any GNU case ranges we see. The APSInt is the low value.
370 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
371
372 DefaultStmt *TheDefaultStmt = 0;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000373
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000374 bool CaseListIsErroneous = false;
375
Douglas Gregordbb26db2009-05-15 23:57:33 +0000376 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000377 SC = SC->getNextSwitchCase()) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000378
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000379 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000380 if (TheDefaultStmt) {
381 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner5f4a6822008-11-23 23:12:31 +0000382 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redlde307472009-01-11 00:38:46 +0000383
Chris Lattnerf4021e72007-08-23 05:46:52 +0000384 // FIXME: Remove the default statement from the switch block so that
Mike Stump390b4cc2009-05-16 07:39:55 +0000385 // we'll return a valid AST. This requires recursing down the AST and
386 // finding it, not something we are set up to do right now. For now,
387 // just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000388 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000389 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000390 TheDefaultStmt = DS;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000391
Chris Lattnerf4021e72007-08-23 05:46:52 +0000392 } else {
393 CaseStmt *CS = cast<CaseStmt>(SC);
394
395 // We already verified that the expression has a i-c-e value (C99
396 // 6.8.4.2p3) - get that value now.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000397 Expr *Lo = CS->getLHS();
Douglas Gregordbb26db2009-05-15 23:57:33 +0000398
399 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
400 HasDependentValue = true;
401 break;
402 }
403
Anders Carlsson51fe9962008-11-22 21:04:56 +0000404 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000405
406 // Convert the value to the same width/sign as the condition.
407 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
408 CS->getLHS()->getLocStart(),
409 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000410
Chris Lattner1e0a3902008-01-16 19:17:22 +0000411 // If the LHS is not the same type as the condition, insert an implicit
412 // cast.
413 ImpCastExprToType(Lo, CondType);
414 CS->setLHS(Lo);
415
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000416 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000417 if (CS->getRHS()) {
418 if (CS->getRHS()->isTypeDependent() ||
419 CS->getRHS()->isValueDependent()) {
420 HasDependentValue = true;
421 break;
422 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000423 CaseRanges.push_back(std::make_pair(LoVal, CS));
Douglas Gregordbb26db2009-05-15 23:57:33 +0000424 } else
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000425 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000426 }
427 }
Douglas Gregordbb26db2009-05-15 23:57:33 +0000428
429 if (!HasDependentValue) {
430 // Sort all the scalar case values so we can easily detect duplicates.
431 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
432
433 if (!CaseVals.empty()) {
434 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
435 if (CaseVals[i].first == CaseVals[i+1].first) {
436 // If we have a duplicate, report it.
437 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
438 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
439 Diag(CaseVals[i].second->getLHS()->getLocStart(),
440 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000441 // FIXME: We really want to remove the bogus case stmt from the
442 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000443 CaseListIsErroneous = true;
444 }
445 }
446 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000447
Douglas Gregordbb26db2009-05-15 23:57:33 +0000448 // Detect duplicate case ranges, which usually don't exist at all in
449 // the first place.
450 if (!CaseRanges.empty()) {
451 // Sort all the case ranges by their low value so we can easily detect
452 // overlaps between ranges.
453 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
454
455 // Scan the ranges, computing the high values and removing empty ranges.
456 std::vector<llvm::APSInt> HiVals;
457 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
458 CaseStmt *CR = CaseRanges[i].second;
459 Expr *Hi = CR->getRHS();
460 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
461
462 // Convert the value to the same width/sign as the condition.
463 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
464 CR->getRHS()->getLocStart(),
465 diag::warn_case_value_overflow);
466
467 // If the LHS is not the same type as the condition, insert an implicit
468 // cast.
469 ImpCastExprToType(Hi, CondType);
470 CR->setRHS(Hi);
471
472 // If the low value is bigger than the high value, the case is empty.
473 if (CaseRanges[i].first > HiVal) {
474 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
475 << SourceRange(CR->getLHS()->getLocStart(),
476 CR->getRHS()->getLocEnd());
477 CaseRanges.erase(CaseRanges.begin()+i);
478 --i, --e;
479 continue;
480 }
481 HiVals.push_back(HiVal);
482 }
483
484 // Rescan the ranges, looking for overlap with singleton values and other
485 // ranges. Since the range list is sorted, we only need to compare case
486 // ranges with their neighbors.
487 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
488 llvm::APSInt &CRLo = CaseRanges[i].first;
489 llvm::APSInt &CRHi = HiVals[i];
490 CaseStmt *CR = CaseRanges[i].second;
491
492 // Check to see whether the case range overlaps with any
493 // singleton cases.
494 CaseStmt *OverlapStmt = 0;
495 llvm::APSInt OverlapVal(32);
496
497 // Find the smallest value >= the lower bound. If I is in the
498 // case range, then we have overlap.
499 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
500 CaseVals.end(), CRLo,
501 CaseCompareFunctor());
502 if (I != CaseVals.end() && I->first < CRHi) {
503 OverlapVal = I->first; // Found overlap with scalar.
504 OverlapStmt = I->second;
505 }
506
507 // Find the smallest value bigger than the upper bound.
508 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
509 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
510 OverlapVal = (I-1)->first; // Found overlap with scalar.
511 OverlapStmt = (I-1)->second;
512 }
513
514 // Check to see if this case stmt overlaps with the subsequent
515 // case range.
516 if (i && CRLo <= HiVals[i-1]) {
517 OverlapVal = HiVals[i-1]; // Found overlap with range.
518 OverlapStmt = CaseRanges[i-1].second;
519 }
520
521 if (OverlapStmt) {
522 // If we have a duplicate, report it.
523 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
524 << OverlapVal.toString(10);
525 Diag(OverlapStmt->getLHS()->getLocStart(),
526 diag::note_duplicate_case_prev);
Mike Stump390b4cc2009-05-16 07:39:55 +0000527 // FIXME: We really want to remove the bogus case stmt from the
528 // substmt, but we have no way to do this right now.
Douglas Gregordbb26db2009-05-15 23:57:33 +0000529 CaseListIsErroneous = true;
530 }
Chris Lattnerf3348502007-08-23 14:29:07 +0000531 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000532 }
533 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000534
Mike Stump390b4cc2009-05-16 07:39:55 +0000535 // FIXME: If the case list was broken is some way, we don't have a good system
536 // to patch it up. Instead, just return the whole substmt as broken.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000537 if (CaseListIsErroneous)
Sebastian Redlde307472009-01-11 00:38:46 +0000538 return StmtError();
539
540 Switch.release();
541 return Owned(SS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000542}
543
Sebastian Redlf05b1522009-01-16 23:28:06 +0000544Action::OwningStmtResult
Anders Carlsson7f537c12009-05-17 21:22:26 +0000545Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, StmtArg Body) {
546 ExprArg CondArg(Cond.release());
547 Expr *condExpr = CondArg.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000548 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000549
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000550 if (!condExpr->isTypeDependent()) {
551 DefaultFunctionArrayConversion(condExpr);
Anders Carlsson7f537c12009-05-17 21:22:26 +0000552 CondArg = condExpr;
Douglas Gregor4a2e2042009-05-15 21:45:53 +0000553 QualType condType = condExpr->getType();
554
555 if (getLangOptions().CPlusPlus) {
556 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
557 return StmtError();
558 } else if (!condType->isScalarType()) // C99 6.8.5p2
559 return StmtError(Diag(WhileLoc,
560 diag::err_typecheck_statement_requires_scalar)
561 << condType << condExpr->getSourceRange());
562 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000563
Anders Carlsson7f537c12009-05-17 21:22:26 +0000564 CondArg.release();
Anders Carlssone9146f22009-05-01 19:49:17 +0000565 return Owned(new (Context) WhileStmt(condExpr, Body.takeAs<Stmt>(),
Ted Kremenek8189cde2009-02-07 01:47:29 +0000566 WhileLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000567}
568
Sebastian Redlf05b1522009-01-16 23:28:06 +0000569Action::OwningStmtResult
570Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
Chris Lattner98913592009-06-12 23:04:47 +0000571 SourceLocation WhileLoc, SourceLocation CondLParen,
572 ExprArg Cond, SourceLocation CondRParen) {
Anders Carlssone9146f22009-05-01 19:49:17 +0000573 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff1b273c42007-09-16 14:56:35 +0000574 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000575
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000576 if (!condExpr->isTypeDependent()) {
577 DefaultFunctionArrayConversion(condExpr);
578 Cond = condExpr;
579 QualType condType = condExpr->getType();
580
581 if (getLangOptions().CPlusPlus) {
582 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
583 return StmtError();
584 } else if (!condType->isScalarType()) // C99 6.8.5p2
585 return StmtError(Diag(DoLoc,
586 diag::err_typecheck_statement_requires_scalar)
587 << condType << condExpr->getSourceRange());
588 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000589
Sebastian Redlf05b1522009-01-16 23:28:06 +0000590 Cond.release();
Douglas Gregor9f3ca2a2009-05-15 21:56:04 +0000591 return Owned(new (Context) DoStmt(Body.takeAs<Stmt>(), condExpr, DoLoc,
Chris Lattner98913592009-06-12 23:04:47 +0000592 WhileLoc, CondRParen));
Reid Spencer5f016e22007-07-11 17:01:13 +0000593}
594
Sebastian Redlf05b1522009-01-16 23:28:06 +0000595Action::OwningStmtResult
596Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
597 StmtArg first, ExprArg second, ExprArg third,
598 SourceLocation RParenLoc, StmtArg body) {
599 Stmt *First = static_cast<Stmt*>(first.get());
600 Expr *Second = static_cast<Expr*>(second.get());
601 Expr *Third = static_cast<Expr*>(third.get());
602 Stmt *Body = static_cast<Stmt*>(body.get());
603
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000604 if (!getLangOptions().CPlusPlus) {
605 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000606 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
607 // declare identifiers for objects having storage class 'auto' or
608 // 'register'.
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000609 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
610 DI!=DE; ++DI) {
611 VarDecl *VD = dyn_cast<VarDecl>(*DI);
612 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
613 VD = 0;
614 if (VD == 0)
615 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
616 // FIXME: mark decl erroneous!
617 }
Chris Lattnerae3b7012007-08-28 05:03:08 +0000618 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000619 }
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000620 if (Second && !Second->isTypeDependent()) {
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000621 DefaultFunctionArrayConversion(Second);
622 QualType SecondType = Second->getType();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000623
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000624 if (getLangOptions().CPlusPlus) {
625 if (CheckCXXBooleanCondition(Second)) // C++ 6.4p4
Sebastian Redlf05b1522009-01-16 23:28:06 +0000626 return StmtError();
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000627 } else if (!SecondType->isScalarType()) // C99 6.8.5p2
Sebastian Redlf05b1522009-01-16 23:28:06 +0000628 return StmtError(Diag(ForLoc,
629 diag::err_typecheck_statement_requires_scalar)
630 << SecondType << Second->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000631 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000632 first.release();
633 second.release();
634 third.release();
635 body.release();
Douglas Gregor5831c6a2009-05-15 22:12:32 +0000636 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc,
637 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000638}
639
Sebastian Redlf05b1522009-01-16 23:28:06 +0000640Action::OwningStmtResult
641Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
642 SourceLocation LParenLoc,
643 StmtArg first, ExprArg second,
644 SourceLocation RParenLoc, StmtArg body) {
645 Stmt *First = static_cast<Stmt*>(first.get());
646 Expr *Second = static_cast<Expr*>(second.get());
647 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian20552d22008-01-10 20:33:58 +0000648 if (First) {
649 QualType FirstType;
650 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner7e24e822009-03-28 06:33:19 +0000651 if (!DS->isSingleDecl())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000652 return StmtError(Diag((*DS->decl_begin())->getLocation(),
653 diag::err_toomany_element_decls));
654
Chris Lattner7e24e822009-03-28 06:33:19 +0000655 Decl *D = DS->getSingleDecl();
Ted Kremenekf34afee2008-10-06 20:58:11 +0000656 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000657 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
658 // declare identifiers for objects having storage class 'auto' or
659 // 'register'.
Steve Naroff248a7532008-04-15 22:42:06 +0000660 VarDecl *VD = cast<VarDecl>(D);
661 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000662 return StmtError(Diag(VD->getLocation(),
663 diag::err_non_variable_decl_in_for));
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000664 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000665 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redlf05b1522009-01-16 23:28:06 +0000666 return StmtError(Diag(First->getLocStart(),
667 diag::err_selector_element_not_lvalue)
668 << First->getSourceRange());
669
670 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000671 }
Steve Narofff4954562009-07-16 15:41:00 +0000672 if (!FirstType->isObjCObjectPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000673 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000674 << FirstType << First->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000675 }
676 if (Second) {
677 DefaultFunctionArrayConversion(Second);
678 QualType SecondType = Second->getType();
Steve Narofff4954562009-07-16 15:41:00 +0000679 if (!SecondType->isObjCObjectPointerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000680 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000681 << SecondType << Second->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000682 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000683 first.release();
684 second.release();
685 body.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000686 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
687 ForLoc, RParenLoc));
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000688}
Reid Spencer5f016e22007-07-11 17:01:13 +0000689
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000690Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000691Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000692 IdentifierInfo *LabelII) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000693 // If we are in a block, reject all gotos for now.
694 if (CurBlock)
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000695 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000696
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000698 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Reid Spencer5f016e22007-07-11 17:01:13 +0000699
Steve Naroffcaaacec2009-03-13 15:38:40 +0000700 // If we haven't seen this label yet, create a forward reference.
701 if (LabelDecl == 0)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000702 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000703
Ted Kremenek8189cde2009-02-07 01:47:29 +0000704 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000705}
706
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000707Action::OwningStmtResult
Chris Lattnerad56d682009-04-19 01:04:21 +0000708Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000709 ExprArg DestExp) {
Eli Friedmanbbf46232009-03-26 00:18:06 +0000710 // Convert operand to void*
Eli Friedman33083822009-03-26 07:32:37 +0000711 Expr* E = DestExp.takeAs<Expr>();
Douglas Gregor5f1b9e62009-05-16 00:20:29 +0000712 if (!E->isTypeDependent()) {
713 QualType ETy = E->getType();
714 AssignConvertType ConvTy =
715 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
716 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
717 E, "passing"))
718 return StmtError();
719 }
720 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000721}
722
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000723Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000724Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 Scope *S = CurScope->getContinueParent();
726 if (!S) {
727 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000728 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Reid Spencer5f016e22007-07-11 17:01:13 +0000729 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000730
Ted Kremenek8189cde2009-02-07 01:47:29 +0000731 return Owned(new (Context) ContinueStmt(ContinueLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000732}
733
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000734Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000735Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 Scope *S = CurScope->getBreakParent();
737 if (!S) {
738 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000739 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Reid Spencer5f016e22007-07-11 17:01:13 +0000740 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000741
Ted Kremenek8189cde2009-02-07 01:47:29 +0000742 return Owned(new (Context) BreakStmt(BreakLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000743}
744
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000745/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000746///
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000747Action::OwningStmtResult
Steve Naroff4eb206b2008-09-03 18:15:37 +0000748Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000749 // If this is the first return we've seen in the block, infer the type of
750 // the block from it.
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000751 if (CurBlock->ReturnType.isNull()) {
Steve Naroffc50a4a52008-09-16 22:25:10 +0000752 if (RetValExp) {
Steve Naroff16564422008-09-24 22:26:48 +0000753 // Don't call UsualUnaryConversions(), since we don't want to do
754 // integer promotions here.
755 DefaultFunctionArrayConversion(RetValExp);
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000756 CurBlock->ReturnType = RetValExp->getType();
757 if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(RetValExp)) {
758 // We have to remove a 'const' added to copied-in variable which was
759 // part of the implementation spec. and not the actual qualifier for
760 // the variable.
761 if (CDRE->isConstQualAdded())
762 CurBlock->ReturnType.removeConst();
763 }
Steve Naroffc50a4a52008-09-16 22:25:10 +0000764 } else
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000765 CurBlock->ReturnType = Context.VoidTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +0000766 }
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +0000767 QualType FnRetType = CurBlock->ReturnType;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000768
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000769 if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) {
Mike Stump6c92fa72009-04-29 21:40:37 +0000770 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr)
771 << getCurFunctionOrMethodDecl()->getDeclName();
772 return StmtError();
773 }
774
Steve Naroff4eb206b2008-09-03 18:15:37 +0000775 // Otherwise, verify that this result type matches the previous one. We are
776 // pickier with blocks than for normal functions because we don't have GCC
777 // compatibility to worry about here.
778 if (CurBlock->ReturnType->isVoidType()) {
779 if (RetValExp) {
780 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000781 RetValExp->Destroy(Context);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000782 RetValExp = 0;
783 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000784 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000785 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000786
787 if (!RetValExp)
788 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
789
Mike Stump98eb8a72009-02-04 22:31:32 +0000790 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
791 // we have a non-void block with an expression, continue checking
792 QualType RetValType = RetValExp->getType();
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000793
Mike Stump98eb8a72009-02-04 22:31:32 +0000794 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
795 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
796 // function return.
797
798 // In C++ the return statement is handled via a copy initialization.
799 // the C version of which boils down to CheckSingleAssignmentConstraints.
800 // FIXME: Leaks RetValExp.
801 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
802 return StmtError();
803
804 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000805 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000806
Ted Kremenek8189cde2009-02-07 01:47:29 +0000807 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000808}
Reid Spencer5f016e22007-07-11 17:01:13 +0000809
Sebastian Redle2b68332009-04-12 17:16:29 +0000810/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
811/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
812static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
813 Expr *RetExpr) {
814 QualType ExprType = RetExpr->getType();
815 // - in a return statement in a function with ...
816 // ... a class return type ...
817 if (!RetType->isRecordType())
818 return false;
819 // ... the same cv-unqualified type as the function return type ...
820 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
821 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
822 return false;
823 // ... the expression is the name of a non-volatile automatic object ...
824 // We ignore parentheses here.
825 // FIXME: Is this compliant?
826 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
827 if (!DR)
828 return false;
829 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
830 if (!VD)
831 return false;
832 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
833 && !VD->getType().isVolatileQualified();
834}
835
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000836Action::OwningStmtResult
Anders Carlssona0ab25d2009-05-30 21:42:34 +0000837Sema::ActOnReturnStmt(SourceLocation ReturnLoc, FullExprArg rex) {
838 Expr *RetValExp = rex->takeAs<Expr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000839 if (CurBlock)
840 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000841
Chris Lattner371f2582008-12-04 23:50:19 +0000842 QualType FnRetType;
Mike Stumpf7c41da2009-04-29 00:43:21 +0000843 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattner371f2582008-12-04 23:50:19 +0000844 FnRetType = FD->getResultType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000845 if (FD->hasAttr<NoReturnAttr>())
Chris Lattner86625872009-05-31 19:32:13 +0000846 Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr)
Mike Stumpf7c41da2009-04-29 00:43:21 +0000847 << getCurFunctionOrMethodDecl()->getDeclName();
Mike Stumpf7c41da2009-04-29 00:43:21 +0000848 } else if (ObjCMethodDecl *MD = getCurMethodDecl())
Steve Naroffc97fb9a2009-03-03 00:45:38 +0000849 FnRetType = MD->getResultType();
850 else // If we don't have a function/method context, bail.
851 return StmtError();
852
Chris Lattner5cf216b2008-01-04 18:04:52 +0000853 if (FnRetType->isVoidType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000854 if (RetValExp) {// C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner65ce04b2008-12-18 02:01:17 +0000855 unsigned D = diag::ext_return_has_expr;
856 if (RetValExp->getType()->isVoidType())
857 D = diag::ext_return_has_void_expr;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000858
Chris Lattnere878eb02008-12-18 02:03:48 +0000859 // return (some void expression); is legal in C++.
860 if (D != diag::ext_return_has_void_expr ||
861 !getLangOptions().CPlusPlus) {
862 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
863 Diag(ReturnLoc, D)
864 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
865 << RetValExp->getSourceRange();
866 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000867 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000868 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000869 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000870
Anders Carlsson03d77762009-05-15 00:48:27 +0000871 if (!RetValExp && !FnRetType->isDependentType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000872 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
873 // C99 6.8.6.4p1 (ext_ since GCC warns)
874 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
875
876 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner08631c52008-11-23 21:45:46 +0000877 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner3c73c412008-11-19 08:23:25 +0000878 else
Chris Lattner08631c52008-11-23 21:45:46 +0000879 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000880 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner3c73c412008-11-19 08:23:25 +0000881 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000882
Douglas Gregor898574e2008-12-05 23:32:09 +0000883 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
884 // we have a non-void function with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000885
Douglas Gregor898574e2008-12-05 23:32:09 +0000886 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
887 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000888 // function return.
889
Sebastian Redle2b68332009-04-12 17:16:29 +0000890 // C++0x 12.8p15: When certain criteria are met, an implementation is
891 // allowed to omit the copy construction of a class object, [...]
892 // - in a return statement in a function with a class return type, when
893 // the expression is the name of a non-volatile automatic object with
894 // the same cv-unqualified type as the function return type, the copy
895 // operation can be omitted [...]
896 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
897 // and the object to be copied is designated by an lvalue, overload
898 // resolution to select the constructor for the copy is first performed
899 // as if the object were designated by an rvalue.
900 // Note that we only compute Elidable if we're in C++0x, since we don't
901 // care otherwise.
902 bool Elidable = getLangOptions().CPlusPlus0x ?
903 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
904 false;
905
Douglas Gregor898574e2008-12-05 23:32:09 +0000906 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000907 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redle2b68332009-04-12 17:16:29 +0000908 // FIXME: Leaks RetValExp on error.
909 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable))
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000910 return StmtError();
911
Douglas Gregor898574e2008-12-05 23:32:09 +0000912 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
913 }
914
Ted Kremenek8189cde2009-02-07 01:47:29 +0000915 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000916}
917
Chris Lattner810f6d52009-03-13 17:38:01 +0000918/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
919/// ignore "noop" casts in places where an lvalue is required by an inline asm.
920/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
921/// provide a strong guidance to not use it.
922///
923/// This method checks to see if the argument is an acceptable l-value and
924/// returns false if it is a case we can handle.
925static bool CheckAsmLValue(const Expr *E, Sema &S) {
926 if (E->isLvalue(S.Context) == Expr::LV_Valid)
927 return false; // Cool, this is an lvalue.
928
929 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
930 // are supposed to allow.
931 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
932 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
933 if (!S.getLangOptions().HeinousExtensions)
934 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
935 << E->getSourceRange();
936 else
937 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
938 << E->getSourceRange();
939 // Accept, even if we emitted an error diagnostic.
940 return false;
941 }
942
943 // None of the above, just randomly invalid non-lvalue.
944 return true;
945}
946
947
Sebastian Redl3037ed02009-01-18 16:53:17 +0000948Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
949 bool IsSimple,
950 bool IsVolatile,
951 unsigned NumOutputs,
952 unsigned NumInputs,
953 std::string *Names,
954 MultiExprArg constraints,
955 MultiExprArg exprs,
956 ExprArg asmString,
957 MultiExprArg clobbers,
958 SourceLocation RParenLoc) {
959 unsigned NumClobbers = clobbers.size();
960 StringLiteral **Constraints =
961 reinterpret_cast<StringLiteral**>(constraints.get());
962 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
963 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
964 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
965
Anders Carlsson03eb5432009-01-27 20:38:24 +0000966 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
967
Chris Lattner1708b962008-08-18 19:55:17 +0000968 // The parser verifies that there is a string literal here.
Chris Lattner6bc52112008-07-23 06:46:56 +0000969 if (AsmString->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000970 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
971 << AsmString->getSourceRange());
972
Chris Lattner1708b962008-08-18 19:55:17 +0000973 for (unsigned i = 0; i != NumOutputs; i++) {
974 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +0000975 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000976 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
977 << Literal->getSourceRange());
978
Chris Lattner432c8692009-04-26 17:19:08 +0000979 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +0000980 Literal->getByteLength(),
981 Names[i]);
Chris Lattner432c8692009-04-26 17:19:08 +0000982 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redl3037ed02009-01-18 16:53:17 +0000983 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +0000984 diag::err_asm_invalid_output_constraint)
985 << Info.getConstraintStr());
Sebastian Redl3037ed02009-01-18 16:53:17 +0000986
Anders Carlssond04c6e22007-11-27 04:11:28 +0000987 // Check that the output exprs are valid lvalues.
Eli Friedman72056a22009-05-03 07:49:42 +0000988 Expr *OutputExpr = Exprs[i];
Chris Lattner810f6d52009-03-13 17:38:01 +0000989 if (CheckAsmLValue(OutputExpr, *this)) {
Eli Friedman72056a22009-05-03 07:49:42 +0000990 return StmtError(Diag(OutputExpr->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000991 diag::err_asm_invalid_lvalue_in_output)
Eli Friedman72056a22009-05-03 07:49:42 +0000992 << OutputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +0000993 }
Anders Carlsson03eb5432009-01-27 20:38:24 +0000994
Chris Lattner44def072009-04-26 07:16:29 +0000995 OutputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +0000996 }
Sebastian Redl3037ed02009-01-18 16:53:17 +0000997
Chris Lattner806503f2009-05-03 05:55:43 +0000998 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
999
Anders Carlsson04728b72007-11-23 19:43:50 +00001000 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattner1708b962008-08-18 19:55:17 +00001001 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
Chris Lattner432c8692009-04-26 17:19:08 +00001006 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001007 Literal->getByteLength(),
1008 Names[i]);
Jay Foadbeaaccd2009-05-21 09:52:38 +00001009 if (!Context.Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001010 NumOutputs, Info)) {
Sebastian Redl3037ed02009-01-18 16:53:17 +00001011 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +00001012 diag::err_asm_invalid_input_constraint)
1013 << Info.getConstraintStr());
Anders Carlssond04c6e22007-11-27 04:11:28 +00001014 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001015
Eli Friedman72056a22009-05-03 07:49:42 +00001016 Expr *InputExpr = Exprs[i];
Sebastian Redl3037ed02009-01-18 16:53:17 +00001017
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001018 // Only allow void types for memory constraints.
Chris Lattner44def072009-04-26 07:16:29 +00001019 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattner810f6d52009-03-13 17:38:01 +00001020 if (CheckAsmLValue(InputExpr, *this))
Eli Friedman72056a22009-05-03 07:49:42 +00001021 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001022 diag::err_asm_invalid_lvalue_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +00001023 << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001024 << InputExpr->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +00001025 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001026
Chris Lattner44def072009-04-26 07:16:29 +00001027 if (Info.allowsRegister()) {
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001028 if (InputExpr->getType()->isVoidType()) {
Eli Friedman72056a22009-05-03 07:49:42 +00001029 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001030 diag::err_asm_invalid_type_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +00001031 << InputExpr->getType() << Info.getConstraintStr()
Eli Friedman72056a22009-05-03 07:49:42 +00001032 << InputExpr->getSourceRange());
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001033 }
Anders Carlssond9fca6e2009-01-20 20:49:22 +00001034 }
Anders Carlsson60329792009-02-22 02:11:23 +00001035
1036 DefaultFunctionArrayConversion(Exprs[i]);
Chris Lattner49ac8812009-04-26 18:22:24 +00001037
Chris Lattner806503f2009-05-03 05:55:43 +00001038 InputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +00001039 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001040
Anders Carlsson6fa90862007-11-25 00:25:21 +00001041 // Check that the clobbers are valid.
Chris Lattner1708b962008-08-18 19:55:17 +00001042 for (unsigned i = 0; i != NumClobbers; i++) {
1043 StringLiteral *Literal = Clobbers[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001044 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001045 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1046 << Literal->getSourceRange());
1047
1048 llvm::SmallString<16> Clobber(Literal->getStrData(),
1049 Literal->getStrData() +
Anders Carlsson6fa90862007-11-25 00:25:21 +00001050 Literal->getByteLength());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001051
Chris Lattner6bc52112008-07-23 06:46:56 +00001052 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001053 return StmtError(Diag(Literal->getLocStart(),
1054 diag::err_asm_unknown_register_name) << Clobber.c_str());
Anders Carlsson6fa90862007-11-25 00:25:21 +00001055 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001056
1057 constraints.release();
1058 exprs.release();
1059 asmString.release();
1060 clobbers.release();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001061 AsmStmt *NS =
1062 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1063 Names, Constraints, Exprs, AsmString, NumClobbers,
1064 Clobbers, RParenLoc);
1065 // Validate the asm string, ensuring it makes sense given the operands we
1066 // have.
1067 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1068 unsigned DiagOffs;
1069 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattner2ff0f422009-03-10 23:57:07 +00001070 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1071 << AsmString->getSourceRange();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001072 DeleteStmt(NS);
1073 return StmtError();
1074 }
1075
Chris Lattner806503f2009-05-03 05:55:43 +00001076 // Validate tied input operands for type mismatches.
1077 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
1078 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
1079
1080 // If this is a tied constraint, verify that the output and input have
1081 // either exactly the same type, or that they are int/ptr operands with the
1082 // same size (int/long, int*/long, are ok etc).
1083 if (!Info.hasTiedOperand()) continue;
1084
1085 unsigned TiedTo = Info.getTiedOperand();
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001086 Expr *OutputExpr = Exprs[TiedTo];
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001087 Expr *InputExpr = Exprs[i+NumOutputs];
Chris Lattner7adaa182009-05-03 05:59:17 +00001088 QualType InTy = InputExpr->getType();
1089 QualType OutTy = OutputExpr->getType();
1090 if (Context.hasSameType(InTy, OutTy))
Chris Lattner806503f2009-05-03 05:55:43 +00001091 continue; // All types can be tied to themselves.
1092
Chris Lattner7adaa182009-05-03 05:59:17 +00001093 // Int/ptr operands have some special cases that we allow.
1094 if ((OutTy->isIntegerType() || OutTy->isPointerType()) &&
1095 (InTy->isIntegerType() || InTy->isPointerType())) {
1096
1097 // They are ok if they are the same size. Tying void* to int is ok if
1098 // they are the same size, for example. This also allows tying void* to
1099 // int*.
Chris Lattner3351f112009-05-03 08:32:32 +00001100 uint64_t OutSize = Context.getTypeSize(OutTy);
1101 uint64_t InSize = Context.getTypeSize(InTy);
1102 if (OutSize == InSize)
Chris Lattner806503f2009-05-03 05:55:43 +00001103 continue;
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001104
Chris Lattner3351f112009-05-03 08:32:32 +00001105 // If the smaller input/output operand is not mentioned in the asm string,
1106 // then we can promote it and the asm string won't notice. Check this
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001107 // case now.
Chris Lattner3351f112009-05-03 08:32:32 +00001108 bool SmallerValueMentioned = false;
Chris Lattner58bce892009-05-03 08:24:16 +00001109 for (unsigned p = 0, e = Pieces.size(); p != e; ++p) {
1110 AsmStmt::AsmStringPiece &Piece = Pieces[p];
1111 if (!Piece.isOperand()) continue;
Chris Lattner3351f112009-05-03 08:32:32 +00001112
1113 // If this is a reference to the input and if the input was the smaller
1114 // one, then we have to reject this asm.
1115 if (Piece.getOperandNo() == i+NumOutputs) {
1116 if (InSize < OutSize) {
1117 SmallerValueMentioned = true;
1118 break;
1119 }
1120 }
1121
1122 // If this is a reference to the input and if the input was the smaller
1123 // one, then we have to reject this asm.
1124 if (Piece.getOperandNo() == TiedTo) {
1125 if (InSize > OutSize) {
1126 SmallerValueMentioned = true;
1127 break;
1128 }
1129 }
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001130 }
1131
Chris Lattner3351f112009-05-03 08:32:32 +00001132 // If the smaller value wasn't mentioned in the asm string, and if the
1133 // output was a register, just extend the shorter one to the size of the
1134 // larger one.
1135 if (!SmallerValueMentioned &&
Chris Lattnerf69fcae2009-05-03 07:04:21 +00001136 OutputConstraintInfos[TiedTo].allowsRegister())
1137 continue;
Chris Lattner806503f2009-05-03 05:55:43 +00001138 }
1139
Chris Lattnerc1f3b282009-05-03 06:50:40 +00001140 Diag(InputExpr->getLocStart(),
Chris Lattner806503f2009-05-03 05:55:43 +00001141 diag::err_asm_tying_incompatible_types)
Chris Lattner7adaa182009-05-03 05:59:17 +00001142 << InTy << OutTy << OutputExpr->getSourceRange()
Chris Lattner806503f2009-05-03 05:55:43 +00001143 << InputExpr->getSourceRange();
1144 DeleteStmt(NS);
1145 return StmtError();
1146 }
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001147
1148 return Owned(NS);
Chris Lattnerfe795952007-10-29 04:04:16 +00001149}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001150
Sebastian Redl431e90e2009-01-18 17:43:11 +00001151Action::OwningStmtResult
1152Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001153 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redl431e90e2009-01-18 17:43:11 +00001154 StmtArg Body, StmtArg catchList) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001155 Stmt *CatchList = catchList.takeAs<Stmt>();
Chris Lattnerb28317a2009-03-28 19:18:32 +00001156 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Steve Narofff50cb362009-03-03 20:59:06 +00001157
1158 // PVD == 0 implies @catch(...).
Steve Naroff9d40ee52009-03-03 21:16:54 +00001159 if (PVD) {
Chris Lattner93c49452009-04-12 23:26:56 +00001160 // If we already know the decl is invalid, reject it.
1161 if (PVD->isInvalidDecl())
1162 return StmtError();
1163
Steve Narofff4954562009-07-16 15:41:00 +00001164 if (!PVD->getType()->isObjCObjectPointerType())
Steve Naroff9d40ee52009-03-03 21:16:54 +00001165 return StmtError(Diag(PVD->getLocation(),
1166 diag::err_catch_param_not_objc_type));
1167 if (PVD->getType()->isObjCQualifiedIdType())
1168 return StmtError(Diag(PVD->getLocation(),
Steve Naroffd198aba2009-03-03 23:13:51 +00001169 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff9d40ee52009-03-03 21:16:54 +00001170 }
Chris Lattner93c49452009-04-12 23:26:56 +00001171
Ted Kremenek8189cde2009-02-07 01:47:29 +00001172 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Anders Carlssone9146f22009-05-01 19:49:17 +00001173 PVD, Body.takeAs<Stmt>(), CatchList);
Sebastian Redl431e90e2009-01-18 17:43:11 +00001174 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001175}
1176
Sebastian Redl431e90e2009-01-18 17:43:11 +00001177Action::OwningStmtResult
1178Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00001179 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1180 static_cast<Stmt*>(Body.release())));
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001181}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001182
Sebastian Redl431e90e2009-01-18 17:43:11 +00001183Action::OwningStmtResult
1184Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1185 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattner38c5ebd2009-04-19 05:21:20 +00001186 CurFunctionNeedsScopeChecking = true;
Anders Carlssone9146f22009-05-01 19:49:17 +00001187 return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(),
1188 Catch.takeAs<Stmt>(),
1189 Finally.takeAs<Stmt>()));
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001190}
1191
Sebastian Redl431e90e2009-01-18 17:43:11 +00001192Action::OwningStmtResult
Steve Naroff3dcfe102009-02-12 15:54:59 +00001193Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001194 Expr *ThrowExpr = expr.takeAs<Expr>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001195 if (!ThrowExpr) {
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001196 // @throw without an expression designates a rethrow (which much occur
1197 // in the context of an @catch clause).
1198 Scope *AtCatchParent = CurScope;
1199 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1200 AtCatchParent = AtCatchParent->getParent();
1201 if (!AtCatchParent)
Steve Naroff4ab24142009-02-12 18:09:32 +00001202 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroff7151bbb2009-02-11 17:45:08 +00001203 } else {
1204 QualType ThrowType = ThrowExpr->getType();
1205 // Make sure the expression type is an ObjC pointer or "void *".
Steve Narofff4954562009-07-16 15:41:00 +00001206 if (!ThrowType->isObjCObjectPointerType()) {
Ted Kremenek1a1a6e22009-07-16 19:58:26 +00001207 const PointerType *PT = ThrowType->getAs<PointerType>();
Steve Naroff7151bbb2009-02-11 17:45:08 +00001208 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroff4ab24142009-02-12 18:09:32 +00001209 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1210 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroff7151bbb2009-02-11 17:45:08 +00001211 }
1212 }
1213 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001214}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001215
Sebastian Redl431e90e2009-01-18 17:43:11 +00001216Action::OwningStmtResult
1217Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1218 StmtArg SynchBody) {
Chris Lattner46c3c4b2009-04-21 06:01:00 +00001219 CurFunctionNeedsScopeChecking = true;
1220
Chris Lattnera868a202009-04-21 06:11:25 +00001221 // Make sure the expression type is an ObjC pointer or "void *".
1222 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
Steve Narofff4954562009-07-16 15:41:00 +00001223 if (!SyncExpr->getType()->isObjCObjectPointerType()) {
Ted Kremenek1a1a6e22009-07-16 19:58:26 +00001224 const PointerType *PT = SyncExpr->getType()->getAs<PointerType>();
Chris Lattnera868a202009-04-21 06:11:25 +00001225 if (!PT || !PT->getPointeeType()->isVoidType())
1226 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1227 << SyncExpr->getType() << SyncExpr->getSourceRange());
1228 }
1229
Anders Carlssone9146f22009-05-01 19:49:17 +00001230 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
1231 SynchExpr.takeAs<Stmt>(),
1232 SynchBody.takeAs<Stmt>()));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001233}
Sebastian Redl4b07b292008-12-22 19:15:10 +00001234
1235/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1236/// and creates a proper catch handler from them.
1237Action::OwningStmtResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001238Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl4b07b292008-12-22 19:15:10 +00001239 StmtArg HandlerBlock) {
1240 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001241 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001242 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Anders Carlssone9146f22009-05-01 19:49:17 +00001243 HandlerBlock.takeAs<Stmt>()));
Sebastian Redl4b07b292008-12-22 19:15:10 +00001244}
Sebastian Redl8351da02008-12-22 21:35:02 +00001245
1246/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
1247/// handlers and creates a try statement from them.
1248Action::OwningStmtResult
1249Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock,
1250 MultiStmtArg RawHandlers) {
1251 unsigned NumHandlers = RawHandlers.size();
1252 assert(NumHandlers > 0 &&
1253 "The parser shouldn't call this if there are no handlers.");
1254 Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get());
1255
1256 for(unsigned i = 0; i < NumHandlers - 1; ++i) {
1257 CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]);
1258 if (!Handler->getExceptionDecl())
1259 return StmtError(Diag(Handler->getLocStart(), diag::err_early_catch_all));
1260 }
1261 // FIXME: We should detect handlers for the same type as an earlier one.
1262 // This one is rather easy.
1263 // FIXME: We should detect handlers that cannot catch anything because an
1264 // earlier handler catches a superclass. Need to find a method that is not
1265 // quadratic for this.
1266 // Neither of these are explicitly forbidden, but every compiler detects them
1267 // and warns.
1268
Sebastian Redl972041f2009-04-27 20:27:31 +00001269 CurFunctionNeedsScopeChecking = true;
Sebastian Redl8351da02008-12-22 21:35:02 +00001270 RawHandlers.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +00001271 return Owned(new (Context) CXXTryStmt(TryLoc,
1272 static_cast<Stmt*>(TryBlock.release()),
1273 Handlers, NumHandlers));
Sebastian Redl8351da02008-12-22 21:35:02 +00001274}