blob: 5c04c2491f672764ddd6b8cdc60187ca25b41745 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for statements.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssone8bd9f22008-11-22 21:04:56 +000015#include "clang/AST/APValue.h"
Chris Lattner3429a812007-08-23 05:46:52 +000016#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner4b009652007-07-25 00:24:17 +000018#include "clang/AST/Expr.h"
Chris Lattner4a9e9272009-04-26 01:32:48 +000019#include "clang/AST/StmtObjC.h"
20#include "clang/AST/StmtCXX.h"
Anders Carlsson49dadd62007-11-25 00:25:21 +000021#include "clang/Basic/TargetInfo.h"
Chris Lattner4b009652007-07-25 00:24:17 +000022using namespace clang;
23
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000024Sema::OwningStmtResult Sema::ActOnExprStmt(ExprArg expr) {
Anders Carlssonc154a722009-05-01 19:30:39 +000025 Expr *E = expr.takeAs<Expr>();
Steve Naroff5cbb02f2007-09-16 14:56:35 +000026 assert(E && "ActOnExprStmt(): missing expression");
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000027
Chris Lattnere02e4402008-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 Redl76b9ddb2008-12-21 12:04:03 +000031
Chris Lattnere02e4402008-07-25 23:18:17 +000032 // Same thing in for stmt first clause (when expr) and third clause.
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000033 return Owned(static_cast<Stmt*>(E));
Chris Lattner4b009652007-07-25 00:24:17 +000034}
35
36
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000037Sema::OwningStmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Ted Kremenek0c97e042009-02-07 01:47:29 +000038 return Owned(new (Context) NullStmt(SemiLoc));
Chris Lattner4b009652007-07-25 00:24:17 +000039}
40
Chris Lattnera17991f2009-03-29 16:50:03 +000041Sema::OwningStmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg,
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000042 SourceLocation StartLoc,
43 SourceLocation EndLoc) {
Chris Lattnera17991f2009-03-29 16:50:03 +000044 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
Chris Lattner5140b982009-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 Lattnerdaac6942009-03-04 04:23:07 +000049 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
Chris Lattner4b009652007-07-25 00:24:17 +000050}
51
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000052Action::OwningStmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +000053Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000054 MultiStmtArg elts, bool isStmtExpr) {
55 unsigned NumElts = elts.size();
56 Stmt **Elts = reinterpret_cast<Stmt**>(elts.release());
Chris Lattner3ea3b662007-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 Gregoraf8ad2b2009-01-20 01:17:11 +000071 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattner3ea3b662007-08-27 04:29:41 +000072 Diag(D->getLocation(), diag::ext_mixed_decls_code);
73 }
74 }
Chris Lattnerf2b07572007-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 Lattnerd2c66552009-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 Lattnerf2b07572007-08-31 21:49:55 +000083 continue;
84
Chris Lattnerd2c66552009-02-14 07:37:35 +000085 SourceLocation Loc;
86 SourceRange R1, R2;
87 if (!E->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattnerf2b07572007-08-31 21:49:55 +000088 continue;
Chris Lattnerd2c66552009-02-14 07:37:35 +000089
90 Diag(Loc, diag::warn_unused_expr) << R1 << R2;
Chris Lattnerf2b07572007-08-31 21:49:55 +000091 }
Sebastian Redl76b9ddb2008-12-21 12:04:03 +000092
Ted Kremenek0c97e042009-02-07 01:47:29 +000093 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
Chris Lattner4b009652007-07-25 00:24:17 +000094}
95
Sebastian Redl0a23e8f2008-12-28 16:13:43 +000096Action::OwningStmtResult
97Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval,
98 SourceLocation DotDotDotLoc, ExprArg rhsval,
Chris Lattnerdaac6942009-03-04 04:23:07 +000099 SourceLocation ColonLoc) {
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000100 assert((lhsval.get() != 0) && "missing expression in case statement");
101
Chris Lattner4b009652007-07-25 00:24:17 +0000102 // C99 6.8.4.2p3: The expression shall be an integer constant.
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000103 // However, GCC allows any evaluatable integer expression.
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000104 Expr *LHSVal = static_cast<Expr*>(lhsval.get());
Douglas Gregor34712db2009-05-15 23:57:33 +0000105 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() &&
106 VerifyIntegerConstantExpression(LHSVal))
Chris Lattnerdaac6942009-03-04 04:23:07 +0000107 return StmtError();
Chris Lattner4b009652007-07-25 00:24:17 +0000108
109 // GCC extension: The expression shall be an integer constant.
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000110
111 Expr *RHSVal = static_cast<Expr*>(rhsval.get());
Douglas Gregor34712db2009-05-15 23:57:33 +0000112 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
113 VerifyIntegerConstantExpression(RHSVal)) {
Chris Lattner3429a812007-08-23 05:46:52 +0000114 RHSVal = 0; // Recover by just forgetting about it.
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000115 rhsval = 0;
116 }
117
Chris Lattneree5a1a22009-04-18 20:10:59 +0000118 if (getSwitchStack().empty()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000119 Diag(CaseLoc, diag::err_case_not_in_switch);
Chris Lattnerdaac6942009-03-04 04:23:07 +0000120 return StmtError();
Chris Lattner4b009652007-07-25 00:24:17 +0000121 }
122
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000123 // Only now release the smart pointers.
124 lhsval.release();
125 rhsval.release();
Douglas Gregor34712db2009-05-15 23:57:33 +0000126 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
127 ColonLoc);
Chris Lattneree5a1a22009-04-18 20:10:59 +0000128 getSwitchStack().back()->addSwitchCase(CS);
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000129 return Owned(CS);
Chris Lattner4b009652007-07-25 00:24:17 +0000130}
131
Chris Lattnerdaac6942009-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 Carlssonc154a722009-05-01 19:30:39 +0000135 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Chris Lattnerdaac6942009-03-04 04:23:07 +0000136 CS->setSubStmt(SubStmt);
137}
138
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000139Action::OwningStmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000140Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000141 StmtArg subStmt, Scope *CurScope) {
Anders Carlssonc154a722009-05-01 19:30:39 +0000142 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000143
Chris Lattneree5a1a22009-04-18 20:10:59 +0000144 if (getSwitchStack().empty()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000145 Diag(DefaultLoc, diag::err_default_not_in_switch);
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000146 return Owned(SubStmt);
Chris Lattner4b009652007-07-25 00:24:17 +0000147 }
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000148
Douglas Gregor34712db2009-05-15 23:57:33 +0000149 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
Chris Lattneree5a1a22009-04-18 20:10:59 +0000150 getSwitchStack().back()->addSwitchCase(DS);
Sebastian Redl0a23e8f2008-12-28 16:13:43 +0000151 return Owned(DS);
Chris Lattner4b009652007-07-25 00:24:17 +0000152}
153
Sebastian Redl2437ec62009-01-11 00:38:46 +0000154Action::OwningStmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000155Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Sebastian Redl2437ec62009-01-11 00:38:46 +0000156 SourceLocation ColonLoc, StmtArg subStmt) {
Anders Carlssonc154a722009-05-01 19:30:39 +0000157 Stmt *SubStmt = subStmt.takeAs<Stmt>();
Steve Naroff313c4162009-02-28 16:48:43 +0000158 // Look up the record for this label identifier.
Chris Lattner2616d8c2009-04-18 20:01:55 +0000159 LabelStmt *&LabelDecl = getLabelMap()[II];
Steve Naroff313c4162009-02-28 16:48:43 +0000160
Chris Lattner4b009652007-07-25 00:24:17 +0000161 // If not forward referenced or defined already, just create a new LabelStmt.
Steve Naroffb88d81c2009-03-13 15:38:40 +0000162 if (LabelDecl == 0)
163 return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt));
Sebastian Redl2437ec62009-01-11 00:38:46 +0000164
Chris Lattner4b009652007-07-25 00:24:17 +0000165 assert(LabelDecl->getID() == II && "Label mismatch!");
Sebastian Redl2437ec62009-01-11 00:38:46 +0000166
Chris Lattner4b009652007-07-25 00:24:17 +0000167 // Otherwise, this label was either forward reference or multiply defined. If
168 // multiply defined, reject it now.
169 if (LabelDecl->getSubStmt()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000170 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner1336cab2008-11-23 23:12:31 +0000171 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Sebastian Redl2437ec62009-01-11 00:38:46 +0000172 return Owned(SubStmt);
Chris Lattner4b009652007-07-25 00:24:17 +0000173 }
Sebastian Redl2437ec62009-01-11 00:38:46 +0000174
Chris Lattner4b009652007-07-25 00:24:17 +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);
178 LabelDecl->setSubStmt(SubStmt);
Sebastian Redl2437ec62009-01-11 00:38:46 +0000179 return Owned(LabelDecl);
Chris Lattner4b009652007-07-25 00:24:17 +0000180}
181
Sebastian Redl2437ec62009-01-11 00:38:46 +0000182Action::OwningStmtResult
Anders Carlssone4d37892009-05-17 18:26:53 +0000183Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal,
Sebastian Redl2437ec62009-01-11 00:38:46 +0000184 StmtArg ThenVal, SourceLocation ElseLoc,
185 StmtArg ElseVal) {
Anders Carlssone4d37892009-05-17 18:26:53 +0000186 OwningExprResult CondResult(CondVal.release());
187
188 Expr *condExpr = CondResult.takeAs<Expr>();
Sebastian Redl2437ec62009-01-11 00:38:46 +0000189
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000190 assert(condExpr && "ActOnIfStmt(): missing expression");
Sebastian Redl2437ec62009-01-11 00:38:46 +0000191
Douglas Gregor30033492009-05-15 18:53:42 +0000192 if (!condExpr->isTypeDependent()) {
193 DefaultFunctionArrayConversion(condExpr);
194 // Take ownership again until we're past the error checking.
Anders Carlssone4d37892009-05-17 18:26:53 +0000195 CondResult = condExpr;
Douglas Gregor30033492009-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 Redl2437ec62009-01-11 00:38:46 +0000206
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000207 Stmt *thenStmt = ThenVal.takeAs<Stmt>();
Chris Lattner4b009652007-07-25 00:24:17 +0000208
Anders Carlsson663733e2007-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 Redl2437ec62009-01-11 00:38:46 +0000213 if (!ElseVal.get()) {
Anders Carlsson663733e2007-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 Carlssone4d37892009-05-17 18:26:53 +0000218 CondResult.release();
Ted Kremenek0c97e042009-02-07 01:47:29 +0000219 return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt,
Douglas Gregor30033492009-05-15 18:53:42 +0000220 ElseLoc, ElseVal.takeAs<Stmt>()));
Chris Lattner4b009652007-07-25 00:24:17 +0000221}
222
Sebastian Redl2437ec62009-01-11 00:38:46 +0000223Action::OwningStmtResult
224Sema::ActOnStartOfSwitchStmt(ExprArg cond) {
Anders Carlssonc154a722009-05-01 19:30:39 +0000225 Expr *Cond = cond.takeAs<Expr>();
Sebastian Redl2437ec62009-01-11 00:38:46 +0000226
Argiris Kirtzidis810c0f72008-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 Gregor34712db2009-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 }
Argiris Kirtzidis810c0f72008-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 Redl2437ec62009-01-11 00:38:46 +0000252
Ted Kremenek0c97e042009-02-07 01:47:29 +0000253 SwitchStmt *SS = new (Context) SwitchStmt(Cond);
Chris Lattneree5a1a22009-04-18 20:10:59 +0000254 getSwitchStack().push_back(SS);
Sebastian Redl2437ec62009-01-11 00:38:46 +0000255 return Owned(SS);
Chris Lattner4b009652007-07-25 00:24:17 +0000256}
257
Chris Lattner3429a812007-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 Lattner77d52da2008-11-20 06:06:08 +0000274 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattner3429a812007-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 Lattner5c039602007-08-23 22:08:35 +0000281 ConvVal.setIsSigned(NewSign);
Chris Lattner3429a812007-08-23 05:46:52 +0000282 ConvVal.extend(Val.getBitWidth());
Chris Lattner5c039602007-08-23 22:08:35 +0000283 ConvVal.setIsSigned(Val.isSigned());
Chris Lattner3429a812007-08-23 05:46:52 +0000284 if (ConvVal != Val)
Chris Lattner77d52da2008-11-20 06:06:08 +0000285 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Chris Lattner3429a812007-08-23 05:46:52 +0000286
287 // Regardless of whether a diagnostic was emitted, really do the
288 // truncation.
289 Val.trunc(NewWidth);
Chris Lattner5c039602007-08-23 22:08:35 +0000290 Val.setIsSigned(NewSign);
Chris Lattner3429a812007-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 Lattner77d52da2008-11-20 06:06:08 +0000298 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattner3429a812007-08-23 05:46:52 +0000299 }
300}
301
Chris Lattner0ab833c2007-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 Lattner2157f272007-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 Lattner0ab833c2007-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 Lattner766afb82007-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 Redl2437ec62009-01-11 00:38:46 +0000333Action::OwningStmtResult
334Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch,
335 StmtArg Body) {
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000336 Stmt *BodyStmt = Body.takeAs<Stmt>();
Sebastian Redl2437ec62009-01-11 00:38:46 +0000337
Chris Lattneree5a1a22009-04-18 20:10:59 +0000338 SwitchStmt *SS = getSwitchStack().back();
Sebastian Redl2437ec62009-01-11 00:38:46 +0000339 assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!");
340
Steve Naroffa610eab2007-09-01 21:08:38 +0000341 SS->setBody(BodyStmt, SwitchLoc);
Chris Lattneree5a1a22009-04-18 20:10:59 +0000342 getSwitchStack().pop_back();
Chris Lattner4b009652007-07-25 00:24:17 +0000343
Chris Lattner3429a812007-08-23 05:46:52 +0000344 Expr *CondExpr = SS->getCond();
345 QualType CondType = CondExpr->getType();
Sebastian Redl2437ec62009-01-11 00:38:46 +0000346
Douglas Gregor34712db2009-05-15 23:57:33 +0000347 if (!CondExpr->isTypeDependent() &&
348 !CondType->isIntegerType()) { // C99 6.8.4.2p1
Chris Lattner77d52da2008-11-20 06:06:08 +0000349 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000350 << CondType << CondExpr->getSourceRange();
Sebastian Redl2437ec62009-01-11 00:38:46 +0000351 return StmtError();
Chris Lattner4b009652007-07-25 00:24:17 +0000352 }
Sebastian Redl2437ec62009-01-11 00:38:46 +0000353
Chris Lattner3429a812007-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 Gregor34712db2009-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 Lattner3429a812007-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 Lattner0ab833c2007-08-23 18:29:20 +0000366 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
367 CaseValsTy CaseVals;
Chris Lattner3429a812007-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;
Chris Lattner4b009652007-07-25 00:24:17 +0000373
Chris Lattner1a4066d2007-08-23 06:23:56 +0000374 bool CaseListIsErroneous = false;
375
Douglas Gregor34712db2009-05-15 23:57:33 +0000376 for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
Chris Lattner4b009652007-07-25 00:24:17 +0000377 SC = SC->getNextSwitchCase()) {
Chris Lattner1a4066d2007-08-23 06:23:56 +0000378
Chris Lattner4b009652007-07-25 00:24:17 +0000379 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattner3429a812007-08-23 05:46:52 +0000380 if (TheDefaultStmt) {
381 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner1336cab2008-11-23 23:12:31 +0000382 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Sebastian Redl2437ec62009-01-11 00:38:46 +0000383
Chris Lattner3429a812007-08-23 05:46:52 +0000384 // FIXME: Remove the default statement from the switch block so that
Mike Stumpe127ae32009-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 Lattner1a4066d2007-08-23 06:23:56 +0000388 CaseListIsErroneous = true;
Chris Lattner4b009652007-07-25 00:24:17 +0000389 }
Chris Lattner3429a812007-08-23 05:46:52 +0000390 TheDefaultStmt = DS;
Chris Lattner4b009652007-07-25 00:24:17 +0000391
Chris Lattner3429a812007-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 Lattnere992d6c2008-01-16 19:17:22 +0000397 Expr *Lo = CS->getLHS();
Douglas Gregor34712db2009-05-15 23:57:33 +0000398
399 if (Lo->isTypeDependent() || Lo->isValueDependent()) {
400 HasDependentValue = true;
401 break;
402 }
403
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000404 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Chris Lattner3429a812007-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);
Chris Lattner4b009652007-07-25 00:24:17 +0000410
Chris Lattnere992d6c2008-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 Lattner1a4066d2007-08-23 06:23:56 +0000416 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Douglas Gregor34712db2009-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 Lattner3429a812007-08-23 05:46:52 +0000423 CaseRanges.push_back(std::make_pair(LoVal, CS));
Douglas Gregor34712db2009-05-15 23:57:33 +0000424 } else
Chris Lattner1a4066d2007-08-23 06:23:56 +0000425 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattner3429a812007-08-23 05:46:52 +0000426 }
427 }
Douglas Gregor34712db2009-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 Stumpe127ae32009-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 Gregor34712db2009-05-15 23:57:33 +0000443 CaseListIsErroneous = true;
444 }
445 }
446 }
Chris Lattner3429a812007-08-23 05:46:52 +0000447
Douglas Gregor34712db2009-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 Stumpe127ae32009-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 Gregor34712db2009-05-15 23:57:33 +0000529 CaseListIsErroneous = true;
530 }
Chris Lattner2b1b9a82007-08-23 14:29:07 +0000531 }
Chris Lattner1a4066d2007-08-23 06:23:56 +0000532 }
533 }
Chris Lattner1a4066d2007-08-23 06:23:56 +0000534
Mike Stumpe127ae32009-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 Lattner1a4066d2007-08-23 06:23:56 +0000537 if (CaseListIsErroneous)
Sebastian Redl2437ec62009-01-11 00:38:46 +0000538 return StmtError();
539
540 Switch.release();
541 return Owned(SS);
Chris Lattner4b009652007-07-25 00:24:17 +0000542}
543
Sebastian Redl19c74d32009-01-16 23:28:06 +0000544Action::OwningStmtResult
545Sema::ActOnWhileStmt(SourceLocation WhileLoc, ExprArg Cond, StmtArg Body) {
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000546 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000547 assert(condExpr && "ActOnWhileStmt(): missing expression");
Sebastian Redl19c74d32009-01-16 23:28:06 +0000548
Douglas Gregorcbe3be62009-05-15 21:45:53 +0000549 if (!condExpr->isTypeDependent()) {
550 DefaultFunctionArrayConversion(condExpr);
551 Cond = condExpr;
552 QualType condType = condExpr->getType();
553
554 if (getLangOptions().CPlusPlus) {
555 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
556 return StmtError();
557 } else if (!condType->isScalarType()) // C99 6.8.5p2
558 return StmtError(Diag(WhileLoc,
559 diag::err_typecheck_statement_requires_scalar)
560 << condType << condExpr->getSourceRange());
561 }
Chris Lattner4b009652007-07-25 00:24:17 +0000562
Sebastian Redl19c74d32009-01-16 23:28:06 +0000563 Cond.release();
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000564 return Owned(new (Context) WhileStmt(condExpr, Body.takeAs<Stmt>(),
Ted Kremenek0c97e042009-02-07 01:47:29 +0000565 WhileLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000566}
567
Sebastian Redl19c74d32009-01-16 23:28:06 +0000568Action::OwningStmtResult
569Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body,
570 SourceLocation WhileLoc, ExprArg Cond) {
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000571 Expr *condExpr = Cond.takeAs<Expr>();
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000572 assert(condExpr && "ActOnDoStmt(): missing expression");
Sebastian Redl19c74d32009-01-16 23:28:06 +0000573
Douglas Gregoref482762009-05-15 21:56:04 +0000574 if (!condExpr->isTypeDependent()) {
575 DefaultFunctionArrayConversion(condExpr);
576 Cond = condExpr;
577 QualType condType = condExpr->getType();
578
579 if (getLangOptions().CPlusPlus) {
580 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
581 return StmtError();
582 } else if (!condType->isScalarType()) // C99 6.8.5p2
583 return StmtError(Diag(DoLoc,
584 diag::err_typecheck_statement_requires_scalar)
585 << condType << condExpr->getSourceRange());
586 }
Chris Lattner4b009652007-07-25 00:24:17 +0000587
Sebastian Redl19c74d32009-01-16 23:28:06 +0000588 Cond.release();
Douglas Gregoref482762009-05-15 21:56:04 +0000589 return Owned(new (Context) DoStmt(Body.takeAs<Stmt>(), condExpr, DoLoc,
590 WhileLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000591}
592
Sebastian Redl19c74d32009-01-16 23:28:06 +0000593Action::OwningStmtResult
594Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
595 StmtArg first, ExprArg second, ExprArg third,
596 SourceLocation RParenLoc, StmtArg body) {
597 Stmt *First = static_cast<Stmt*>(first.get());
598 Expr *Second = static_cast<Expr*>(second.get());
599 Expr *Third = static_cast<Expr*>(third.get());
600 Stmt *Body = static_cast<Stmt*>(body.get());
601
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000602 if (!getLangOptions().CPlusPlus) {
603 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000604 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
605 // declare identifiers for objects having storage class 'auto' or
606 // 'register'.
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000607 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
608 DI!=DE; ++DI) {
609 VarDecl *VD = dyn_cast<VarDecl>(*DI);
610 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
611 VD = 0;
612 if (VD == 0)
613 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
614 // FIXME: mark decl erroneous!
615 }
Chris Lattner06611052007-08-28 05:03:08 +0000616 }
Chris Lattner4b009652007-07-25 00:24:17 +0000617 }
Douglas Gregor14013302009-05-15 22:12:32 +0000618 if (Second && !Second->isTypeDependent()) {
Chris Lattner3332fbd2007-08-28 04:55:47 +0000619 DefaultFunctionArrayConversion(Second);
620 QualType SecondType = Second->getType();
Sebastian Redl19c74d32009-01-16 23:28:06 +0000621
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000622 if (getLangOptions().CPlusPlus) {
623 if (CheckCXXBooleanCondition(Second)) // C++ 6.4p4
Sebastian Redl19c74d32009-01-16 23:28:06 +0000624 return StmtError();
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000625 } else if (!SecondType->isScalarType()) // C99 6.8.5p2
Sebastian Redl19c74d32009-01-16 23:28:06 +0000626 return StmtError(Diag(ForLoc,
627 diag::err_typecheck_statement_requires_scalar)
628 << SecondType << Second->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +0000629 }
Sebastian Redl19c74d32009-01-16 23:28:06 +0000630 first.release();
631 second.release();
632 third.release();
633 body.release();
Douglas Gregor14013302009-05-15 22:12:32 +0000634 return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc,
635 LParenLoc, RParenLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000636}
637
Sebastian Redl19c74d32009-01-16 23:28:06 +0000638Action::OwningStmtResult
639Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
640 SourceLocation LParenLoc,
641 StmtArg first, ExprArg second,
642 SourceLocation RParenLoc, StmtArg body) {
643 Stmt *First = static_cast<Stmt*>(first.get());
644 Expr *Second = static_cast<Expr*>(second.get());
645 Stmt *Body = static_cast<Stmt*>(body.get());
Fariborz Jahanian6833b3b2008-01-10 20:33:58 +0000646 if (First) {
647 QualType FirstType;
648 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Chris Lattner4a9a85e2009-03-28 06:33:19 +0000649 if (!DS->isSingleDecl())
Sebastian Redl19c74d32009-01-16 23:28:06 +0000650 return StmtError(Diag((*DS->decl_begin())->getLocation(),
651 diag::err_toomany_element_decls));
652
Chris Lattner4a9a85e2009-03-28 06:33:19 +0000653 Decl *D = DS->getSingleDecl();
Ted Kremenek779e1c22008-10-06 20:58:11 +0000654 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000655 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
656 // declare identifiers for objects having storage class 'auto' or
657 // 'register'.
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000658 VarDecl *VD = cast<VarDecl>(D);
659 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
Sebastian Redl19c74d32009-01-16 23:28:06 +0000660 return StmtError(Diag(VD->getLocation(),
661 diag::err_non_variable_decl_in_for));
Anders Carlsson8d0bcb02008-08-25 18:16:36 +0000662 } else {
Chris Lattner1e3eedb2009-03-13 17:38:01 +0000663 if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid)
Sebastian Redl19c74d32009-01-16 23:28:06 +0000664 return StmtError(Diag(First->getLocStart(),
665 diag::err_selector_element_not_lvalue)
666 << First->getSourceRange());
667
668 FirstType = static_cast<Expr*>(First)->getType();
Anders Carlsson8d0bcb02008-08-25 18:16:36 +0000669 }
Ted Kremenek118930e2008-07-24 23:58:27 +0000670 if (!Context.isObjCObjectPointerType(FirstType))
Chris Lattner9d2cf082008-11-19 05:27:50 +0000671 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000672 << FirstType << First->getSourceRange();
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000673 }
674 if (Second) {
675 DefaultFunctionArrayConversion(Second);
676 QualType SecondType = Second->getType();
Ted Kremenek118930e2008-07-24 23:58:27 +0000677 if (!Context.isObjCObjectPointerType(SecondType))
Chris Lattner9d2cf082008-11-19 05:27:50 +0000678 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000679 << SecondType << Second->getSourceRange();
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000680 }
Sebastian Redl19c74d32009-01-16 23:28:06 +0000681 first.release();
682 second.release();
683 body.release();
Ted Kremenek0c97e042009-02-07 01:47:29 +0000684 return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body,
685 ForLoc, RParenLoc));
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000686}
Chris Lattner4b009652007-07-25 00:24:17 +0000687
Sebastian Redl539eb572009-01-18 13:19:59 +0000688Action::OwningStmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000689Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000690 IdentifierInfo *LabelII) {
Steve Naroff52a81c02008-09-03 18:15:37 +0000691 // If we are in a block, reject all gotos for now.
692 if (CurBlock)
Sebastian Redl539eb572009-01-18 13:19:59 +0000693 return StmtError(Diag(GotoLoc, diag::err_goto_in_block));
Steve Naroff52a81c02008-09-03 18:15:37 +0000694
Chris Lattner4b009652007-07-25 00:24:17 +0000695 // Look up the record for this label identifier.
Chris Lattner2616d8c2009-04-18 20:01:55 +0000696 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Chris Lattner4b009652007-07-25 00:24:17 +0000697
Steve Naroffb88d81c2009-03-13 15:38:40 +0000698 // If we haven't seen this label yet, create a forward reference.
699 if (LabelDecl == 0)
Ted Kremenek0c97e042009-02-07 01:47:29 +0000700 LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0);
Sebastian Redl539eb572009-01-18 13:19:59 +0000701
Ted Kremenek0c97e042009-02-07 01:47:29 +0000702 return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000703}
704
Sebastian Redl539eb572009-01-18 13:19:59 +0000705Action::OwningStmtResult
Chris Lattner9ef9c282009-04-19 01:04:21 +0000706Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
Sebastian Redl539eb572009-01-18 13:19:59 +0000707 ExprArg DestExp) {
Eli Friedman4b99aba2009-03-26 00:18:06 +0000708 // Convert operand to void*
Eli Friedmanfc20c6b2009-03-26 07:32:37 +0000709 Expr* E = DestExp.takeAs<Expr>();
Douglas Gregor83df82a2009-05-16 00:20:29 +0000710 if (!E->isTypeDependent()) {
711 QualType ETy = E->getType();
712 AssignConvertType ConvTy =
713 CheckSingleAssignmentConstraints(Context.VoidPtrTy, E);
714 if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy,
715 E, "passing"))
716 return StmtError();
717 }
718 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
Chris Lattner4b009652007-07-25 00:24:17 +0000719}
720
Sebastian Redl539eb572009-01-18 13:19:59 +0000721Action::OwningStmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000722Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Chris Lattner4b009652007-07-25 00:24:17 +0000723 Scope *S = CurScope->getContinueParent();
724 if (!S) {
725 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
Sebastian Redl539eb572009-01-18 13:19:59 +0000726 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
Chris Lattner4b009652007-07-25 00:24:17 +0000727 }
Sebastian Redl539eb572009-01-18 13:19:59 +0000728
Ted Kremenek0c97e042009-02-07 01:47:29 +0000729 return Owned(new (Context) ContinueStmt(ContinueLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000730}
731
Sebastian Redl539eb572009-01-18 13:19:59 +0000732Action::OwningStmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000733Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Chris Lattner4b009652007-07-25 00:24:17 +0000734 Scope *S = CurScope->getBreakParent();
735 if (!S) {
736 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
Sebastian Redl539eb572009-01-18 13:19:59 +0000737 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
Chris Lattner4b009652007-07-25 00:24:17 +0000738 }
Sebastian Redl539eb572009-01-18 13:19:59 +0000739
Ted Kremenek0c97e042009-02-07 01:47:29 +0000740 return Owned(new (Context) BreakStmt(BreakLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000741}
742
Douglas Gregor81c29152008-10-29 00:13:59 +0000743/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff52a81c02008-09-03 18:15:37 +0000744///
Sebastian Redl539eb572009-01-18 13:19:59 +0000745Action::OwningStmtResult
Steve Naroff52a81c02008-09-03 18:15:37 +0000746Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
Steve Naroff52a81c02008-09-03 18:15:37 +0000747 // If this is the first return we've seen in the block, infer the type of
748 // the block from it.
749 if (CurBlock->ReturnType == 0) {
Steve Naroff503996b2008-09-16 22:25:10 +0000750 if (RetValExp) {
Steve Naroffe2b66a82008-09-24 22:26:48 +0000751 // Don't call UsualUnaryConversions(), since we don't want to do
752 // integer promotions here.
753 DefaultFunctionArrayConversion(RetValExp);
Steve Naroff52a81c02008-09-03 18:15:37 +0000754 CurBlock->ReturnType = RetValExp->getType().getTypePtr();
Steve Naroff503996b2008-09-16 22:25:10 +0000755 } else
Steve Naroff52a81c02008-09-03 18:15:37 +0000756 CurBlock->ReturnType = Context.VoidTy.getTypePtr();
Steve Naroff52a81c02008-09-03 18:15:37 +0000757 }
Mike Stumpc1fddff2009-02-04 22:31:32 +0000758 QualType FnRetType = QualType(CurBlock->ReturnType, 0);
Sebastian Redl539eb572009-01-18 13:19:59 +0000759
Mike Stump9e439c92009-04-29 21:40:37 +0000760 if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) {
761 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr)
762 << getCurFunctionOrMethodDecl()->getDeclName();
763 return StmtError();
764 }
765
Steve Naroff52a81c02008-09-03 18:15:37 +0000766 // Otherwise, verify that this result type matches the previous one. We are
767 // pickier with blocks than for normal functions because we don't have GCC
768 // compatibility to worry about here.
769 if (CurBlock->ReturnType->isVoidType()) {
770 if (RetValExp) {
771 Diag(ReturnLoc, diag::err_return_block_has_expr);
Ted Kremenek0c97e042009-02-07 01:47:29 +0000772 RetValExp->Destroy(Context);
Steve Naroff52a81c02008-09-03 18:15:37 +0000773 RetValExp = 0;
774 }
Ted Kremenek0c97e042009-02-07 01:47:29 +0000775 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff52a81c02008-09-03 18:15:37 +0000776 }
Sebastian Redl539eb572009-01-18 13:19:59 +0000777
778 if (!RetValExp)
779 return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
780
Mike Stumpc1fddff2009-02-04 22:31:32 +0000781 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
782 // we have a non-void block with an expression, continue checking
783 QualType RetValType = RetValExp->getType();
Sebastian Redl539eb572009-01-18 13:19:59 +0000784
Mike Stumpc1fddff2009-02-04 22:31:32 +0000785 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
786 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
787 // function return.
788
789 // In C++ the return statement is handled via a copy initialization.
790 // the C version of which boils down to CheckSingleAssignmentConstraints.
791 // FIXME: Leaks RetValExp.
792 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
793 return StmtError();
794
795 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Steve Naroff52a81c02008-09-03 18:15:37 +0000796 }
Sebastian Redl539eb572009-01-18 13:19:59 +0000797
Ted Kremenek0c97e042009-02-07 01:47:29 +0000798 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Steve Naroff52a81c02008-09-03 18:15:37 +0000799}
Chris Lattner4b009652007-07-25 00:24:17 +0000800
Sebastian Redla55834a2009-04-12 17:16:29 +0000801/// IsReturnCopyElidable - Whether returning @p RetExpr from a function that
802/// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15).
803static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
804 Expr *RetExpr) {
805 QualType ExprType = RetExpr->getType();
806 // - in a return statement in a function with ...
807 // ... a class return type ...
808 if (!RetType->isRecordType())
809 return false;
810 // ... the same cv-unqualified type as the function return type ...
811 if (Ctx.getCanonicalType(RetType).getUnqualifiedType() !=
812 Ctx.getCanonicalType(ExprType).getUnqualifiedType())
813 return false;
814 // ... the expression is the name of a non-volatile automatic object ...
815 // We ignore parentheses here.
816 // FIXME: Is this compliant?
817 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens());
818 if (!DR)
819 return false;
820 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
821 if (!VD)
822 return false;
823 return VD->hasLocalStorage() && !VD->getType()->isReferenceType()
824 && !VD->getType().isVolatileQualified();
825}
826
Sebastian Redl539eb572009-01-18 13:19:59 +0000827Action::OwningStmtResult
828Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprArg rex) {
Anders Carlssonc154a722009-05-01 19:30:39 +0000829 Expr *RetValExp = rex.takeAs<Expr>();
Steve Naroff52a81c02008-09-03 18:15:37 +0000830 if (CurBlock)
831 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Sebastian Redl539eb572009-01-18 13:19:59 +0000832
Chris Lattnere5cb5862008-12-04 23:50:19 +0000833 QualType FnRetType;
Mike Stumpe81596c2009-04-29 00:43:21 +0000834 if (const FunctionDecl *FD = getCurFunctionDecl()) {
Chris Lattnere5cb5862008-12-04 23:50:19 +0000835 FnRetType = FD->getResultType();
Mike Stumpe81596c2009-04-29 00:43:21 +0000836 if (FD->hasAttr<NoReturnAttr>()) {
837 Diag(ReturnLoc, diag::err_noreturn_function_has_return_expr)
838 << getCurFunctionOrMethodDecl()->getDeclName();
839 return StmtError();
840 }
841 } else if (ObjCMethodDecl *MD = getCurMethodDecl())
Steve Naroff5fc6a6e2009-03-03 00:45:38 +0000842 FnRetType = MD->getResultType();
843 else // If we don't have a function/method context, bail.
844 return StmtError();
845
Chris Lattner005ed752008-01-04 18:04:52 +0000846 if (FnRetType->isVoidType()) {
Chris Lattner65cae292008-11-19 08:23:25 +0000847 if (RetValExp) {// C99 6.8.6.4p1 (ext_ since GCC warns)
Chris Lattner6ed167c2008-12-18 02:01:17 +0000848 unsigned D = diag::ext_return_has_expr;
849 if (RetValExp->getType()->isVoidType())
850 D = diag::ext_return_has_void_expr;
Sebastian Redl539eb572009-01-18 13:19:59 +0000851
Chris Lattnerd1a05392008-12-18 02:03:48 +0000852 // return (some void expression); is legal in C++.
853 if (D != diag::ext_return_has_void_expr ||
854 !getLangOptions().CPlusPlus) {
855 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
856 Diag(ReturnLoc, D)
857 << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl)
858 << RetValExp->getSourceRange();
859 }
Chris Lattner4b009652007-07-25 00:24:17 +0000860 }
Ted Kremenek0c97e042009-02-07 01:47:29 +0000861 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Chris Lattner4b009652007-07-25 00:24:17 +0000862 }
Sebastian Redl539eb572009-01-18 13:19:59 +0000863
Anders Carlsson92358ae2009-05-15 00:48:27 +0000864 if (!RetValExp && !FnRetType->isDependentType()) {
Chris Lattner65cae292008-11-19 08:23:25 +0000865 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
866 // C99 6.8.6.4p1 (ext_ since GCC warns)
867 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
868
869 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattnerb1753422008-11-23 21:45:46 +0000870 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner65cae292008-11-19 08:23:25 +0000871 else
Chris Lattnerb1753422008-11-23 21:45:46 +0000872 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Ted Kremenek0c97e042009-02-07 01:47:29 +0000873 return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0));
Chris Lattner65cae292008-11-19 08:23:25 +0000874 }
Sebastian Redl539eb572009-01-18 13:19:59 +0000875
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000876 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
877 // we have a non-void function with an expression, continue checking
Sebastian Redl539eb572009-01-18 13:19:59 +0000878
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000879 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
880 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
Sebastian Redl539eb572009-01-18 13:19:59 +0000881 // function return.
882
Sebastian Redla55834a2009-04-12 17:16:29 +0000883 // C++0x 12.8p15: When certain criteria are met, an implementation is
884 // allowed to omit the copy construction of a class object, [...]
885 // - in a return statement in a function with a class return type, when
886 // the expression is the name of a non-volatile automatic object with
887 // the same cv-unqualified type as the function return type, the copy
888 // operation can be omitted [...]
889 // C++0x 12.8p16: When the criteria for elision of a copy operation are met
890 // and the object to be copied is designated by an lvalue, overload
891 // resolution to select the constructor for the copy is first performed
892 // as if the object were designated by an rvalue.
893 // Note that we only compute Elidable if we're in C++0x, since we don't
894 // care otherwise.
895 bool Elidable = getLangOptions().CPlusPlus0x ?
896 IsReturnCopyElidable(Context, FnRetType, RetValExp) :
897 false;
898
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000899 // In C++ the return statement is handled via a copy initialization.
Sebastian Redl539eb572009-01-18 13:19:59 +0000900 // the C version of which boils down to CheckSingleAssignmentConstraints.
Sebastian Redla55834a2009-04-12 17:16:29 +0000901 // FIXME: Leaks RetValExp on error.
902 if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable))
Sebastian Redl539eb572009-01-18 13:19:59 +0000903 return StmtError();
904
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000905 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
906 }
907
Ted Kremenek0c97e042009-02-07 01:47:29 +0000908 return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp));
Chris Lattner4b009652007-07-25 00:24:17 +0000909}
910
Chris Lattner1e3eedb2009-03-13 17:38:01 +0000911/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
912/// ignore "noop" casts in places where an lvalue is required by an inline asm.
913/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
914/// provide a strong guidance to not use it.
915///
916/// This method checks to see if the argument is an acceptable l-value and
917/// returns false if it is a case we can handle.
918static bool CheckAsmLValue(const Expr *E, Sema &S) {
919 if (E->isLvalue(S.Context) == Expr::LV_Valid)
920 return false; // Cool, this is an lvalue.
921
922 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
923 // are supposed to allow.
924 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
925 if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) {
926 if (!S.getLangOptions().HeinousExtensions)
927 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
928 << E->getSourceRange();
929 else
930 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
931 << E->getSourceRange();
932 // Accept, even if we emitted an error diagnostic.
933 return false;
934 }
935
936 // None of the above, just randomly invalid non-lvalue.
937 return true;
938}
939
940
Sebastian Redlc6b86332009-01-18 16:53:17 +0000941Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
942 bool IsSimple,
943 bool IsVolatile,
944 unsigned NumOutputs,
945 unsigned NumInputs,
946 std::string *Names,
947 MultiExprArg constraints,
948 MultiExprArg exprs,
949 ExprArg asmString,
950 MultiExprArg clobbers,
951 SourceLocation RParenLoc) {
952 unsigned NumClobbers = clobbers.size();
953 StringLiteral **Constraints =
954 reinterpret_cast<StringLiteral**>(constraints.get());
955 Expr **Exprs = reinterpret_cast<Expr **>(exprs.get());
956 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get());
957 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get());
958
Anders Carlssondd3a4fe2009-01-27 20:38:24 +0000959 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
960
Chris Lattnerb052a832008-08-18 19:55:17 +0000961 // The parser verifies that there is a string literal here.
Chris Lattner84418022008-07-23 06:46:56 +0000962 if (AsmString->isWide())
Sebastian Redlc6b86332009-01-18 16:53:17 +0000963 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
964 << AsmString->getSourceRange());
965
Chris Lattnerb052a832008-08-18 19:55:17 +0000966 for (unsigned i = 0; i != NumOutputs; i++) {
967 StringLiteral *Literal = Constraints[i];
Chris Lattner84418022008-07-23 06:46:56 +0000968 if (Literal->isWide())
Sebastian Redlc6b86332009-01-18 16:53:17 +0000969 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
970 << Literal->getSourceRange());
971
Chris Lattner9f8e5022009-04-26 17:19:08 +0000972 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner0cd323d2009-04-26 17:57:12 +0000973 Literal->getByteLength(),
974 Names[i]);
Chris Lattner9f8e5022009-04-26 17:19:08 +0000975 if (!Context.Target.validateOutputConstraint(Info))
Sebastian Redlc6b86332009-01-18 16:53:17 +0000976 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner9f8e5022009-04-26 17:19:08 +0000977 diag::err_asm_invalid_output_constraint)
978 << Info.getConstraintStr());
Sebastian Redlc6b86332009-01-18 16:53:17 +0000979
Anders Carlsson4ce42302007-11-27 04:11:28 +0000980 // Check that the output exprs are valid lvalues.
Eli Friedman94b4de42009-05-03 07:49:42 +0000981 Expr *OutputExpr = Exprs[i];
Chris Lattner1e3eedb2009-03-13 17:38:01 +0000982 if (CheckAsmLValue(OutputExpr, *this)) {
Eli Friedman94b4de42009-05-03 07:49:42 +0000983 return StmtError(Diag(OutputExpr->getLocStart(),
Chris Lattner9d2cf082008-11-19 05:27:50 +0000984 diag::err_asm_invalid_lvalue_in_output)
Eli Friedman94b4de42009-05-03 07:49:42 +0000985 << OutputExpr->getSourceRange());
Anders Carlssonb4487a82007-11-23 19:43:50 +0000986 }
Anders Carlssondd3a4fe2009-01-27 20:38:24 +0000987
Chris Lattnerc49cc1a2009-04-26 07:16:29 +0000988 OutputConstraintInfos.push_back(Info);
Anders Carlssonb4487a82007-11-23 19:43:50 +0000989 }
Sebastian Redlc6b86332009-01-18 16:53:17 +0000990
Chris Lattnerf983c692009-05-03 05:55:43 +0000991 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
992
Anders Carlssonb4487a82007-11-23 19:43:50 +0000993 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattnerb052a832008-08-18 19:55:17 +0000994 StringLiteral *Literal = Constraints[i];
Chris Lattner84418022008-07-23 06:46:56 +0000995 if (Literal->isWide())
Sebastian Redlc6b86332009-01-18 16:53:17 +0000996 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
997 << Literal->getSourceRange());
998
Chris Lattner9f8e5022009-04-26 17:19:08 +0000999 TargetInfo::ConstraintInfo Info(Literal->getStrData(),
Chris Lattner0cd323d2009-04-26 17:57:12 +00001000 Literal->getByteLength(),
1001 Names[i]);
1002 if (!Context.Target.validateInputConstraint(&OutputConstraintInfos[0],
1003 NumOutputs, Info)) {
Sebastian Redlc6b86332009-01-18 16:53:17 +00001004 return StmtError(Diag(Literal->getLocStart(),
Chris Lattner9f8e5022009-04-26 17:19:08 +00001005 diag::err_asm_invalid_input_constraint)
1006 << Info.getConstraintStr());
Anders Carlsson4ce42302007-11-27 04:11:28 +00001007 }
Sebastian Redlc6b86332009-01-18 16:53:17 +00001008
Eli Friedman94b4de42009-05-03 07:49:42 +00001009 Expr *InputExpr = Exprs[i];
Sebastian Redlc6b86332009-01-18 16:53:17 +00001010
Anders Carlssone7d92702009-01-20 20:49:22 +00001011 // Only allow void types for memory constraints.
Chris Lattnerc49cc1a2009-04-26 07:16:29 +00001012 if (Info.allowsMemory() && !Info.allowsRegister()) {
Chris Lattner1e3eedb2009-03-13 17:38:01 +00001013 if (CheckAsmLValue(InputExpr, *this))
Eli Friedman94b4de42009-05-03 07:49:42 +00001014 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssone7d92702009-01-20 20:49:22 +00001015 diag::err_asm_invalid_lvalue_in_input)
Chris Lattner9f8e5022009-04-26 17:19:08 +00001016 << Info.getConstraintStr()
Eli Friedman94b4de42009-05-03 07:49:42 +00001017 << InputExpr->getSourceRange());
Anders Carlssonb4487a82007-11-23 19:43:50 +00001018 }
Sebastian Redlc6b86332009-01-18 16:53:17 +00001019
Chris Lattnerc49cc1a2009-04-26 07:16:29 +00001020 if (Info.allowsRegister()) {
Anders Carlssone7d92702009-01-20 20:49:22 +00001021 if (InputExpr->getType()->isVoidType()) {
Eli Friedman94b4de42009-05-03 07:49:42 +00001022 return StmtError(Diag(InputExpr->getLocStart(),
Anders Carlssone7d92702009-01-20 20:49:22 +00001023 diag::err_asm_invalid_type_in_input)
Chris Lattner9f8e5022009-04-26 17:19:08 +00001024 << InputExpr->getType() << Info.getConstraintStr()
Eli Friedman94b4de42009-05-03 07:49:42 +00001025 << InputExpr->getSourceRange());
Anders Carlssone7d92702009-01-20 20:49:22 +00001026 }
Anders Carlssone7d92702009-01-20 20:49:22 +00001027 }
Anders Carlsson14125b02009-02-22 02:11:23 +00001028
1029 DefaultFunctionArrayConversion(Exprs[i]);
Chris Lattner11970f92009-04-26 18:22:24 +00001030
Chris Lattnerf983c692009-05-03 05:55:43 +00001031 InputConstraintInfos.push_back(Info);
Anders Carlssonb4487a82007-11-23 19:43:50 +00001032 }
Sebastian Redlc6b86332009-01-18 16:53:17 +00001033
Anders Carlsson49dadd62007-11-25 00:25:21 +00001034 // Check that the clobbers are valid.
Chris Lattnerb052a832008-08-18 19:55:17 +00001035 for (unsigned i = 0; i != NumClobbers; i++) {
1036 StringLiteral *Literal = Clobbers[i];
Chris Lattner84418022008-07-23 06:46:56 +00001037 if (Literal->isWide())
Sebastian Redlc6b86332009-01-18 16:53:17 +00001038 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
1039 << Literal->getSourceRange());
1040
1041 llvm::SmallString<16> Clobber(Literal->getStrData(),
1042 Literal->getStrData() +
Anders Carlsson49dadd62007-11-25 00:25:21 +00001043 Literal->getByteLength());
Sebastian Redlc6b86332009-01-18 16:53:17 +00001044
Chris Lattner84418022008-07-23 06:46:56 +00001045 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Sebastian Redlc6b86332009-01-18 16:53:17 +00001046 return StmtError(Diag(Literal->getLocStart(),
1047 diag::err_asm_unknown_register_name) << Clobber.c_str());
Anders Carlsson49dadd62007-11-25 00:25:21 +00001048 }
Sebastian Redlc6b86332009-01-18 16:53:17 +00001049
1050 constraints.release();
1051 exprs.release();
1052 asmString.release();
1053 clobbers.release();
Chris Lattnerc5164732009-03-10 23:41:04 +00001054 AsmStmt *NS =
1055 new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
1056 Names, Constraints, Exprs, AsmString, NumClobbers,
1057 Clobbers, RParenLoc);
1058 // Validate the asm string, ensuring it makes sense given the operands we
1059 // have.
1060 llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces;
1061 unsigned DiagOffs;
1062 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
Chris Lattnerc0da38d2009-03-10 23:57:07 +00001063 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
1064 << AsmString->getSourceRange();
Chris Lattnerc5164732009-03-10 23:41:04 +00001065 DeleteStmt(NS);
1066 return StmtError();
1067 }
1068
Chris Lattnerf983c692009-05-03 05:55:43 +00001069 // Validate tied input operands for type mismatches.
1070 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
1071 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
1072
1073 // If this is a tied constraint, verify that the output and input have
1074 // either exactly the same type, or that they are int/ptr operands with the
1075 // same size (int/long, int*/long, are ok etc).
1076 if (!Info.hasTiedOperand()) continue;
1077
1078 unsigned TiedTo = Info.getTiedOperand();
Chris Lattner5d193d22009-05-03 07:04:21 +00001079 Expr *OutputExpr = Exprs[TiedTo];
Chris Lattnerf2e6e502009-05-03 06:50:40 +00001080 Expr *InputExpr = Exprs[i+NumOutputs];
Chris Lattner5fa424b2009-05-03 05:59:17 +00001081 QualType InTy = InputExpr->getType();
1082 QualType OutTy = OutputExpr->getType();
1083 if (Context.hasSameType(InTy, OutTy))
Chris Lattnerf983c692009-05-03 05:55:43 +00001084 continue; // All types can be tied to themselves.
1085
Chris Lattner5fa424b2009-05-03 05:59:17 +00001086 // Int/ptr operands have some special cases that we allow.
1087 if ((OutTy->isIntegerType() || OutTy->isPointerType()) &&
1088 (InTy->isIntegerType() || InTy->isPointerType())) {
1089
1090 // They are ok if they are the same size. Tying void* to int is ok if
1091 // they are the same size, for example. This also allows tying void* to
1092 // int*.
Chris Lattner4bba3fc2009-05-03 08:32:32 +00001093 uint64_t OutSize = Context.getTypeSize(OutTy);
1094 uint64_t InSize = Context.getTypeSize(InTy);
1095 if (OutSize == InSize)
Chris Lattnerf983c692009-05-03 05:55:43 +00001096 continue;
Chris Lattner5d193d22009-05-03 07:04:21 +00001097
Chris Lattner4bba3fc2009-05-03 08:32:32 +00001098 // If the smaller input/output operand is not mentioned in the asm string,
1099 // then we can promote it and the asm string won't notice. Check this
Chris Lattner5d193d22009-05-03 07:04:21 +00001100 // case now.
Chris Lattner4bba3fc2009-05-03 08:32:32 +00001101 bool SmallerValueMentioned = false;
Chris Lattner14e98982009-05-03 08:24:16 +00001102 for (unsigned p = 0, e = Pieces.size(); p != e; ++p) {
1103 AsmStmt::AsmStringPiece &Piece = Pieces[p];
1104 if (!Piece.isOperand()) continue;
Chris Lattner4bba3fc2009-05-03 08:32:32 +00001105
1106 // If this is a reference to the input and if the input was the smaller
1107 // one, then we have to reject this asm.
1108 if (Piece.getOperandNo() == i+NumOutputs) {
1109 if (InSize < OutSize) {
1110 SmallerValueMentioned = true;
1111 break;
1112 }
1113 }
1114
1115 // If this is a reference to the input and if the input was the smaller
1116 // one, then we have to reject this asm.
1117 if (Piece.getOperandNo() == TiedTo) {
1118 if (InSize > OutSize) {
1119 SmallerValueMentioned = true;
1120 break;
1121 }
1122 }
Chris Lattner5d193d22009-05-03 07:04:21 +00001123 }
1124
Chris Lattner4bba3fc2009-05-03 08:32:32 +00001125 // If the smaller value wasn't mentioned in the asm string, and if the
1126 // output was a register, just extend the shorter one to the size of the
1127 // larger one.
1128 if (!SmallerValueMentioned &&
Chris Lattner5d193d22009-05-03 07:04:21 +00001129 OutputConstraintInfos[TiedTo].allowsRegister())
1130 continue;
Chris Lattnerf983c692009-05-03 05:55:43 +00001131 }
1132
Chris Lattnerf2e6e502009-05-03 06:50:40 +00001133 Diag(InputExpr->getLocStart(),
Chris Lattnerf983c692009-05-03 05:55:43 +00001134 diag::err_asm_tying_incompatible_types)
Chris Lattner5fa424b2009-05-03 05:59:17 +00001135 << InTy << OutTy << OutputExpr->getSourceRange()
Chris Lattnerf983c692009-05-03 05:55:43 +00001136 << InputExpr->getSourceRange();
1137 DeleteStmt(NS);
1138 return StmtError();
1139 }
Chris Lattnerc5164732009-03-10 23:41:04 +00001140
1141 return Owned(NS);
Chris Lattner8a40a832007-10-29 04:04:16 +00001142}
Fariborz Jahanian06798362007-11-01 23:59:59 +00001143
Sebastian Redlb3860a72009-01-18 17:43:11 +00001144Action::OwningStmtResult
1145Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Chris Lattner5261d0c2009-03-28 19:18:32 +00001146 SourceLocation RParen, DeclPtrTy Parm,
Sebastian Redlb3860a72009-01-18 17:43:11 +00001147 StmtArg Body, StmtArg catchList) {
Anders Carlssonc154a722009-05-01 19:30:39 +00001148 Stmt *CatchList = catchList.takeAs<Stmt>();
Chris Lattner5261d0c2009-03-28 19:18:32 +00001149 ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>());
Steve Naroff45c237d2009-03-03 20:59:06 +00001150
1151 // PVD == 0 implies @catch(...).
Steve Naroff30db0042009-03-03 21:16:54 +00001152 if (PVD) {
Chris Lattnerc37a6382009-04-12 23:26:56 +00001153 // If we already know the decl is invalid, reject it.
1154 if (PVD->isInvalidDecl())
1155 return StmtError();
1156
Steve Naroff30db0042009-03-03 21:16:54 +00001157 if (!Context.isObjCObjectPointerType(PVD->getType()))
1158 return StmtError(Diag(PVD->getLocation(),
1159 diag::err_catch_param_not_objc_type));
1160 if (PVD->getType()->isObjCQualifiedIdType())
1161 return StmtError(Diag(PVD->getLocation(),
Steve Naroffe54d4eb2009-03-03 23:13:51 +00001162 diag::err_illegal_qualifiers_on_catch_parm));
Steve Naroff30db0042009-03-03 21:16:54 +00001163 }
Chris Lattnerc37a6382009-04-12 23:26:56 +00001164
Ted Kremenek0c97e042009-02-07 01:47:29 +00001165 ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen,
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00001166 PVD, Body.takeAs<Stmt>(), CatchList);
Sebastian Redlb3860a72009-01-18 17:43:11 +00001167 return Owned(CatchList ? CatchList : CS);
Fariborz Jahanian06798362007-11-01 23:59:59 +00001168}
1169
Sebastian Redlb3860a72009-01-18 17:43:11 +00001170Action::OwningStmtResult
1171Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00001172 return Owned(new (Context) ObjCAtFinallyStmt(AtLoc,
1173 static_cast<Stmt*>(Body.release())));
Fariborz Jahaniande3abf82007-11-02 00:18:53 +00001174}
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +00001175
Sebastian Redlb3860a72009-01-18 17:43:11 +00001176Action::OwningStmtResult
1177Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
1178 StmtArg Try, StmtArg Catch, StmtArg Finally) {
Chris Lattnerc92920c2009-04-19 05:21:20 +00001179 CurFunctionNeedsScopeChecking = true;
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00001180 return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(),
1181 Catch.takeAs<Stmt>(),
1182 Finally.takeAs<Stmt>()));
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +00001183}
1184
Sebastian Redlb3860a72009-01-18 17:43:11 +00001185Action::OwningStmtResult
Steve Naroff9a8739a2009-02-12 15:54:59 +00001186Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) {
Anders Carlssonc154a722009-05-01 19:30:39 +00001187 Expr *ThrowExpr = expr.takeAs<Expr>();
Steve Naroff677f4012009-02-11 17:45:08 +00001188 if (!ThrowExpr) {
Steve Naroff590fe482009-02-11 20:05:44 +00001189 // @throw without an expression designates a rethrow (which much occur
1190 // in the context of an @catch clause).
1191 Scope *AtCatchParent = CurScope;
1192 while (AtCatchParent && !AtCatchParent->isAtCatchScope())
1193 AtCatchParent = AtCatchParent->getParent();
1194 if (!AtCatchParent)
Steve Naroff644567e2009-02-12 18:09:32 +00001195 return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch));
Steve Naroff677f4012009-02-11 17:45:08 +00001196 } else {
1197 QualType ThrowType = ThrowExpr->getType();
1198 // Make sure the expression type is an ObjC pointer or "void *".
1199 if (!Context.isObjCObjectPointerType(ThrowType)) {
1200 const PointerType *PT = ThrowType->getAsPointerType();
1201 if (!PT || !PT->getPointeeType()->isVoidType())
Steve Naroff644567e2009-02-12 18:09:32 +00001202 return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object)
1203 << ThrowExpr->getType() << ThrowExpr->getSourceRange());
Steve Naroff677f4012009-02-11 17:45:08 +00001204 }
1205 }
1206 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr));
Fariborz Jahanian08df2c62007-11-07 02:00:49 +00001207}
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +00001208
Sebastian Redlb3860a72009-01-18 17:43:11 +00001209Action::OwningStmtResult
1210Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr,
1211 StmtArg SynchBody) {
Chris Lattner3f3d40e2009-04-21 06:01:00 +00001212 CurFunctionNeedsScopeChecking = true;
1213
Chris Lattner08d892f2009-04-21 06:11:25 +00001214 // Make sure the expression type is an ObjC pointer or "void *".
1215 Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get());
1216 if (!Context.isObjCObjectPointerType(SyncExpr->getType())) {
1217 const PointerType *PT = SyncExpr->getType()->getAsPointerType();
1218 if (!PT || !PT->getPointeeType()->isVoidType())
1219 return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object)
1220 << SyncExpr->getType() << SyncExpr->getSourceRange());
1221 }
1222
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00001223 return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc,
1224 SynchExpr.takeAs<Stmt>(),
1225 SynchBody.takeAs<Stmt>()));
Fariborz Jahanianc9fd4d12008-01-29 19:14:59 +00001226}
Sebastian Redl743c8162008-12-22 19:15:10 +00001227
1228/// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
1229/// and creates a proper catch handler from them.
1230Action::OwningStmtResult
Chris Lattner5261d0c2009-03-28 19:18:32 +00001231Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl,
Sebastian Redl743c8162008-12-22 19:15:10 +00001232 StmtArg HandlerBlock) {
1233 // There's nothing to test that ActOnExceptionDecl didn't already test.
Ted Kremenek0c97e042009-02-07 01:47:29 +00001234 return Owned(new (Context) CXXCatchStmt(CatchLoc,
Chris Lattner5261d0c2009-03-28 19:18:32 +00001235 cast_or_null<VarDecl>(ExDecl.getAs<Decl>()),
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00001236 HandlerBlock.takeAs<Stmt>()));
Sebastian Redl743c8162008-12-22 19:15:10 +00001237}
Sebastian Redl237116b2008-12-22 21:35:02 +00001238
1239/// ActOnCXXTryBlock - Takes a try compound-statement and a number of
1240/// handlers and creates a try statement from them.
1241Action::OwningStmtResult
1242Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock,
1243 MultiStmtArg RawHandlers) {
1244 unsigned NumHandlers = RawHandlers.size();
1245 assert(NumHandlers > 0 &&
1246 "The parser shouldn't call this if there are no handlers.");
1247 Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get());
1248
1249 for(unsigned i = 0; i < NumHandlers - 1; ++i) {
1250 CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]);
1251 if (!Handler->getExceptionDecl())
1252 return StmtError(Diag(Handler->getLocStart(), diag::err_early_catch_all));
1253 }
1254 // FIXME: We should detect handlers for the same type as an earlier one.
1255 // This one is rather easy.
1256 // FIXME: We should detect handlers that cannot catch anything because an
1257 // earlier handler catches a superclass. Need to find a method that is not
1258 // quadratic for this.
1259 // Neither of these are explicitly forbidden, but every compiler detects them
1260 // and warns.
1261
Sebastian Redl9949a5e2009-04-27 20:27:31 +00001262 CurFunctionNeedsScopeChecking = true;
Sebastian Redl237116b2008-12-22 21:35:02 +00001263 RawHandlers.release();
Ted Kremenek0c97e042009-02-07 01:47:29 +00001264 return Owned(new (Context) CXXTryStmt(TryLoc,
1265 static_cast<Stmt*>(TryBlock.release()),
1266 Handlers, NumHandlers));
Sebastian Redl237116b2008-12-22 21:35:02 +00001267}