blob: 93e30ec65f62898232e7d4b0113bc3c7b431bf26 [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
Sebastian Redla60528c2008-12-21 12:04:03 +000024Sema::OwningStmtResult Sema::ActOnExprStmt(ExprArg expr) {
25 Expr *E = static_cast<Expr*>(expr.release());
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;
87 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());
Anders Carlssond3a61d52008-12-01 02:13:02 +0000105 if (VerifyIntegerConstantExpression(LHSVal))
Chris Lattner24e1e702009-03-04 04:23:07 +0000106 return StmtError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000107
Chris Lattner6c36be52007-07-18 02:28:47 +0000108 // GCC extension: The expression shall be an integer constant.
Sebastian Redl117054a2008-12-28 16:13:43 +0000109
110 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
111 if (RHSVal && VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000112 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl117054a2008-12-28 16:13:43 +0000113 rhsval = 0;
114 }
115
Chris Lattnerbcfce662009-04-18 20:10:59 +0000116 if (getSwitchStack().empty()) {
Chris Lattner8a87e572007-07-23 17:05:23 +0000117 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattner24e1e702009-03-04 04:23:07 +0000118 return StmtError();
Chris Lattner8a87e572007-07-23 17:05:23 +0000119 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000120
Sebastian Redl117054a2008-12-28 16:13:43 +0000121 // Only now release the smart pointers.
122 lhsval.release();
123 rhsval.release();
Chris Lattner24e1e702009-03-04 04:23:07 +0000124 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000125 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000126 return Owned(CS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000127}
128
Chris Lattner24e1e702009-03-04 04:23:07 +0000129/// ActOnCaseStmtBody - This installs a statement as the body of a case.
130void Sema::ActOnCaseStmtBody(StmtTy *caseStmt, StmtArg subStmt) {
131 CaseStmt *CS = static_cast<CaseStmt*>(caseStmt);
132 Stmt *SubStmt = static_cast<Stmt*>(subStmt.release());
133 CS->setSubStmt(SubStmt);
134}
135
Sebastian Redl117054a2008-12-28 16:13:43 +0000136Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000137Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl117054a2008-12-28 16:13:43 +0000138 StmtArg subStmt, Scope *CurScope) {
139 Stmt *SubStmt = static_cast<Stmt*>(subStmt.release());
140
Chris Lattnerbcfce662009-04-18 20:10:59 +0000141 if (getSwitchStack().empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000142 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl117054a2008-12-28 16:13:43 +0000143 return Owned(SubStmt);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000144 }
Sebastian Redl117054a2008-12-28 16:13:43 +0000145
Ted Kremenek8189cde2009-02-07 01:47:29 +0000146 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, SubStmt);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000147 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl117054a2008-12-28 16:13:43 +0000148 return Owned(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000149}
150
Sebastian Redlde307472009-01-11 00:38:46 +0000151Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000152Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redlde307472009-01-11 00:38:46 +0000153 SourceLocation ColonLoc, StmtArg subStmt) {
154 Stmt *SubStmt = static_cast<Stmt*>(subStmt.release());
Steve Narofff3cf8972009-02-28 16:48:43 +0000155 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000156 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Narofff3cf8972009-02-28 16:48:43 +0000157
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroffcaaacec2009-03-13 15:38:40 +0000159 if (LabelDecl == 0)
160 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redlde307472009-01-11 00:38:46 +0000161
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redlde307472009-01-11 00:38:46 +0000163
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 // Otherwise, this label was either forward reference or multiply defined. If
165 // multiply defined, reject it now.
166 if (LabelDecl->getSubStmt()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000167 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000168 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redlde307472009-01-11 00:38:46 +0000169 return Owned(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 }
Sebastian Redlde307472009-01-11 00:38:46 +0000171
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 // Otherwise, this label was forward declared, and we just found its real
173 // definition. Fill in the forward definition and return it.
174 LabelDecl->setIdentLoc(IdentLoc);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000175 LabelDecl->setSubStmt(SubStmt);
Sebastian Redlde307472009-01-11 00:38:46 +0000176 return Owned(LabelDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000177}
178
Sebastian Redlde307472009-01-11 00:38:46 +0000179Action::OwningStmtResult
180Sema::ActOnIfStmt(SourceLocation IfLoc, ExprArg CondVal,
181 StmtArg ThenVal, SourceLocation ElseLoc,
182 StmtArg ElseVal) {
183 Expr *condExpr = (Expr *)CondVal.release();
184
Steve Naroff1b273c42007-09-16 14:56:35 +0000185 assert(condExpr && "ActOnIfStmt(): missing expression");
Sebastian Redlde307472009-01-11 00:38:46 +0000186
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000187 DefaultFunctionArrayConversion(condExpr);
Sebastian Redlde307472009-01-11 00:38:46 +0000188 // Take ownership again until we're past the error checking.
189 CondVal = condExpr;
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000190 QualType condType = condExpr->getType();
Sebastian Redlde307472009-01-11 00:38:46 +0000191
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000192 if (getLangOptions().CPlusPlus) {
193 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
Sebastian Redlde307472009-01-11 00:38:46 +0000194 return StmtError();
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000195 } else if (!condType->isScalarType()) // C99 6.8.4.1p1
Sebastian Redlde307472009-01-11 00:38:46 +0000196 return StmtError(Diag(IfLoc, diag::err_typecheck_statement_requires_scalar)
197 << condType << condExpr->getSourceRange());
198
199 Stmt *thenStmt = (Stmt *)ThenVal.release();
Reid Spencer5f016e22007-07-11 17:01:13 +0000200
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000201 // Warn if the if block has a null body without an else value.
202 // this helps prevent bugs due to typos, such as
203 // if (condition);
204 // do_stuff();
Sebastian Redlde307472009-01-11 00:38:46 +0000205 if (!ElseVal.get()) {
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000206 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
207 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
208 }
209
Sebastian Redlde307472009-01-11 00:38:46 +0000210 CondVal.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000211 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
212 (Stmt*)ElseVal.release()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000213}
214
Sebastian Redlde307472009-01-11 00:38:46 +0000215Action::OwningStmtResult
216Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
217 Expr *Cond = static_cast<Expr*>(cond.release());
218
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000219 if (getLangOptions().CPlusPlus) {
220 // C++ 6.4.2.p2:
221 // The condition shall be of integral type, enumeration type, or of a class
222 // type for which a single conversion function to integral or enumeration
223 // type exists (12.3). If the condition is of class type, the condition is
224 // converted by calling that conversion function, and the result of the
225 // conversion is used in place of the original condition for the remainder
226 // of this section. Integral promotions are performed.
227
228 QualType Ty = Cond->getType();
229
230 // FIXME: Handle class types.
231
232 // If the type is wrong a diagnostic will be emitted later at
233 // ActOnFinishSwitchStmt.
234 if (Ty->isIntegralType() || Ty->isEnumeralType()) {
235 // Integral promotions are performed.
236 // FIXME: Integral promotions for C++ are not complete.
237 UsualUnaryConversions(Cond);
238 }
239 } else {
240 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
241 UsualUnaryConversions(Cond);
242 }
Sebastian Redlde307472009-01-11 00:38:46 +0000243
Ted Kremenek8189cde2009-02-07 01:47:29 +0000244 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000245 getSwitchStack().push_back(SS);
Sebastian Redlde307472009-01-11 00:38:46 +0000246 return Owned(SS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000247}
Chris Lattner6c36be52007-07-18 02:28:47 +0000248
Chris Lattnerf4021e72007-08-23 05:46:52 +0000249/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
250/// the specified width and sign. If an overflow occurs, detect it and emit
251/// the specified diagnostic.
252void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
253 unsigned NewWidth, bool NewSign,
254 SourceLocation Loc,
255 unsigned DiagID) {
256 // Perform a conversion to the promoted condition type if needed.
257 if (NewWidth > Val.getBitWidth()) {
258 // If this is an extension, just do it.
259 llvm::APSInt OldVal(Val);
260 Val.extend(NewWidth);
261
262 // If the input was signed and negative and the output is unsigned,
263 // warn.
264 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000265 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000266
267 Val.setIsSigned(NewSign);
268 } else if (NewWidth < Val.getBitWidth()) {
269 // If this is a truncation, check for overflow.
270 llvm::APSInt ConvVal(Val);
271 ConvVal.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000272 ConvVal.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000273 ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000274 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000275 if (ConvVal != Val)
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000276 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000277
278 // Regardless of whether a diagnostic was emitted, really do the
279 // truncation.
280 Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000281 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000282 } else if (NewSign != Val.isSigned()) {
283 // Convert the sign to match the sign of the condition. This can cause
284 // overflow as well: unsigned(INTMIN)
285 llvm::APSInt OldVal(Val);
286 Val.setIsSigned(NewSign);
287
288 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000289 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000290 }
291}
292
Chris Lattner0471f5b2007-08-23 18:29:20 +0000293namespace {
294 struct CaseCompareFunctor {
295 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
296 const llvm::APSInt &RHS) {
297 return LHS.first < RHS;
298 }
Chris Lattner0e85a272007-09-03 18:31:57 +0000299 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
300 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
301 return LHS.first < RHS.first;
302 }
Chris Lattner0471f5b2007-08-23 18:29:20 +0000303 bool operator()(const llvm::APSInt &LHS,
304 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
305 return LHS < RHS.first;
306 }
307 };
308}
309
Chris Lattner764a7ce2007-09-21 18:15:22 +0000310/// CmpCaseVals - Comparison predicate for sorting case values.
311///
312static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
313 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
314 if (lhs.first < rhs.first)
315 return true;
316
317 if (lhs.first == rhs.first &&
318 lhs.second->getCaseLoc().getRawEncoding()
319 < rhs.second->getCaseLoc().getRawEncoding())
320 return true;
321 return false;
322}
323
Sebastian Redlde307472009-01-11 00:38:46 +0000324Action::OwningStmtResult
325Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
326 StmtArg Body) {
327 Stmt *BodyStmt = (Stmt*)Body.release();
328
Chris Lattnerbcfce662009-04-18 20:10:59 +0000329 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redlde307472009-01-11 00:38:46 +0000330 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
331
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000332 SS->setBody(BodyStmt, SwitchLoc);
Chris Lattnerbcfce662009-04-18 20:10:59 +0000333 getSwitchStack().pop_back();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000334
Chris Lattnerf4021e72007-08-23 05:46:52 +0000335 Expr *CondExpr = SS->getCond();
336 QualType CondType = CondExpr->getType();
Sebastian Redlde307472009-01-11 00:38:46 +0000337
Chris Lattnerf4021e72007-08-23 05:46:52 +0000338 if (!CondType->isIntegerType()) { // C99 6.8.4.2p1
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000339 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000340 << CondType << CondExpr->getSourceRange();
Sebastian Redlde307472009-01-11 00:38:46 +0000341 return StmtError();
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000342 }
Sebastian Redlde307472009-01-11 00:38:46 +0000343
Chris Lattnerf4021e72007-08-23 05:46:52 +0000344 // Get the bitwidth of the switched-on value before promotions. We must
345 // convert the integer case values to this width before comparison.
Chris Lattner98be4942008-03-05 18:54:05 +0000346 unsigned CondWidth = static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000347 bool CondIsSigned = CondType->isSignedIntegerType();
348
349 // Accumulate all of the case values in a vector so that we can sort them
350 // and detect duplicates. This vector contains the APInt for the case after
351 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000352 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
353 CaseValsTy CaseVals;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000354
355 // Keep track of any GNU case ranges we see. The APSInt is the low value.
356 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
357
358 DefaultStmt *TheDefaultStmt = 0;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000359
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000360 bool CaseListIsErroneous = false;
361
362 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000363 SC = SC->getNextSwitchCase()) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000364
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000365 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000366 if (TheDefaultStmt) {
367 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner5f4a6822008-11-23 23:12:31 +0000368 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redlde307472009-01-11 00:38:46 +0000369
Chris Lattnerf4021e72007-08-23 05:46:52 +0000370 // FIXME: Remove the default statement from the switch block so that
371 // we'll return a valid AST. This requires recursing down the
372 // AST and finding it, not something we are set up to do right now. For
373 // now, just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000374 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000375 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000376 TheDefaultStmt = DS;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000377
Chris Lattnerf4021e72007-08-23 05:46:52 +0000378 } else {
379 CaseStmt *CS = cast<CaseStmt>(SC);
380
381 // We already verified that the expression has a i-c-e value (C99
382 // 6.8.4.2p3) - get that value now.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000383 Expr *Lo = CS->getLHS();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000384 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000385
386 // Convert the value to the same width/sign as the condition.
387 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
388 CS->getLHS()->getLocStart(),
389 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000390
Chris Lattner1e0a3902008-01-16 19:17:22 +0000391 // If the LHS is not the same type as the condition, insert an implicit
392 // cast.
393 ImpCastExprToType(Lo, CondType);
394 CS->setLHS(Lo);
395
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000396 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Chris Lattnerf4021e72007-08-23 05:46:52 +0000397 if (CS->getRHS())
398 CaseRanges.push_back(std::make_pair(LoVal, CS));
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000399 else
400 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000401 }
402 }
403
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000404 // Sort all the scalar case values so we can easily detect duplicates.
Chris Lattner764a7ce2007-09-21 18:15:22 +0000405 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000406
Chris Lattnerf3348502007-08-23 14:29:07 +0000407 if (!CaseVals.empty()) {
408 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
409 if (CaseVals[i].first == CaseVals[i+1].first) {
410 // If we have a duplicate, report it.
411 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000412 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
Chris Lattnerf3348502007-08-23 14:29:07 +0000413 Diag(CaseVals[i].second->getLHS()->getLocStart(),
Chris Lattner5f4a6822008-11-23 23:12:31 +0000414 diag::note_duplicate_case_prev);
Chris Lattnerf3348502007-08-23 14:29:07 +0000415 // FIXME: We really want to remove the bogus case stmt from the substmt,
416 // but we have no way to do this right now.
417 CaseListIsErroneous = true;
418 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000419 }
420 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000421
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000422 // Detect duplicate case ranges, which usually don't exist at all in the first
423 // place.
424 if (!CaseRanges.empty()) {
425 // Sort all the case ranges by their low value so we can easily detect
426 // overlaps between ranges.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000427 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000428
429 // Scan the ranges, computing the high values and removing empty ranges.
430 std::vector<llvm::APSInt> HiVals;
Chris Lattner6efc4d32007-08-23 17:48:14 +0000431 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000432 CaseStmt *CR = CaseRanges[i].second;
Chris Lattner1e0a3902008-01-16 19:17:22 +0000433 Expr *Hi = CR->getRHS();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000434 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000435
436 // Convert the value to the same width/sign as the condition.
437 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
438 CR->getRHS()->getLocStart(),
439 diag::warn_case_value_overflow);
440
Chris Lattner1e0a3902008-01-16 19:17:22 +0000441 // If the LHS is not the same type as the condition, insert an implicit
442 // cast.
443 ImpCastExprToType(Hi, CondType);
444 CR->setRHS(Hi);
445
Chris Lattner6efc4d32007-08-23 17:48:14 +0000446 // If the low value is bigger than the high value, the case is empty.
447 if (CaseRanges[i].first > HiVal) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000448 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
449 << SourceRange(CR->getLHS()->getLocStart(),
450 CR->getRHS()->getLocEnd());
Chris Lattner6efc4d32007-08-23 17:48:14 +0000451 CaseRanges.erase(CaseRanges.begin()+i);
452 --i, --e;
453 continue;
454 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000455 HiVals.push_back(HiVal);
456 }
457
458 // Rescan the ranges, looking for overlap with singleton values and other
Chris Lattner0471f5b2007-08-23 18:29:20 +0000459 // ranges. Since the range list is sorted, we only need to compare case
460 // ranges with their neighbors.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000461 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattner0471f5b2007-08-23 18:29:20 +0000462 llvm::APSInt &CRLo = CaseRanges[i].first;
463 llvm::APSInt &CRHi = HiVals[i];
464 CaseStmt *CR = CaseRanges[i].second;
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000465
Chris Lattner0471f5b2007-08-23 18:29:20 +0000466 // Check to see whether the case range overlaps with any singleton cases.
467 CaseStmt *OverlapStmt = 0;
468 llvm::APSInt OverlapVal(32);
469
470 // Find the smallest value >= the lower bound. If I is in the case range,
471 // then we have overlap.
472 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
473 CaseVals.end(), CRLo,
474 CaseCompareFunctor());
475 if (I != CaseVals.end() && I->first < CRHi) {
476 OverlapVal = I->first; // Found overlap with scalar.
477 OverlapStmt = I->second;
478 }
479
480 // Find the smallest value bigger than the upper bound.
481 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
482 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
483 OverlapVal = (I-1)->first; // Found overlap with scalar.
484 OverlapStmt = (I-1)->second;
485 }
486
487 // Check to see if this case stmt overlaps with the subsequent case range.
488 if (i && CRLo <= HiVals[i-1]) {
489 OverlapVal = HiVals[i-1]; // Found overlap with range.
490 OverlapStmt = CaseRanges[i-1].second;
491 }
492
493 if (OverlapStmt) {
494 // If we have a duplicate, report it.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000495 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
496 << OverlapVal.toString(10);
Chris Lattner0471f5b2007-08-23 18:29:20 +0000497 Diag(OverlapStmt->getLHS()->getLocStart(),
Chris Lattner5f4a6822008-11-23 23:12:31 +0000498 diag::note_duplicate_case_prev);
Chris Lattner0471f5b2007-08-23 18:29:20 +0000499 // FIXME: We really want to remove the bogus case stmt from the substmt,
500 // but we have no way to do this right now.
501 CaseListIsErroneous = true;
502 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000503 }
504 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000505
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000506 // FIXME: If the case list was broken is some way, we don't have a good system
507 // to patch it up. Instead, just return the whole substmt as broken.
508 if (CaseListIsErroneous)
Sebastian Redlde307472009-01-11 00:38:46 +0000509 return StmtError();
510
511 Switch.release();
512 return Owned(SS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000513}
514
Sebastian Redlf05b1522009-01-16 23:28:06 +0000515Action::OwningStmtResult
516Sema::ActOnWhileStmt(SourceLocation WhileLoc, ExprArg Cond, StmtArg Body) {
517 Expr *condExpr = (Expr *)Cond.release();
Steve Naroff1b273c42007-09-16 14:56:35 +0000518 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000519
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000520 DefaultFunctionArrayConversion(condExpr);
Sebastian Redlf05b1522009-01-16 23:28:06 +0000521 Cond = condExpr;
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000522 QualType condType = condExpr->getType();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000523
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000524 if (getLangOptions().CPlusPlus) {
525 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
Sebastian Redlf05b1522009-01-16 23:28:06 +0000526 return StmtError();
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000527 } else if (!condType->isScalarType()) // C99 6.8.5p2
Sebastian Redlf05b1522009-01-16 23:28:06 +0000528 return StmtError(Diag(WhileLoc,
529 diag::err_typecheck_statement_requires_scalar)
530 << condType << condExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000531
Sebastian Redlf05b1522009-01-16 23:28:06 +0000532 Cond.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000533 return Owned(new (Context) WhileStmt(condExpr, (Stmt*)Body.release(),
534 WhileLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000535}
536
Sebastian Redlf05b1522009-01-16 23:28:06 +0000537Action::OwningStmtResult
538Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
539 SourceLocation WhileLoc, ExprArg Cond) {
540 Expr *condExpr = (Expr *)Cond.release();
Steve Naroff1b273c42007-09-16 14:56:35 +0000541 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redlf05b1522009-01-16 23:28:06 +0000542
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000543 DefaultFunctionArrayConversion(condExpr);
Sebastian Redlf05b1522009-01-16 23:28:06 +0000544 Cond = condExpr;
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000545 QualType condType = condExpr->getType();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000546
Argyrios Kyrtzidis6314ff22008-09-11 05:16:22 +0000547 if (getLangOptions().CPlusPlus) {
548 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
Sebastian Redlf05b1522009-01-16 23:28:06 +0000549 return StmtError();
Argyrios Kyrtzidis6314ff22008-09-11 05:16:22 +0000550 } else if (!condType->isScalarType()) // C99 6.8.5p2
Sebastian Redlf05b1522009-01-16 23:28:06 +0000551 return StmtError(Diag(DoLoc, diag::err_typecheck_statement_requires_scalar)
552 << condType << condExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000553
Sebastian Redlf05b1522009-01-16 23:28:06 +0000554 Cond.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000555 return Owned(new (Context) DoStmt((Stmt*)Body.release(), condExpr, DoLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000556}
557
Sebastian Redlf05b1522009-01-16 23:28:06 +0000558Action::OwningStmtResult
559Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
560 StmtArg first, ExprArg second, ExprArg third,
561 SourceLocation RParenLoc, StmtArg body) {
562 Stmt *First = static_cast<Stmt*>(first.get());
563 Expr *Second = static_cast<Expr*>(second.get());
564 Expr *Third = static_cast<Expr*>(third.get());
565 Stmt *Body = static_cast<Stmt*>(body.get());
566
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000567 if (!getLangOptions().CPlusPlus) {
568 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000569 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
570 // declare identifiers for objects having storage class 'auto' or
571 // 'register'.
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000572 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
573 DI!=DE; ++DI) {
574 VarDecl *VD = dyn_cast<VarDecl>(*DI);
575 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
576 VD = 0;
577 if (VD == 0)
578 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
579 // FIXME: mark decl erroneous!
580 }
Chris Lattnerae3b7012007-08-28 05:03:08 +0000581 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000582 }
583 if (Second) {
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000584 DefaultFunctionArrayConversion(Second);
585 QualType SecondType = Second->getType();
Sebastian Redlf05b1522009-01-16 23:28:06 +0000586
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000587 if (getLangOptions().CPlusPlus) {
588 if (CheckCXXBooleanCondition(Second)) // C++ 6.4p4
Sebastian Redlf05b1522009-01-16 23:28:06 +0000589 return StmtError();
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000590 } else if (!SecondType->isScalarType()) // C99 6.8.5p2
Sebastian Redlf05b1522009-01-16 23:28:06 +0000591 return StmtError(Diag(ForLoc,
592 diag::err_typecheck_statement_requires_scalar)
593 << SecondType << Second->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000594 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000595 first.release();
596 second.release();
597 third.release();
598 body.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000599 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000600}
601
Sebastian Redlf05b1522009-01-16 23:28:06 +0000602Action::OwningStmtResult
603Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
604 SourceLocation LParenLoc,
605 StmtArg first, ExprArg second,
606 SourceLocation RParenLoc, StmtArg body) {
607 Stmt *First = static_cast<Stmt*>(first.get());
608 Expr *Second = static_cast<Expr*>(second.get());
609 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian20552d22008-01-10 20:33:58 +0000610 if (First) {
611 QualType FirstType;
612 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner7e24e822009-03-28 06:33:19 +0000613 if (!DS->isSingleDecl())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000614 return StmtError(Diag((*DS->decl_begin())->getLocation(),
615 diag::err_toomany_element_decls));
616
Chris Lattner7e24e822009-03-28 06:33:19 +0000617 Decl *D = DS->getSingleDecl();
Ted Kremenekf34afee2008-10-06 20:58:11 +0000618 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000619 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
620 // declare identifiers for objects having storage class 'auto' or
621 // 'register'.
Steve Naroff248a7532008-04-15 22:42:06 +0000622 VarDecl *VD = cast<VarDecl>(D);
623 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redlf05b1522009-01-16 23:28:06 +0000624 return StmtError(Diag(VD->getLocation(),
625 diag::err_non_variable_decl_in_for));
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000626 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000627 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redlf05b1522009-01-16 23:28:06 +0000628 return StmtError(Diag(First->getLocStart(),
629 diag::err_selector_element_not_lvalue)
630 << First->getSourceRange());
631
632 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson1fe379f2008-08-25 18:16:36 +0000633 }
Ted Kremenekb6ccaac2008-07-24 23:58:27 +0000634 if (!Context.isObjCObjectPointerType(FirstType))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000635 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000636 << FirstType << First->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000637 }
638 if (Second) {
639 DefaultFunctionArrayConversion(Second);
640 QualType SecondType = Second->getType();
Ted Kremenekb6ccaac2008-07-24 23:58:27 +0000641 if (!Context.isObjCObjectPointerType(SecondType))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000642 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000643 << SecondType << Second->getSourceRange();
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000644 }
Sebastian Redlf05b1522009-01-16 23:28:06 +0000645 first.release();
646 second.release();
647 body.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +0000648 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
649 ForLoc, RParenLoc));
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000650}
Reid Spencer5f016e22007-07-11 17:01:13 +0000651
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000652Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000653Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 IdentifierInfo *LabelII) {
Steve Naroff4eb206b2008-09-03 18:15:37 +0000655 // If we are in a block, reject all gotos for now.
656 if (CurBlock)
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000657 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +0000660 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Reid Spencer5f016e22007-07-11 17:01:13 +0000661
Steve Naroffcaaacec2009-03-13 15:38:40 +0000662 // If we haven't seen this label yet, create a forward reference.
663 if (LabelDecl == 0)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000664 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000665
Ted Kremenek8189cde2009-02-07 01:47:29 +0000666 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000667}
668
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000669Action::OwningStmtResult
Chris Lattnerad56d682009-04-19 01:04:21 +0000670Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000671 ExprArg DestExp) {
Eli Friedmanbbf46232009-03-26 00:18:06 +0000672 // Convert operand to void*
Eli Friedman33083822009-03-26 07:32:37 +0000673 Expr* E = DestExp.takeAs<Expr>();
674 QualType ETy = E->getType();
675 AssignConvertType ConvTy =
676 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
677 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
678 E, "passing"))
679 return StmtError();
Chris Lattnerad56d682009-04-19 01:04:21 +0000680 return Owned(new (Context) IndirectGotoStmt(GotoLoc, E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000681}
682
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000683Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000684Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000685 Scope *S = CurScope->getContinueParent();
686 if (!S) {
687 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000688 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000690
Ted Kremenek8189cde2009-02-07 01:47:29 +0000691 return Owned(new (Context) ContinueStmt(ContinueLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000692}
693
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000694Action::OwningStmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000695Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000696 Scope *S = CurScope->getBreakParent();
697 if (!S) {
698 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000699 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000701
Ted Kremenek8189cde2009-02-07 01:47:29 +0000702 return Owned(new (Context) BreakStmt(BreakLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000703}
704
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000705/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000706///
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000707Action::OwningStmtResult
Steve Naroff4eb206b2008-09-03 18:15:37 +0000708Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000709
Steve Naroff4eb206b2008-09-03 18:15:37 +0000710 // If this is the first return we've seen in the block, infer the type of
711 // the block from it.
712 if (CurBlock->ReturnType == 0) {
Steve Naroffc50a4a52008-09-16 22:25:10 +0000713 if (RetValExp) {
Steve Naroff16564422008-09-24 22:26:48 +0000714 // Don't call UsualUnaryConversions(), since we don't want to do
715 // integer promotions here.
716 DefaultFunctionArrayConversion(RetValExp);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000717 CurBlock->ReturnType = RetValExp->getType().getTypePtr();
Steve Naroffc50a4a52008-09-16 22:25:10 +0000718 } else
Steve Naroff4eb206b2008-09-03 18:15:37 +0000719 CurBlock->ReturnType = Context.VoidTy.getTypePtr();
Steve Naroff4eb206b2008-09-03 18:15:37 +0000720 }
Mike Stump98eb8a72009-02-04 22:31:32 +0000721 QualType FnRetType = QualType(CurBlock->ReturnType, 0);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000722
Steve Naroff4eb206b2008-09-03 18:15:37 +0000723 // Otherwise, verify that this result type matches the previous one. We are
724 // pickier with blocks than for normal functions because we don't have GCC
725 // compatibility to worry about here.
726 if (CurBlock->ReturnType->isVoidType()) {
727 if (RetValExp) {
728 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek8189cde2009-02-07 01:47:29 +0000729 RetValExp->Destroy(Context);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000730 RetValExp = 0;
731 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000732 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000733 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000734
735 if (!RetValExp)
736 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
737
Mike Stump98eb8a72009-02-04 22:31:32 +0000738 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
739 // we have a non-void block with an expression, continue checking
740 QualType RetValType = RetValExp->getType();
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000741
Mike Stump98eb8a72009-02-04 22:31:32 +0000742 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
743 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
744 // function return.
745
746 // In C++ the return statement is handled via a copy initialization.
747 // the C version of which boils down to CheckSingleAssignmentConstraints.
748 // FIXME: Leaks RetValExp.
749 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
750 return StmtError();
751
752 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff4eb206b2008-09-03 18:15:37 +0000753 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000754
Ted Kremenek8189cde2009-02-07 01:47:29 +0000755 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff4eb206b2008-09-03 18:15:37 +0000756}
Reid Spencer5f016e22007-07-11 17:01:13 +0000757
Sebastian Redle2b68332009-04-12 17:16:29 +0000758/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
759/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
760static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
761 Expr *RetExpr) {
762 QualType ExprType = RetExpr->getType();
763 // - in a return statement in a function with ...
764 // ... a class return type ...
765 if (!RetType->isRecordType())
766 return false;
767 // ... the same cv-unqualified type as the function return type ...
768 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
769 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
770 return false;
771 // ... the expression is the name of a non-volatile automatic object ...
772 // We ignore parentheses here.
773 // FIXME: Is this compliant?
774 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
775 if (!DR)
776 return false;
777 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
778 if (!VD)
779 return false;
780 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
781 && !VD->getType().isVolatileQualified();
782}
783
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000784Action::OwningStmtResult
785Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprArg rex) {
786 Expr *RetValExp = static_cast<Expr *>(rex.release());
Steve Naroff4eb206b2008-09-03 18:15:37 +0000787 if (CurBlock)
788 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000789
Chris Lattner371f2582008-12-04 23:50:19 +0000790 QualType FnRetType;
791 if (FunctionDecl *FD = getCurFunctionDecl())
792 FnRetType = FD->getResultType();
Steve Naroffc97fb9a2009-03-03 00:45:38 +0000793 else if (ObjCMethodDecl *MD = getCurMethodDecl())
794 FnRetType = MD->getResultType();
795 else // If we don't have a function/method context, bail.
796 return StmtError();
797
Chris Lattner5cf216b2008-01-04 18:04:52 +0000798 if (FnRetType->isVoidType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000799 if (RetValExp) {// C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner65ce04b2008-12-18 02:01:17 +0000800 unsigned D = diag::ext_return_has_expr;
801 if (RetValExp->getType()->isVoidType())
802 D = diag::ext_return_has_void_expr;
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000803
Chris Lattnere878eb02008-12-18 02:03:48 +0000804 // return (some void expression); is legal in C++.
805 if (D != diag::ext_return_has_void_expr ||
806 !getLangOptions().CPlusPlus) {
807 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
808 Diag(ReturnLoc, D)
809 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
810 << RetValExp->getSourceRange();
811 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 }
Ted Kremenek8189cde2009-02-07 01:47:29 +0000813 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000814 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000815
Chris Lattner3c73c412008-11-19 08:23:25 +0000816 if (!RetValExp) {
817 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
818 // C99 6.8.6.4p1 (ext_ since GCC warns)
819 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
820
821 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner08631c52008-11-23 21:45:46 +0000822 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner3c73c412008-11-19 08:23:25 +0000823 else
Chris Lattner08631c52008-11-23 21:45:46 +0000824 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000825 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner3c73c412008-11-19 08:23:25 +0000826 }
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000827
Douglas Gregor898574e2008-12-05 23:32:09 +0000828 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
829 // we have a non-void function with an expression, continue checking
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000830
Douglas Gregor898574e2008-12-05 23:32:09 +0000831 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
832 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000833 // function return.
834
Sebastian Redle2b68332009-04-12 17:16:29 +0000835 // C++0x 12.8p15: When certain criteria are met, an implementation is
836 // allowed to omit the copy construction of a class object, [...]
837 // - in a return statement in a function with a class return type, when
838 // the expression is the name of a non-volatile automatic object with
839 // the same cv-unqualified type as the function return type, the copy
840 // operation can be omitted [...]
841 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
842 // and the object to be copied is designated by an lvalue, overload
843 // resolution to select the constructor for the copy is first performed
844 // as if the object were designated by an rvalue.
845 // Note that we only compute Elidable if we're in C++0x, since we don't
846 // care otherwise.
847 bool Elidable = getLangOptions().CPlusPlus0x ?
848 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
849 false;
850
Douglas Gregor898574e2008-12-05 23:32:09 +0000851 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000852 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redle2b68332009-04-12 17:16:29 +0000853 // FIXME: Leaks RetValExp on error.
854 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable))
Sebastian Redl4cffe2f2009-01-18 13:19:59 +0000855 return StmtError();
856
Douglas Gregor898574e2008-12-05 23:32:09 +0000857 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
858 }
859
Ted Kremenek8189cde2009-02-07 01:47:29 +0000860 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Reid Spencer5f016e22007-07-11 17:01:13 +0000861}
862
Chris Lattner810f6d52009-03-13 17:38:01 +0000863/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
864/// ignore "noop" casts in places where an lvalue is required by an inline asm.
865/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
866/// provide a strong guidance to not use it.
867///
868/// This method checks to see if the argument is an acceptable l-value and
869/// returns false if it is a case we can handle.
870static bool CheckAsmLValue(const Expr *E, Sema &S) {
871 if (E->isLvalue(S.Context) == Expr::LV_Valid)
872 return false; // Cool, this is an lvalue.
873
874 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
875 // are supposed to allow.
876 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
877 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
878 if (!S.getLangOptions().HeinousExtensions)
879 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
880 << E->getSourceRange();
881 else
882 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
883 << E->getSourceRange();
884 // Accept, even if we emitted an error diagnostic.
885 return false;
886 }
887
888 // None of the above, just randomly invalid non-lvalue.
889 return true;
890}
891
892
Sebastian Redl3037ed02009-01-18 16:53:17 +0000893Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
894 bool IsSimple,
895 bool IsVolatile,
896 unsigned NumOutputs,
897 unsigned NumInputs,
898 std::string *Names,
899 MultiExprArg constraints,
900 MultiExprArg exprs,
901 ExprArg asmString,
902 MultiExprArg clobbers,
903 SourceLocation RParenLoc) {
904 unsigned NumClobbers = clobbers.size();
905 StringLiteral **Constraints =
906 reinterpret_cast<StringLiteral**>(constraints.get());
907 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
908 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
909 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
910
Anders Carlsson03eb5432009-01-27 20:38:24 +0000911 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
912
Chris Lattner1708b962008-08-18 19:55:17 +0000913 // The parser verifies that there is a string literal here.
Chris Lattner6bc52112008-07-23 06:46:56 +0000914 if (AsmString->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000915 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
916 << AsmString->getSourceRange());
917
Chris Lattner1708b962008-08-18 19:55:17 +0000918 for (unsigned i = 0; i != NumOutputs; i++) {
919 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +0000920 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000921 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
922 << Literal->getSourceRange());
923
Chris Lattner432c8692009-04-26 17:19:08 +0000924 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +0000925 Literal->getByteLength(),
926 Names[i]);
Chris Lattner432c8692009-04-26 17:19:08 +0000927 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redl3037ed02009-01-18 16:53:17 +0000928 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +0000929 diag::err_asm_invalid_output_constraint)
930 << Info.getConstraintStr());
Sebastian Redl3037ed02009-01-18 16:53:17 +0000931
Anders Carlssond04c6e22007-11-27 04:11:28 +0000932 // Check that the output exprs are valid lvalues.
Chris Lattner432c8692009-04-26 17:19:08 +0000933 // FIXME: Operands to asms should not be parsed as ParenExprs.
Chris Lattner1708b962008-08-18 19:55:17 +0000934 ParenExpr *OutputExpr = cast<ParenExpr>(Exprs[i]);
Chris Lattner810f6d52009-03-13 17:38:01 +0000935 if (CheckAsmLValue(OutputExpr, *this)) {
Sebastian Redl3037ed02009-01-18 16:53:17 +0000936 return StmtError(Diag(OutputExpr->getSubExpr()->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000937 diag::err_asm_invalid_lvalue_in_output)
Sebastian Redl3037ed02009-01-18 16:53:17 +0000938 << OutputExpr->getSubExpr()->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +0000939 }
Anders Carlsson03eb5432009-01-27 20:38:24 +0000940
Chris Lattner44def072009-04-26 07:16:29 +0000941 OutputConstraintInfos.push_back(Info);
Anders Carlsson04728b72007-11-23 19:43:50 +0000942 }
Sebastian Redl3037ed02009-01-18 16:53:17 +0000943
Anders Carlsson04728b72007-11-23 19:43:50 +0000944 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattner1708b962008-08-18 19:55:17 +0000945 StringLiteral *Literal = Constraints[i];
Chris Lattner6bc52112008-07-23 06:46:56 +0000946 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +0000947 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
948 << Literal->getSourceRange());
949
Chris Lattner432c8692009-04-26 17:19:08 +0000950 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner2819fa82009-04-26 17:57:12 +0000951 Literal->getByteLength(),
952 Names[i]);
953 if (!Context.Target.validateInputConstraint(&OutputConstraintInfos[0],
954 NumOutputs, Info)) {
Sebastian Redl3037ed02009-01-18 16:53:17 +0000955 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner432c8692009-04-26 17:19:08 +0000956 diag::err_asm_invalid_input_constraint)
957 << Info.getConstraintStr());
Anders Carlssond04c6e22007-11-27 04:11:28 +0000958 }
Sebastian Redl3037ed02009-01-18 16:53:17 +0000959
Chris Lattner1708b962008-08-18 19:55:17 +0000960 ParenExpr *InputExpr = cast<ParenExpr>(Exprs[i]);
Sebastian Redl3037ed02009-01-18 16:53:17 +0000961
Anders Carlssond9fca6e2009-01-20 20:49:22 +0000962 // Only allow void types for memory constraints.
Chris Lattner44def072009-04-26 07:16:29 +0000963 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattner810f6d52009-03-13 17:38:01 +0000964 if (CheckAsmLValue(InputExpr, *this))
Anders Carlssond9fca6e2009-01-20 20:49:22 +0000965 return StmtError(Diag(InputExpr->getSubExpr()->getLocStart(),
966 diag::err_asm_invalid_lvalue_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +0000967 << Info.getConstraintStr()
968 << InputExpr->getSubExpr()->getSourceRange());
Anders Carlsson04728b72007-11-23 19:43:50 +0000969 }
Sebastian Redl3037ed02009-01-18 16:53:17 +0000970
Chris Lattner44def072009-04-26 07:16:29 +0000971 if (Info.allowsRegister()) {
Anders Carlssond9fca6e2009-01-20 20:49:22 +0000972 if (InputExpr->getType()->isVoidType()) {
973 return StmtError(Diag(InputExpr->getSubExpr()->getLocStart(),
974 diag::err_asm_invalid_type_in_input)
Chris Lattner432c8692009-04-26 17:19:08 +0000975 << InputExpr->getType() << Info.getConstraintStr()
Anders Carlssond9fca6e2009-01-20 20:49:22 +0000976 << InputExpr->getSubExpr()->getSourceRange());
977 }
Anders Carlssond9fca6e2009-01-20 20:49:22 +0000978 }
Anders Carlsson60329792009-02-22 02:11:23 +0000979
980 DefaultFunctionArrayConversion(Exprs[i]);
Chris Lattner49ac8812009-04-26 18:22:24 +0000981
982 // If this is a tied constraint, verify that the output and input have
983 // either exactly the same type, or that they are int/ptr operands with the
984 // same size (int/long, int*/long, are ok etc).
985 if (Info.hasTiedOperand()) {
986 unsigned TiedTo = Info.getTiedOperand();
987 QualType T1 = Exprs[TiedTo]->getType(), T2 = Exprs[i]->getType();
988 if (!Context.hasSameType(T1, T2)) {
989 // Int/ptr operands are ok if they are the same size.
990 if (!(T1->isIntegerType() || T1->isPointerType()) ||
991 !(T2->isIntegerType() || T2->isPointerType()) ||
992 Context.getTypeSize(T1) != Context.getTypeSize(T2))
993 return StmtError(Diag(InputExpr->getSubExpr()->getLocStart(),
994 diag::err_asm_tying_incompatible_types)
995 << T2 << T1 << Exprs[TiedTo]->getSourceRange()
996 << Exprs[i]->getSourceRange());
997 }
998 }
Anders Carlsson04728b72007-11-23 19:43:50 +0000999 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001000
Anders Carlsson6fa90862007-11-25 00:25:21 +00001001 // Check that the clobbers are valid.
Chris Lattner1708b962008-08-18 19:55:17 +00001002 for (unsigned i = 0; i != NumClobbers; i++) {
1003 StringLiteral *Literal = Clobbers[i];
Chris Lattner6bc52112008-07-23 06:46:56 +00001004 if (Literal->isWide())
Sebastian Redl3037ed02009-01-18 16:53:17 +00001005 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1006 << Literal->getSourceRange());
1007
1008 llvm::SmallString<16> Clobber(Literal->getStrData(),
1009 Literal->getStrData() +
Anders Carlsson6fa90862007-11-25 00:25:21 +00001010 Literal->getByteLength());
Sebastian Redl3037ed02009-01-18 16:53:17 +00001011
Chris Lattner6bc52112008-07-23 06:46:56 +00001012 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redl3037ed02009-01-18 16:53:17 +00001013 return StmtError(Diag(Literal->getLocStart(),
1014 diag::err_asm_unknown_register_name) << Clobber.c_str());
Anders Carlsson6fa90862007-11-25 00:25:21 +00001015 }
Sebastian Redl3037ed02009-01-18 16:53:17 +00001016
1017 constraints.release();
1018 exprs.release();
1019 asmString.release();
1020 clobbers.release();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001021 AsmStmt *NS =
1022 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1023 Names, Constraints, Exprs, AsmString, NumClobbers,
1024 Clobbers, RParenLoc);
1025 // Validate the asm string, ensuring it makes sense given the operands we
1026 // have.
1027 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1028 unsigned DiagOffs;
1029 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattner2ff0f422009-03-10 23:57:07 +00001030 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1031 << AsmString->getSourceRange();
Chris Lattnerfb5058e2009-03-10 23:41:04 +00001032 DeleteStmt(NS);
1033 return StmtError();
1034 }
1035
1036
1037 return Owned(NS);
Chris Lattnerfe795952007-10-29 04:04:16 +00001038}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001039
Sebastian Redl431e90e2009-01-18 17:43:11 +00001040Action::OwningStmtResult
1041Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001042 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redl431e90e2009-01-18 17:43:11 +00001043 StmtArg Body, StmtArg catchList) {
1044 Stmt *CatchList = static_cast<Stmt*>(catchList.release());
Chris Lattnerb28317a2009-03-28 19:18:32 +00001045 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Steve Narofff50cb362009-03-03 20:59:06 +00001046
1047 // PVD == 0 implies @catch(...).
Steve Naroff9d40ee52009-03-03 21:16:54 +00001048 if (PVD) {
Chris Lattner93c49452009-04-12 23:26:56 +00001049 // If we already know the decl is invalid, reject it.
1050 if (PVD->isInvalidDecl())
1051 return StmtError();
1052
Steve Naroff9d40ee52009-03-03 21:16:54 +00001053 if (!Context.isObjCObjectPointerType(PVD->getType()))
1054 return StmtError(Diag(PVD->getLocation(),
1055 diag::err_catch_param_not_objc_type));
1056 if (PVD->getType()->isObjCQualifiedIdType())
1057 return StmtError(Diag(PVD->getLocation(),
Steve Naroffd198aba2009-03-03 23:13:51 +00001058 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff9d40ee52009-03-03 21:16:54 +00001059 }
Chris Lattner93c49452009-04-12 23:26:56 +00001060
Ted Kremenek8189cde2009-02-07 01:47:29 +00001061 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Steve Narofff50cb362009-03-03 20:59:06 +00001062 PVD, static_cast<Stmt*>(Body.release()), CatchList);
Sebastian Redl431e90e2009-01-18 17:43:11 +00001063 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001064}
1065
Sebastian Redl431e90e2009-01-18 17:43:11 +00001066Action::OwningStmtResult
1067Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00001068 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1069 static_cast<Stmt*>(Body.release())));
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001070}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001071
Sebastian Redl431e90e2009-01-18 17:43:11 +00001072Action::OwningStmtResult
1073Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1074 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattner38c5ebd2009-04-19 05:21:20 +00001075 CurFunctionNeedsScopeChecking = true;
Ted Kremenek8189cde2009-02-07 01:47:29 +00001076 return Owned(new (Context) ObjCAtTryStmt(AtLoc,
1077 static_cast<Stmt*>(Try.release()),
Sebastian Redl431e90e2009-01-18 17:43:11 +00001078 static_cast<Stmt*>(Catch.release()),
1079 static_cast<Stmt*>(Finally.release())));
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001080}
1081
Sebastian Redl431e90e2009-01-18 17:43:11 +00001082Action::OwningStmtResult
Steve Naroff3dcfe102009-02-12 15:54:59 +00001083Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Steve Naroff7151bbb2009-02-11 17:45:08 +00001084 Expr *ThrowExpr = static_cast<Expr*>(expr.release());
1085 if (!ThrowExpr) {
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001086 // @throw without an expression designates a rethrow (which much occur
1087 // in the context of an @catch clause).
1088 Scope *AtCatchParent = CurScope;
1089 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1090 AtCatchParent = AtCatchParent->getParent();
1091 if (!AtCatchParent)
Steve Naroff4ab24142009-02-12 18:09:32 +00001092 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroff7151bbb2009-02-11 17:45:08 +00001093 } else {
1094 QualType ThrowType = ThrowExpr->getType();
1095 // Make sure the expression type is an ObjC pointer or "void *".
1096 if (!Context.isObjCObjectPointerType(ThrowType)) {
1097 const PointerType *PT = ThrowType->getAsPointerType();
1098 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroff4ab24142009-02-12 18:09:32 +00001099 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1100 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroff7151bbb2009-02-11 17:45:08 +00001101 }
1102 }
1103 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001104}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001105
Sebastian Redl431e90e2009-01-18 17:43:11 +00001106Action::OwningStmtResult
1107Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1108 StmtArg SynchBody) {
Chris Lattner46c3c4b2009-04-21 06:01:00 +00001109 CurFunctionNeedsScopeChecking = true;
1110
Chris Lattnera868a202009-04-21 06:11:25 +00001111 // Make sure the expression type is an ObjC pointer or "void *".
1112 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
1113 if (!Context.isObjCObjectPointerType(SyncExpr->getType())) {
1114 const PointerType *PT = SyncExpr->getType()->getAsPointerType();
1115 if (!PT || !PT->getPointeeType()->isVoidType())
1116 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1117 << SyncExpr->getType() << SyncExpr->getSourceRange());
1118 }
1119
Ted Kremenek8189cde2009-02-07 01:47:29 +00001120 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
Sebastian Redl431e90e2009-01-18 17:43:11 +00001121 static_cast<Stmt*>(SynchExpr.release()),
1122 static_cast<Stmt*>(SynchBody.release())));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001123}
Sebastian Redl4b07b292008-12-22 19:15:10 +00001124
1125/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1126/// and creates a proper catch handler from them.
1127Action::OwningStmtResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001128Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl4b07b292008-12-22 19:15:10 +00001129 StmtArg HandlerBlock) {
1130 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001131 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001132 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Ted Kremenek8189cde2009-02-07 01:47:29 +00001133 static_cast<Stmt*>(HandlerBlock.release())));
Sebastian Redl4b07b292008-12-22 19:15:10 +00001134}
Sebastian Redl8351da02008-12-22 21:35:02 +00001135
1136/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
1137/// handlers and creates a try statement from them.
1138Action::OwningStmtResult
1139Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock,
1140 MultiStmtArg RawHandlers) {
1141 unsigned NumHandlers = RawHandlers.size();
1142 assert(NumHandlers > 0 &&
1143 "The parser shouldn't call this if there are no handlers.");
1144 Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get());
1145
1146 for(unsigned i = 0; i < NumHandlers - 1; ++i) {
1147 CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]);
1148 if (!Handler->getExceptionDecl())
1149 return StmtError(Diag(Handler->getLocStart(), diag::err_early_catch_all));
1150 }
1151 // FIXME: We should detect handlers for the same type as an earlier one.
1152 // This one is rather easy.
1153 // FIXME: We should detect handlers that cannot catch anything because an
1154 // earlier handler catches a superclass. Need to find a method that is not
1155 // quadratic for this.
1156 // Neither of these are explicitly forbidden, but every compiler detects them
1157 // and warns.
1158
1159 RawHandlers.release();
Ted Kremenek8189cde2009-02-07 01:47:29 +00001160 return Owned(new (Context) CXXTryStmt(TryLoc,
1161 static_cast<Stmt*>(TryBlock.release()),
1162 Handlers, NumHandlers));
Sebastian Redl8351da02008-12-22 21:35:02 +00001163}