blob: 21f897f639b4f9eed12852a7a4bdad1579478ac8 [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"
Anders Carlsson49dadd62007-11-25 00:25:21 +000019#include "clang/Basic/TargetInfo.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020#include "clang/Basic/Diagnostic.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021using namespace clang;
22
Steve Naroff5cbb02f2007-09-16 14:56:35 +000023Sema::StmtResult Sema::ActOnExprStmt(ExprTy *expr) {
Chris Lattner4b009652007-07-25 00:24:17 +000024 Expr *E = static_cast<Expr*>(expr);
Steve Naroff5cbb02f2007-09-16 14:56:35 +000025 assert(E && "ActOnExprStmt(): missing expression");
Chris Lattnere02e4402008-07-25 23:18:17 +000026
27 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
28 // void expression for its side effects. Conversion to void allows any
29 // operand, even incomplete types.
30
31 // Same thing in for stmt first clause (when expr) and third clause.
Chris Lattner4b009652007-07-25 00:24:17 +000032 return E;
33}
34
35
Steve Naroff5cbb02f2007-09-16 14:56:35 +000036Sema::StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Chris Lattner4b009652007-07-25 00:24:17 +000037 return new NullStmt(SemiLoc);
38}
39
Chris Lattnera4ff4272008-03-13 06:29:04 +000040Sema::StmtResult Sema::ActOnDeclStmt(DeclTy *decl, SourceLocation StartLoc,
41 SourceLocation EndLoc) {
42 if (decl == 0)
43 return true;
44
45 ScopedDecl *SD = cast<ScopedDecl>(static_cast<Decl *>(decl));
Ted Kremenek1bc18e62008-10-07 23:09:49 +000046
47
48 // This is a temporary hack until we are always passing around
49 // DeclGroupRefs.
50 llvm::SmallVector<Decl*, 10> decls;
51 while (SD) {
52 ScopedDecl* d = SD;
53 SD = SD->getNextDeclarator();
54 d->setNextDeclarator(0);
55 decls.push_back(d);
56 }
57
58 assert (!decls.empty());
59
60 if (decls.size() == 1) {
61 DeclGroupOwningRef DG(*decls.begin());
62 return new DeclStmt(DG, StartLoc, EndLoc);
63 }
64 else {
Chris Lattnerb1753422008-11-23 21:45:46 +000065 DeclGroupOwningRef DG(DeclGroup::Create(Context, decls.size(), &decls[0]));
Ted Kremenek1bc18e62008-10-07 23:09:49 +000066 return new DeclStmt(DG, StartLoc, EndLoc);
67 }
Chris Lattner4b009652007-07-25 00:24:17 +000068}
69
70Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +000071Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Chris Lattnerf2b07572007-08-31 21:49:55 +000072 StmtTy **elts, unsigned NumElts, bool isStmtExpr) {
Chris Lattner3ea3b662007-08-27 04:29:41 +000073 Stmt **Elts = reinterpret_cast<Stmt**>(elts);
74 // If we're in C89 mode, check that we don't have any decls after stmts. If
75 // so, emit an extension diagnostic.
76 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) {
77 // Note that __extension__ can be around a decl.
78 unsigned i = 0;
79 // Skip over all declarations.
80 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
81 /*empty*/;
82
83 // We found the end of the list or a statement. Scan for another declstmt.
84 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
85 /*empty*/;
86
87 if (i != NumElts) {
Ted Kremenekc7350432008-10-06 18:48:35 +000088 ScopedDecl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
Chris Lattner3ea3b662007-08-27 04:29:41 +000089 Diag(D->getLocation(), diag::ext_mixed_decls_code);
90 }
91 }
Chris Lattnerf2b07572007-08-31 21:49:55 +000092 // Warn about unused expressions in statements.
93 for (unsigned i = 0; i != NumElts; ++i) {
94 Expr *E = dyn_cast<Expr>(Elts[i]);
95 if (!E) continue;
96
97 // Warn about expressions with unused results.
98 if (E->hasLocalSideEffect() || E->getType()->isVoidType())
99 continue;
100
101 // The last expr in a stmt expr really is used.
102 if (isStmtExpr && i == NumElts-1)
103 continue;
104
105 /// DiagnoseDeadExpr - This expression is side-effect free and evaluated in
106 /// a context where the result is unused. Emit a diagnostic to warn about
107 /// this.
108 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E))
Chris Lattner8ba580c2008-11-19 05:08:23 +0000109 Diag(BO->getOperatorLoc(), diag::warn_unused_expr)
110 << BO->getLHS()->getSourceRange() << BO->getRHS()->getSourceRange();
Chris Lattnerf2b07572007-08-31 21:49:55 +0000111 else if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
Chris Lattner8ba580c2008-11-19 05:08:23 +0000112 Diag(UO->getOperatorLoc(), diag::warn_unused_expr)
113 << UO->getSubExpr()->getSourceRange();
Chris Lattnerf2b07572007-08-31 21:49:55 +0000114 else
Chris Lattner8ba580c2008-11-19 05:08:23 +0000115 Diag(E->getExprLoc(), diag::warn_unused_expr) << E->getSourceRange();
Chris Lattnerf2b07572007-08-31 21:49:55 +0000116 }
117
Steve Naroff5d2fff82007-08-31 23:28:33 +0000118 return new CompoundStmt(Elts, NumElts, L, R);
Chris Lattner4b009652007-07-25 00:24:17 +0000119}
120
121Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000122Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprTy *lhsval,
Chris Lattner4b009652007-07-25 00:24:17 +0000123 SourceLocation DotDotDotLoc, ExprTy *rhsval,
124 SourceLocation ColonLoc, StmtTy *subStmt) {
125 Stmt *SubStmt = static_cast<Stmt*>(subStmt);
126 Expr *LHSVal = ((Expr *)lhsval), *RHSVal = ((Expr *)rhsval);
127 assert((LHSVal != 0) && "missing expression in case statement");
128
Chris Lattner4b009652007-07-25 00:24:17 +0000129 // C99 6.8.4.2p3: The expression shall be an integer constant.
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000130 // However, GCC allows any evaluatable integer expression.
Anders Carlsson613314d2008-12-01 02:13:02 +0000131
132 if (VerifyIntegerConstantExpression(LHSVal))
Chris Lattner4b009652007-07-25 00:24:17 +0000133 return SubStmt;
Chris Lattner4b009652007-07-25 00:24:17 +0000134
135 // GCC extension: The expression shall be an integer constant.
Anders Carlsson613314d2008-12-01 02:13:02 +0000136
137 if (RHSVal && VerifyIntegerConstantExpression(RHSVal))
Chris Lattner3429a812007-08-23 05:46:52 +0000138 RHSVal = 0; // Recover by just forgetting about it.
Chris Lattner4b009652007-07-25 00:24:17 +0000139
140 if (SwitchStack.empty()) {
141 Diag(CaseLoc, diag::err_case_not_in_switch);
142 return SubStmt;
143 }
144
Steve Naroff5d2fff82007-08-31 23:28:33 +0000145 CaseStmt *CS = new CaseStmt(LHSVal, RHSVal, SubStmt, CaseLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000146 SwitchStack.back()->addSwitchCase(CS);
147 return CS;
148}
149
150Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000151Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000152 StmtTy *subStmt, Scope *CurScope) {
153 Stmt *SubStmt = static_cast<Stmt*>(subStmt);
154
155 if (SwitchStack.empty()) {
156 Diag(DefaultLoc, diag::err_default_not_in_switch);
157 return SubStmt;
158 }
159
160 DefaultStmt *DS = new DefaultStmt(DefaultLoc, SubStmt);
161 SwitchStack.back()->addSwitchCase(DS);
162
163 return DS;
164}
165
166Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000167Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Chris Lattner4b009652007-07-25 00:24:17 +0000168 SourceLocation ColonLoc, StmtTy *subStmt) {
169 Stmt *SubStmt = static_cast<Stmt*>(subStmt);
170 // Look up the record for this label identifier.
171 LabelStmt *&LabelDecl = LabelMap[II];
172
173 // If not forward referenced or defined already, just create a new LabelStmt.
174 if (LabelDecl == 0)
175 return LabelDecl = new LabelStmt(IdentLoc, II, SubStmt);
176
177 assert(LabelDecl->getID() == II && "Label mismatch!");
178
179 // Otherwise, this label was either forward reference or multiply defined. If
180 // multiply defined, reject it now.
181 if (LabelDecl->getSubStmt()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000182 Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID();
Chris Lattner1336cab2008-11-23 23:12:31 +0000183 Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000184 return SubStmt;
185 }
186
187 // Otherwise, this label was forward declared, and we just found its real
188 // definition. Fill in the forward definition and return it.
189 LabelDecl->setIdentLoc(IdentLoc);
190 LabelDecl->setSubStmt(SubStmt);
191 return LabelDecl;
192}
193
194Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000195Sema::ActOnIfStmt(SourceLocation IfLoc, ExprTy *CondVal,
Chris Lattner4b009652007-07-25 00:24:17 +0000196 StmtTy *ThenVal, SourceLocation ElseLoc,
197 StmtTy *ElseVal) {
198 Expr *condExpr = (Expr *)CondVal;
Anders Carlsson663733e2007-10-10 20:50:11 +0000199 Stmt *thenStmt = (Stmt *)ThenVal;
200
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000201 assert(condExpr && "ActOnIfStmt(): missing expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000202
203 DefaultFunctionArrayConversion(condExpr);
204 QualType condType = condExpr->getType();
205
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000206 if (getLangOptions().CPlusPlus) {
207 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
208 return true;
209 } else if (!condType->isScalarType()) // C99 6.8.4.1p1
Chris Lattner77d52da2008-11-20 06:06:08 +0000210 return Diag(IfLoc, diag::err_typecheck_statement_requires_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000211 << condType << condExpr->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +0000212
Anders Carlsson663733e2007-10-10 20:50:11 +0000213 // Warn if the if block has a null body without an else value.
214 // this helps prevent bugs due to typos, such as
215 // if (condition);
216 // do_stuff();
217 if (!ElseVal) {
218 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
219 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
220 }
221
222 return new IfStmt(IfLoc, condExpr, thenStmt, (Stmt*)ElseVal);
Chris Lattner4b009652007-07-25 00:24:17 +0000223}
224
225Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000226Sema::ActOnStartOfSwitchStmt(ExprTy *cond) {
Chris Lattner3429a812007-08-23 05:46:52 +0000227 Expr *Cond = static_cast<Expr*>(cond);
228
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000229 if (getLangOptions().CPlusPlus) {
230 // C++ 6.4.2.p2:
231 // The condition shall be of integral type, enumeration type, or of a class
232 // type for which a single conversion function to integral or enumeration
233 // type exists (12.3). If the condition is of class type, the condition is
234 // converted by calling that conversion function, and the result of the
235 // conversion is used in place of the original condition for the remainder
236 // of this section. Integral promotions are performed.
237
238 QualType Ty = Cond->getType();
239
240 // FIXME: Handle class types.
241
242 // If the type is wrong a diagnostic will be emitted later at
243 // ActOnFinishSwitchStmt.
244 if (Ty->isIntegralType() || Ty->isEnumeralType()) {
245 // Integral promotions are performed.
246 // FIXME: Integral promotions for C++ are not complete.
247 UsualUnaryConversions(Cond);
248 }
249 } else {
250 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
251 UsualUnaryConversions(Cond);
252 }
Chris Lattner3429a812007-08-23 05:46:52 +0000253
254 SwitchStmt *SS = new SwitchStmt(Cond);
Chris Lattner4b009652007-07-25 00:24:17 +0000255 SwitchStack.push_back(SS);
256 return SS;
257}
258
Chris Lattner3429a812007-08-23 05:46:52 +0000259/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
260/// the specified width and sign. If an overflow occurs, detect it and emit
261/// the specified diagnostic.
262void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
263 unsigned NewWidth, bool NewSign,
264 SourceLocation Loc,
265 unsigned DiagID) {
266 // Perform a conversion to the promoted condition type if needed.
267 if (NewWidth > Val.getBitWidth()) {
268 // If this is an extension, just do it.
269 llvm::APSInt OldVal(Val);
270 Val.extend(NewWidth);
271
272 // If the input was signed and negative and the output is unsigned,
273 // warn.
274 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
Chris Lattner77d52da2008-11-20 06:06:08 +0000275 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattner3429a812007-08-23 05:46:52 +0000276
277 Val.setIsSigned(NewSign);
278 } else if (NewWidth < Val.getBitWidth()) {
279 // If this is a truncation, check for overflow.
280 llvm::APSInt ConvVal(Val);
281 ConvVal.trunc(NewWidth);
Chris Lattner5c039602007-08-23 22:08:35 +0000282 ConvVal.setIsSigned(NewSign);
Chris Lattner3429a812007-08-23 05:46:52 +0000283 ConvVal.extend(Val.getBitWidth());
Chris Lattner5c039602007-08-23 22:08:35 +0000284 ConvVal.setIsSigned(Val.isSigned());
Chris Lattner3429a812007-08-23 05:46:52 +0000285 if (ConvVal != Val)
Chris Lattner77d52da2008-11-20 06:06:08 +0000286 Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10);
Chris Lattner3429a812007-08-23 05:46:52 +0000287
288 // Regardless of whether a diagnostic was emitted, really do the
289 // truncation.
290 Val.trunc(NewWidth);
Chris Lattner5c039602007-08-23 22:08:35 +0000291 Val.setIsSigned(NewSign);
Chris Lattner3429a812007-08-23 05:46:52 +0000292 } else if (NewSign != Val.isSigned()) {
293 // Convert the sign to match the sign of the condition. This can cause
294 // overflow as well: unsigned(INTMIN)
295 llvm::APSInt OldVal(Val);
296 Val.setIsSigned(NewSign);
297
298 if (Val.isNegative()) // Sign bit changes meaning.
Chris Lattner77d52da2008-11-20 06:06:08 +0000299 Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10);
Chris Lattner3429a812007-08-23 05:46:52 +0000300 }
301}
302
Chris Lattner0ab833c2007-08-23 18:29:20 +0000303namespace {
304 struct CaseCompareFunctor {
305 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
306 const llvm::APSInt &RHS) {
307 return LHS.first < RHS;
308 }
Chris Lattner2157f272007-09-03 18:31:57 +0000309 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
310 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
311 return LHS.first < RHS.first;
312 }
Chris Lattner0ab833c2007-08-23 18:29:20 +0000313 bool operator()(const llvm::APSInt &LHS,
314 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
315 return LHS < RHS.first;
316 }
317 };
318}
319
Chris Lattner766afb82007-09-21 18:15:22 +0000320/// CmpCaseVals - Comparison predicate for sorting case values.
321///
322static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
323 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
324 if (lhs.first < rhs.first)
325 return true;
326
327 if (lhs.first == rhs.first &&
328 lhs.second->getCaseLoc().getRawEncoding()
329 < rhs.second->getCaseLoc().getRawEncoding())
330 return true;
331 return false;
332}
333
Chris Lattner4b009652007-07-25 00:24:17 +0000334Action::StmtResult
Chris Lattner766afb82007-09-21 18:15:22 +0000335Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtTy *Switch,
336 ExprTy *Body) {
Chris Lattner4b009652007-07-25 00:24:17 +0000337 Stmt *BodyStmt = (Stmt*)Body;
338
339 SwitchStmt *SS = SwitchStack.back();
340 assert(SS == (SwitchStmt*)Switch && "switch stack missing push/pop!");
341
Steve Naroffa610eab2007-09-01 21:08:38 +0000342 SS->setBody(BodyStmt, SwitchLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000343 SwitchStack.pop_back();
344
Chris Lattner3429a812007-08-23 05:46:52 +0000345 Expr *CondExpr = SS->getCond();
346 QualType CondType = CondExpr->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000347
Chris Lattner3429a812007-08-23 05:46:52 +0000348 if (!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();
Chris Lattner3429a812007-08-23 05:46:52 +0000351 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000352 }
Chris Lattner3429a812007-08-23 05:46:52 +0000353
354 // Get the bitwidth of the switched-on value before promotions. We must
355 // convert the integer case values to this width before comparison.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000356 unsigned CondWidth = static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattner3429a812007-08-23 05:46:52 +0000357 bool CondIsSigned = CondType->isSignedIntegerType();
358
359 // Accumulate all of the case values in a vector so that we can sort them
360 // and detect duplicates. This vector contains the APInt for the case after
361 // it has been converted to the condition type.
Chris Lattner0ab833c2007-08-23 18:29:20 +0000362 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
363 CaseValsTy CaseVals;
Chris Lattner3429a812007-08-23 05:46:52 +0000364
365 // Keep track of any GNU case ranges we see. The APSInt is the low value.
366 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
367
368 DefaultStmt *TheDefaultStmt = 0;
Chris Lattner4b009652007-07-25 00:24:17 +0000369
Chris Lattner1a4066d2007-08-23 06:23:56 +0000370 bool CaseListIsErroneous = false;
371
372 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
Chris Lattner4b009652007-07-25 00:24:17 +0000373 SC = SC->getNextSwitchCase()) {
Chris Lattner1a4066d2007-08-23 06:23:56 +0000374
Chris Lattner4b009652007-07-25 00:24:17 +0000375 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattner3429a812007-08-23 05:46:52 +0000376 if (TheDefaultStmt) {
377 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
Chris Lattner1336cab2008-11-23 23:12:31 +0000378 Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
Chris Lattner4b009652007-07-25 00:24:17 +0000379
Chris Lattner3429a812007-08-23 05:46:52 +0000380 // FIXME: Remove the default statement from the switch block so that
381 // we'll return a valid AST. This requires recursing down the
382 // AST and finding it, not something we are set up to do right now. For
383 // now, just lop the entire switch stmt out of the AST.
Chris Lattner1a4066d2007-08-23 06:23:56 +0000384 CaseListIsErroneous = true;
Chris Lattner4b009652007-07-25 00:24:17 +0000385 }
Chris Lattner3429a812007-08-23 05:46:52 +0000386 TheDefaultStmt = DS;
Chris Lattner4b009652007-07-25 00:24:17 +0000387
Chris Lattner3429a812007-08-23 05:46:52 +0000388 } else {
389 CaseStmt *CS = cast<CaseStmt>(SC);
390
391 // We already verified that the expression has a i-c-e value (C99
392 // 6.8.4.2p3) - get that value now.
Chris Lattnere992d6c2008-01-16 19:17:22 +0000393 Expr *Lo = CS->getLHS();
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000394 llvm::APSInt LoVal = Lo->EvaluateAsInt(Context);
Chris Lattner3429a812007-08-23 05:46:52 +0000395
396 // Convert the value to the same width/sign as the condition.
397 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
398 CS->getLHS()->getLocStart(),
399 diag::warn_case_value_overflow);
Chris Lattner4b009652007-07-25 00:24:17 +0000400
Chris Lattnere992d6c2008-01-16 19:17:22 +0000401 // If the LHS is not the same type as the condition, insert an implicit
402 // cast.
403 ImpCastExprToType(Lo, CondType);
404 CS->setLHS(Lo);
405
Chris Lattner1a4066d2007-08-23 06:23:56 +0000406 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Chris Lattner3429a812007-08-23 05:46:52 +0000407 if (CS->getRHS())
408 CaseRanges.push_back(std::make_pair(LoVal, CS));
Chris Lattner1a4066d2007-08-23 06:23:56 +0000409 else
410 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattner3429a812007-08-23 05:46:52 +0000411 }
412 }
413
Chris Lattner1a4066d2007-08-23 06:23:56 +0000414 // Sort all the scalar case values so we can easily detect duplicates.
Chris Lattner766afb82007-09-21 18:15:22 +0000415 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
Chris Lattner3429a812007-08-23 05:46:52 +0000416
Chris Lattner2b1b9a82007-08-23 14:29:07 +0000417 if (!CaseVals.empty()) {
418 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
419 if (CaseVals[i].first == CaseVals[i+1].first) {
420 // If we have a duplicate, report it.
421 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
Chris Lattner77d52da2008-11-20 06:06:08 +0000422 diag::err_duplicate_case) << CaseVals[i].first.toString(10);
Chris Lattner2b1b9a82007-08-23 14:29:07 +0000423 Diag(CaseVals[i].second->getLHS()->getLocStart(),
Chris Lattner1336cab2008-11-23 23:12:31 +0000424 diag::note_duplicate_case_prev);
Chris Lattner2b1b9a82007-08-23 14:29:07 +0000425 // FIXME: We really want to remove the bogus case stmt from the substmt,
426 // but we have no way to do this right now.
427 CaseListIsErroneous = true;
428 }
Chris Lattner1a4066d2007-08-23 06:23:56 +0000429 }
430 }
Chris Lattner3429a812007-08-23 05:46:52 +0000431
Chris Lattner1a4066d2007-08-23 06:23:56 +0000432 // Detect duplicate case ranges, which usually don't exist at all in the first
433 // place.
434 if (!CaseRanges.empty()) {
435 // Sort all the case ranges by their low value so we can easily detect
436 // overlaps between ranges.
Chris Lattner0ab833c2007-08-23 18:29:20 +0000437 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Chris Lattner1a4066d2007-08-23 06:23:56 +0000438
439 // Scan the ranges, computing the high values and removing empty ranges.
440 std::vector<llvm::APSInt> HiVals;
Chris Lattner7443e0f2007-08-23 17:48:14 +0000441 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattner1a4066d2007-08-23 06:23:56 +0000442 CaseStmt *CR = CaseRanges[i].second;
Chris Lattnere992d6c2008-01-16 19:17:22 +0000443 Expr *Hi = CR->getRHS();
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000444 llvm::APSInt HiVal = Hi->EvaluateAsInt(Context);
Chris Lattner1a4066d2007-08-23 06:23:56 +0000445
446 // Convert the value to the same width/sign as the condition.
447 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
448 CR->getRHS()->getLocStart(),
449 diag::warn_case_value_overflow);
450
Chris Lattnere992d6c2008-01-16 19:17:22 +0000451 // If the LHS is not the same type as the condition, insert an implicit
452 // cast.
453 ImpCastExprToType(Hi, CondType);
454 CR->setRHS(Hi);
455
Chris Lattner7443e0f2007-08-23 17:48:14 +0000456 // If the low value is bigger than the high value, the case is empty.
457 if (CaseRanges[i].first > HiVal) {
Chris Lattner9d2cf082008-11-19 05:27:50 +0000458 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range)
459 << SourceRange(CR->getLHS()->getLocStart(),
460 CR->getRHS()->getLocEnd());
Chris Lattner7443e0f2007-08-23 17:48:14 +0000461 CaseRanges.erase(CaseRanges.begin()+i);
462 --i, --e;
463 continue;
464 }
Chris Lattner1a4066d2007-08-23 06:23:56 +0000465 HiVals.push_back(HiVal);
466 }
467
468 // Rescan the ranges, looking for overlap with singleton values and other
Chris Lattner0ab833c2007-08-23 18:29:20 +0000469 // ranges. Since the range list is sorted, we only need to compare case
470 // ranges with their neighbors.
Chris Lattner1a4066d2007-08-23 06:23:56 +0000471 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattner0ab833c2007-08-23 18:29:20 +0000472 llvm::APSInt &CRLo = CaseRanges[i].first;
473 llvm::APSInt &CRHi = HiVals[i];
474 CaseStmt *CR = CaseRanges[i].second;
Chris Lattner1a4066d2007-08-23 06:23:56 +0000475
Chris Lattner0ab833c2007-08-23 18:29:20 +0000476 // Check to see whether the case range overlaps with any singleton cases.
477 CaseStmt *OverlapStmt = 0;
478 llvm::APSInt OverlapVal(32);
479
480 // Find the smallest value >= the lower bound. If I is in the case range,
481 // then we have overlap.
482 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
483 CaseVals.end(), CRLo,
484 CaseCompareFunctor());
485 if (I != CaseVals.end() && I->first < CRHi) {
486 OverlapVal = I->first; // Found overlap with scalar.
487 OverlapStmt = I->second;
488 }
489
490 // Find the smallest value bigger than the upper bound.
491 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
492 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
493 OverlapVal = (I-1)->first; // Found overlap with scalar.
494 OverlapStmt = (I-1)->second;
495 }
496
497 // Check to see if this case stmt overlaps with the subsequent case range.
498 if (i && CRLo <= HiVals[i-1]) {
499 OverlapVal = HiVals[i-1]; // Found overlap with range.
500 OverlapStmt = CaseRanges[i-1].second;
501 }
502
503 if (OverlapStmt) {
504 // If we have a duplicate, report it.
Chris Lattner77d52da2008-11-20 06:06:08 +0000505 Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case)
506 << OverlapVal.toString(10);
Chris Lattner0ab833c2007-08-23 18:29:20 +0000507 Diag(OverlapStmt->getLHS()->getLocStart(),
Chris Lattner1336cab2008-11-23 23:12:31 +0000508 diag::note_duplicate_case_prev);
Chris Lattner0ab833c2007-08-23 18:29:20 +0000509 // FIXME: We really want to remove the bogus case stmt from the substmt,
510 // but we have no way to do this right now.
511 CaseListIsErroneous = true;
512 }
Chris Lattner1a4066d2007-08-23 06:23:56 +0000513 }
514 }
Chris Lattner3429a812007-08-23 05:46:52 +0000515
Chris Lattner1a4066d2007-08-23 06:23:56 +0000516 // FIXME: If the case list was broken is some way, we don't have a good system
517 // to patch it up. Instead, just return the whole substmt as broken.
518 if (CaseListIsErroneous)
519 return true;
Chris Lattner3429a812007-08-23 05:46:52 +0000520
Chris Lattner4b009652007-07-25 00:24:17 +0000521 return SS;
522}
523
524Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000525Sema::ActOnWhileStmt(SourceLocation WhileLoc, ExprTy *Cond, StmtTy *Body) {
Chris Lattner4b009652007-07-25 00:24:17 +0000526 Expr *condExpr = (Expr *)Cond;
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000527 assert(condExpr && "ActOnWhileStmt(): missing expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000528
529 DefaultFunctionArrayConversion(condExpr);
530 QualType condType = condExpr->getType();
531
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000532 if (getLangOptions().CPlusPlus) {
533 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
534 return true;
535 } else if (!condType->isScalarType()) // C99 6.8.5p2
Chris Lattner77d52da2008-11-20 06:06:08 +0000536 return Diag(WhileLoc, diag::err_typecheck_statement_requires_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000537 << condType << condExpr->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +0000538
Steve Naroff5d2fff82007-08-31 23:28:33 +0000539 return new WhileStmt(condExpr, (Stmt*)Body, WhileLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000540}
541
542Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000543Sema::ActOnDoStmt(SourceLocation DoLoc, StmtTy *Body,
Chris Lattner4b009652007-07-25 00:24:17 +0000544 SourceLocation WhileLoc, ExprTy *Cond) {
545 Expr *condExpr = (Expr *)Cond;
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000546 assert(condExpr && "ActOnDoStmt(): missing expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000547
548 DefaultFunctionArrayConversion(condExpr);
549 QualType condType = condExpr->getType();
550
Argiris Kirtzidisc362d382008-09-11 05:16:22 +0000551 if (getLangOptions().CPlusPlus) {
552 if (CheckCXXBooleanCondition(condExpr)) // C++ 6.4p4
553 return true;
554 } else if (!condType->isScalarType()) // C99 6.8.5p2
Chris Lattner77d52da2008-11-20 06:06:08 +0000555 return Diag(DoLoc, diag::err_typecheck_statement_requires_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000556 << condType << condExpr->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +0000557
Steve Naroff5d2fff82007-08-31 23:28:33 +0000558 return new DoStmt((Stmt*)Body, condExpr, DoLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000559}
560
561Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000562Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
Chris Lattner3332fbd2007-08-28 04:55:47 +0000563 StmtTy *first, ExprTy *second, ExprTy *third,
564 SourceLocation RParenLoc, StmtTy *body) {
565 Stmt *First = static_cast<Stmt*>(first);
566 Expr *Second = static_cast<Expr*>(second);
567 Expr *Third = static_cast<Expr*>(third);
568 Stmt *Body = static_cast<Stmt*>(body);
569
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000570 if (!getLangOptions().CPlusPlus) {
571 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000572 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
573 // declare identifiers for objects having storage class 'auto' or
574 // 'register'.
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000575 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
576 DI!=DE; ++DI) {
577 VarDecl *VD = dyn_cast<VarDecl>(*DI);
578 if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
579 VD = 0;
580 if (VD == 0)
581 Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
582 // FIXME: mark decl erroneous!
583 }
Chris Lattner06611052007-08-28 05:03:08 +0000584 }
Chris Lattner4b009652007-07-25 00:24:17 +0000585 }
586 if (Second) {
Chris Lattner3332fbd2007-08-28 04:55:47 +0000587 DefaultFunctionArrayConversion(Second);
588 QualType SecondType = Second->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000589
Argiris Kirtzidis810c0f72008-09-10 02:17:11 +0000590 if (getLangOptions().CPlusPlus) {
591 if (CheckCXXBooleanCondition(Second)) // C++ 6.4p4
592 return true;
593 } else if (!SecondType->isScalarType()) // C99 6.8.5p2
Chris Lattner77d52da2008-11-20 06:06:08 +0000594 return Diag(ForLoc, diag::err_typecheck_statement_requires_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000595 << SecondType << Second->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +0000596 }
Steve Naroff5d2fff82007-08-31 23:28:33 +0000597 return new ForStmt(First, Second, Third, Body, ForLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000598}
599
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000600Action::StmtResult
Fariborz Jahaniandf2b0952008-01-10 00:24:29 +0000601Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000602 SourceLocation LParenLoc,
603 StmtTy *first, ExprTy *second,
604 SourceLocation RParenLoc, StmtTy *body) {
605 Stmt *First = static_cast<Stmt*>(first);
606 Expr *Second = static_cast<Expr*>(second);
607 Stmt *Body = static_cast<Stmt*>(body);
Fariborz Jahanian6833b3b2008-01-10 20:33:58 +0000608 if (First) {
609 QualType FirstType;
610 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
Ted Kremenek779e1c22008-10-06 20:58:11 +0000611 if (!DS->hasSolitaryDecl())
612 return Diag((*DS->decl_begin())->getLocation(),
613 diag::err_toomany_element_decls);
614
615 ScopedDecl *D = DS->getSolitaryDecl();
616 FirstType = cast<ValueDecl>(D)->getType();
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000617 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
618 // declare identifiers for objects having storage class 'auto' or
619 // 'register'.
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000620 VarDecl *VD = cast<VarDecl>(D);
621 if (VD->isBlockVarDecl() && !VD->hasLocalStorage())
622 return Diag(VD->getLocation(), diag::err_non_variable_decl_in_for);
Anders Carlsson8d0bcb02008-08-25 18:16:36 +0000623 } else {
624 Expr::isLvalueResult lval = cast<Expr>(First)->isLvalue(Context);
625
626 if (lval != Expr::LV_Valid)
Chris Lattner9d2cf082008-11-19 05:27:50 +0000627 return Diag(First->getLocStart(), diag::err_selector_element_not_lvalue)
628 << First->getSourceRange();
Anders Carlsson8d0bcb02008-08-25 18:16:36 +0000629
630 FirstType = static_cast<Expr*>(first)->getType();
631 }
Ted Kremenek118930e2008-07-24 23:58:27 +0000632 if (!Context.isObjCObjectPointerType(FirstType))
Chris Lattner9d2cf082008-11-19 05:27:50 +0000633 Diag(ForLoc, diag::err_selector_element_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000634 << FirstType << First->getSourceRange();
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000635 }
636 if (Second) {
637 DefaultFunctionArrayConversion(Second);
638 QualType SecondType = Second->getType();
Ted Kremenek118930e2008-07-24 23:58:27 +0000639 if (!Context.isObjCObjectPointerType(SecondType))
Chris Lattner9d2cf082008-11-19 05:27:50 +0000640 Diag(ForLoc, diag::err_collection_expr_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000641 << SecondType << Second->getSourceRange();
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000642 }
Fariborz Jahaniandf2b0952008-01-10 00:24:29 +0000643 return new ObjCForCollectionStmt(First, Second, Body, ForLoc, RParenLoc);
Fariborz Jahanian1300bc72008-01-03 17:55:25 +0000644}
Chris Lattner4b009652007-07-25 00:24:17 +0000645
646Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000647Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000648 IdentifierInfo *LabelII) {
Steve Naroff52a81c02008-09-03 18:15:37 +0000649 // If we are in a block, reject all gotos for now.
650 if (CurBlock)
651 return Diag(GotoLoc, diag::err_goto_in_block);
652
Chris Lattner4b009652007-07-25 00:24:17 +0000653 // Look up the record for this label identifier.
654 LabelStmt *&LabelDecl = LabelMap[LabelII];
655
656 // If we haven't seen this label yet, create a forward reference.
657 if (LabelDecl == 0)
658 LabelDecl = new LabelStmt(LabelLoc, LabelII, 0);
659
Ted Kremeneka65ad462007-09-06 17:11:52 +0000660 return new GotoStmt(LabelDecl, GotoLoc, LabelLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000661}
662
663Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000664Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc,SourceLocation StarLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000665 ExprTy *DestExp) {
666 // FIXME: Verify that the operand is convertible to void*.
667
668 return new IndirectGotoStmt((Expr*)DestExp);
669}
670
671Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000672Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Chris Lattner4b009652007-07-25 00:24:17 +0000673 Scope *S = CurScope->getContinueParent();
674 if (!S) {
675 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
676 Diag(ContinueLoc, diag::err_continue_not_in_loop);
677 return true;
678 }
679
Steve Naroffc32a20d2007-08-31 23:49:30 +0000680 return new ContinueStmt(ContinueLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000681}
682
683Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000684Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Chris Lattner4b009652007-07-25 00:24:17 +0000685 Scope *S = CurScope->getBreakParent();
686 if (!S) {
687 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
688 Diag(BreakLoc, diag::err_break_not_in_loop_or_switch);
689 return true;
690 }
691
Steve Naroffc32a20d2007-08-31 23:49:30 +0000692 return new BreakStmt(BreakLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000693}
694
Douglas Gregor81c29152008-10-29 00:13:59 +0000695/// ActOnBlockReturnStmt - Utility routine to figure out block's return type.
Steve Naroff52a81c02008-09-03 18:15:37 +0000696///
697Action::StmtResult
698Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
699
700 // If this is the first return we've seen in the block, infer the type of
701 // the block from it.
702 if (CurBlock->ReturnType == 0) {
Steve Naroff503996b2008-09-16 22:25:10 +0000703 if (RetValExp) {
Steve Naroffe2b66a82008-09-24 22:26:48 +0000704 // Don't call UsualUnaryConversions(), since we don't want to do
705 // integer promotions here.
706 DefaultFunctionArrayConversion(RetValExp);
Steve Naroff52a81c02008-09-03 18:15:37 +0000707 CurBlock->ReturnType = RetValExp->getType().getTypePtr();
Steve Naroff503996b2008-09-16 22:25:10 +0000708 } else
Steve Naroff52a81c02008-09-03 18:15:37 +0000709 CurBlock->ReturnType = Context.VoidTy.getTypePtr();
710 return new ReturnStmt(ReturnLoc, RetValExp);
711 }
712
713 // Otherwise, verify that this result type matches the previous one. We are
714 // pickier with blocks than for normal functions because we don't have GCC
715 // compatibility to worry about here.
716 if (CurBlock->ReturnType->isVoidType()) {
717 if (RetValExp) {
718 Diag(ReturnLoc, diag::err_return_block_has_expr);
719 delete RetValExp;
720 RetValExp = 0;
721 }
722 return new ReturnStmt(ReturnLoc, RetValExp);
723 }
724
725 if (!RetValExp) {
726 Diag(ReturnLoc, diag::err_block_return_missing_expr);
727 return true;
728 }
729
730 // we have a non-void block with an expression, continue checking
731 QualType RetValType = RetValExp->getType();
732
733 // For now, restrict multiple return statements in a block to have
734 // strict compatible types only.
735 QualType BlockQT = QualType(CurBlock->ReturnType, 0);
736 if (Context.getCanonicalType(BlockQT).getTypePtr()
737 != Context.getCanonicalType(RetValType).getTypePtr()) {
738 DiagnoseAssignmentResult(Incompatible, ReturnLoc, BlockQT,
739 RetValType, RetValExp, "returning");
740 return true;
741 }
742
743 if (RetValExp) CheckReturnStackAddr(RetValExp, BlockQT, ReturnLoc);
744
745 return new ReturnStmt(ReturnLoc, (Expr*)RetValExp);
746}
Chris Lattner4b009652007-07-25 00:24:17 +0000747
748Action::StmtResult
Steve Naroff5cbb02f2007-09-16 14:56:35 +0000749Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprTy *rex) {
Chris Lattner4b009652007-07-25 00:24:17 +0000750 Expr *RetValExp = static_cast<Expr *>(rex);
Steve Naroff52a81c02008-09-03 18:15:37 +0000751 if (CurBlock)
752 return ActOnBlockReturnStmt(ReturnLoc, RetValExp);
Chris Lattnere5cb5862008-12-04 23:50:19 +0000753
754 QualType FnRetType;
755 if (FunctionDecl *FD = getCurFunctionDecl())
756 FnRetType = FD->getResultType();
757 else
758 FnRetType = getCurMethodDecl()->getResultType();
Chris Lattner4b009652007-07-25 00:24:17 +0000759
Chris Lattner005ed752008-01-04 18:04:52 +0000760 if (FnRetType->isVoidType()) {
Chris Lattner65cae292008-11-19 08:23:25 +0000761 if (RetValExp) {// C99 6.8.6.4p1 (ext_ since GCC warns)
762 if (FunctionDecl *FD = getCurFunctionDecl())
763 Diag(ReturnLoc, diag::ext_return_has_expr)
Chris Lattnerb1753422008-11-23 21:45:46 +0000764 << FD->getIdentifier() << 0/*function*/<< RetValExp->getSourceRange();
Chris Lattner65cae292008-11-19 08:23:25 +0000765 else
766 Diag(ReturnLoc, diag::ext_return_has_expr)
Chris Lattnerb1753422008-11-23 21:45:46 +0000767 << getCurMethodDecl()->getDeclName() << 1 /*method*/
Chris Lattner65cae292008-11-19 08:23:25 +0000768 << RetValExp->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +0000769 }
Chris Lattner65cae292008-11-19 08:23:25 +0000770 return new ReturnStmt(ReturnLoc, RetValExp);
Chris Lattner4b009652007-07-25 00:24:17 +0000771 }
Chris Lattner65cae292008-11-19 08:23:25 +0000772
773 if (!RetValExp) {
774 unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4
775 // C99 6.8.6.4p1 (ext_ since GCC warns)
776 if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr;
777
778 if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattnerb1753422008-11-23 21:45:46 +0000779 Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/;
Chris Lattner65cae292008-11-19 08:23:25 +0000780 else
Chris Lattnerb1753422008-11-23 21:45:46 +0000781 Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
Chris Lattner65cae292008-11-19 08:23:25 +0000782 return new ReturnStmt(ReturnLoc, (Expr*)0);
783 }
784
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000785 if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) {
786 // we have a non-void function with an expression, continue checking
787 QualType RetValType = RetValExp->getType();
788
789 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
790 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
791 // function return.
792
793 // In C++ the return statement is handled via a copy initialization.
794 // the C version of which boils down to
795 // CheckSingleAssignmentConstraints.
796 if (PerformCopyInitialization(RetValExp, FnRetType, "returning"))
797 return true;
Ted Kremenek45925ab2007-08-17 16:46:58 +0000798
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000799 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
800 }
801
Steve Naroffc32a20d2007-08-31 23:49:30 +0000802 return new ReturnStmt(ReturnLoc, (Expr*)RetValExp);
Chris Lattner4b009652007-07-25 00:24:17 +0000803}
804
Anders Carlsson076c1112007-11-20 19:21:03 +0000805Sema::StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
Chris Lattnerb1753422008-11-23 21:45:46 +0000806 bool IsSimple,
Anders Carlsson759f45d2007-11-23 23:12:25 +0000807 bool IsVolatile,
Anders Carlsson965d5202007-11-22 01:36:19 +0000808 unsigned NumOutputs,
809 unsigned NumInputs,
810 std::string *Names,
Chris Lattnerb052a832008-08-18 19:55:17 +0000811 ExprTy **constraints,
812 ExprTy **exprs,
Chris Lattner84418022008-07-23 06:46:56 +0000813 ExprTy *asmString,
Anders Carlsson965d5202007-11-22 01:36:19 +0000814 unsigned NumClobbers,
Chris Lattnerb052a832008-08-18 19:55:17 +0000815 ExprTy **clobbers,
Chris Lattner8a40a832007-10-29 04:04:16 +0000816 SourceLocation RParenLoc) {
Chris Lattnerb052a832008-08-18 19:55:17 +0000817 StringLiteral **Constraints = reinterpret_cast<StringLiteral**>(constraints);
818 Expr **Exprs = reinterpret_cast<Expr **>(exprs);
Chris Lattner84418022008-07-23 06:46:56 +0000819 StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString);
Chris Lattnerb052a832008-08-18 19:55:17 +0000820 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers);
821
822 // The parser verifies that there is a string literal here.
Chris Lattner84418022008-07-23 06:46:56 +0000823 if (AsmString->isWide())
824 // FIXME: We currently leak memory here.
Chris Lattner9d2cf082008-11-19 05:27:50 +0000825 return Diag(AsmString->getLocStart(), diag::err_asm_wide_character)
826 << AsmString->getSourceRange();
Chris Lattner84418022008-07-23 06:46:56 +0000827
828
Chris Lattnerb052a832008-08-18 19:55:17 +0000829 for (unsigned i = 0; i != NumOutputs; i++) {
830 StringLiteral *Literal = Constraints[i];
Chris Lattner84418022008-07-23 06:46:56 +0000831 if (Literal->isWide())
832 // FIXME: We currently leak memory here.
Chris Lattner9d2cf082008-11-19 05:27:50 +0000833 return Diag(Literal->getLocStart(), diag::err_asm_wide_character)
834 << Literal->getSourceRange();
Chris Lattner84418022008-07-23 06:46:56 +0000835
Anders Carlsson4ce42302007-11-27 04:11:28 +0000836 std::string OutputConstraint(Literal->getStrData(),
837 Literal->getByteLength());
838
839 TargetInfo::ConstraintInfo info;
Chris Lattner84418022008-07-23 06:46:56 +0000840 if (!Context.Target.validateOutputConstraint(OutputConstraint.c_str(),info))
Anders Carlsson4ce42302007-11-27 04:11:28 +0000841 // FIXME: We currently leak memory here.
Chris Lattner84418022008-07-23 06:46:56 +0000842 return Diag(Literal->getLocStart(),
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000843 diag::err_asm_invalid_output_constraint) << OutputConstraint;
Anders Carlsson4ce42302007-11-27 04:11:28 +0000844
845 // Check that the output exprs are valid lvalues.
Chris Lattnerb052a832008-08-18 19:55:17 +0000846 ParenExpr *OutputExpr = cast<ParenExpr>(Exprs[i]);
Chris Lattner25168a52008-07-26 21:30:36 +0000847 Expr::isLvalueResult Result = OutputExpr->isLvalue(Context);
Anders Carlssonb4487a82007-11-23 19:43:50 +0000848 if (Result != Expr::LV_Valid) {
Anders Carlssonb4487a82007-11-23 19:43:50 +0000849 // FIXME: We currently leak memory here.
Chris Lattnerb052a832008-08-18 19:55:17 +0000850 return Diag(OutputExpr->getSubExpr()->getLocStart(),
Chris Lattner9d2cf082008-11-19 05:27:50 +0000851 diag::err_asm_invalid_lvalue_in_output)
852 << OutputExpr->getSubExpr()->getSourceRange();
Anders Carlssonb4487a82007-11-23 19:43:50 +0000853 }
854 }
855
Anders Carlssonb4487a82007-11-23 19:43:50 +0000856 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Chris Lattnerb052a832008-08-18 19:55:17 +0000857 StringLiteral *Literal = Constraints[i];
Chris Lattner84418022008-07-23 06:46:56 +0000858 if (Literal->isWide())
859 // FIXME: We currently leak memory here.
Chris Lattner9d2cf082008-11-19 05:27:50 +0000860 return Diag(Literal->getLocStart(), diag::err_asm_wide_character)
861 << Literal->getSourceRange();
Anders Carlssonb4487a82007-11-23 19:43:50 +0000862
Anders Carlsson4ce42302007-11-27 04:11:28 +0000863 std::string InputConstraint(Literal->getStrData(),
864 Literal->getByteLength());
865
866 TargetInfo::ConstraintInfo info;
867 if (!Context.Target.validateInputConstraint(InputConstraint.c_str(),
Chris Lattnerb052a832008-08-18 19:55:17 +0000868 NumOutputs, info)) {
Anders Carlsson4ce42302007-11-27 04:11:28 +0000869 // FIXME: We currently leak memory here.
Chris Lattner84418022008-07-23 06:46:56 +0000870 return Diag(Literal->getLocStart(),
Chris Lattner9d2cf082008-11-19 05:27:50 +0000871 diag::err_asm_invalid_input_constraint) << InputConstraint;
Anders Carlsson4ce42302007-11-27 04:11:28 +0000872 }
873
874 // Check that the input exprs aren't of type void.
Chris Lattnerb052a832008-08-18 19:55:17 +0000875 ParenExpr *InputExpr = cast<ParenExpr>(Exprs[i]);
Anders Carlssonb4487a82007-11-23 19:43:50 +0000876 if (InputExpr->getType()->isVoidType()) {
Anders Carlssonb4487a82007-11-23 19:43:50 +0000877
Anders Carlssonb4487a82007-11-23 19:43:50 +0000878 // FIXME: We currently leak memory here.
Chris Lattnerb052a832008-08-18 19:55:17 +0000879 return Diag(InputExpr->getSubExpr()->getLocStart(),
Chris Lattner8ba580c2008-11-19 05:08:23 +0000880 diag::err_asm_invalid_type_in_input)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000881 << InputExpr->getType() << InputConstraint
Chris Lattner8ba580c2008-11-19 05:08:23 +0000882 << InputExpr->getSubExpr()->getSourceRange();
Anders Carlssonb4487a82007-11-23 19:43:50 +0000883 }
884 }
Anders Carlsson965d5202007-11-22 01:36:19 +0000885
Anders Carlsson49dadd62007-11-25 00:25:21 +0000886 // Check that the clobbers are valid.
Chris Lattnerb052a832008-08-18 19:55:17 +0000887 for (unsigned i = 0; i != NumClobbers; i++) {
888 StringLiteral *Literal = Clobbers[i];
Chris Lattner84418022008-07-23 06:46:56 +0000889 if (Literal->isWide())
890 // FIXME: We currently leak memory here.
Chris Lattner9d2cf082008-11-19 05:27:50 +0000891 return Diag(Literal->getLocStart(), diag::err_asm_wide_character)
892 << Literal->getSourceRange();
Anders Carlsson49dadd62007-11-25 00:25:21 +0000893
894 llvm::SmallString<16> Clobber(Literal->getStrData(),
895 Literal->getStrData() +
896 Literal->getByteLength());
897
Chris Lattner84418022008-07-23 06:46:56 +0000898 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str()))
Anders Carlsson49dadd62007-11-25 00:25:21 +0000899 // FIXME: We currently leak memory here.
Chris Lattner84418022008-07-23 06:46:56 +0000900 return Diag(Literal->getLocStart(),
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000901 diag::err_asm_unknown_register_name) << Clobber.c_str();
Anders Carlsson49dadd62007-11-25 00:25:21 +0000902 }
903
Chris Lattnerb052a832008-08-18 19:55:17 +0000904 return new AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
905 Names, Constraints, Exprs, AsmString, NumClobbers,
906 Clobbers, RParenLoc);
Chris Lattner8a40a832007-10-29 04:04:16 +0000907}
Fariborz Jahanian06798362007-11-01 23:59:59 +0000908
909Action::StmtResult
Ted Kremenek42730c52008-01-07 19:49:32 +0000910Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Fariborz Jahanian06798362007-11-01 23:59:59 +0000911 SourceLocation RParen, StmtTy *Parm,
912 StmtTy *Body, StmtTy *CatchList) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000913 ObjCAtCatchStmt *CS = new ObjCAtCatchStmt(AtLoc, RParen,
Fariborz Jahanian06798362007-11-01 23:59:59 +0000914 static_cast<Stmt*>(Parm), static_cast<Stmt*>(Body),
915 static_cast<Stmt*>(CatchList));
916 return CatchList ? CatchList : CS;
917}
918
Fariborz Jahaniande3abf82007-11-02 00:18:53 +0000919Action::StmtResult
Ted Kremenek42730c52008-01-07 19:49:32 +0000920Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtTy *Body) {
921 ObjCAtFinallyStmt *FS = new ObjCAtFinallyStmt(AtLoc,
Fariborz Jahaniande3abf82007-11-02 00:18:53 +0000922 static_cast<Stmt*>(Body));
923 return FS;
924}
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +0000925
926Action::StmtResult
Ted Kremenek42730c52008-01-07 19:49:32 +0000927Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +0000928 StmtTy *Try, StmtTy *Catch, StmtTy *Finally) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000929 ObjCAtTryStmt *TS = new ObjCAtTryStmt(AtLoc, static_cast<Stmt*>(Try),
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +0000930 static_cast<Stmt*>(Catch),
931 static_cast<Stmt*>(Finally));
932 return TS;
933}
934
Fariborz Jahanian08df2c62007-11-07 02:00:49 +0000935Action::StmtResult
Ted Kremenek42730c52008-01-07 19:49:32 +0000936Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, StmtTy *Throw) {
937 ObjCAtThrowStmt *TS = new ObjCAtThrowStmt(AtLoc, static_cast<Stmt*>(Throw));
Fariborz Jahanian08df2c62007-11-07 02:00:49 +0000938 return TS;
939}
Fariborz Jahanianb8bf6072007-11-02 15:39:31 +0000940
Fariborz Jahanianc9fd4d12008-01-29 19:14:59 +0000941Action::StmtResult
942Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprTy *SynchExpr,
943 StmtTy *SynchBody) {
944 ObjCAtSynchronizedStmt *SS = new ObjCAtSynchronizedStmt(AtLoc,
Fariborz Jahanian499bf412008-01-29 22:59:37 +0000945 static_cast<Stmt*>(SynchExpr), static_cast<Stmt*>(SynchBody));
Fariborz Jahanianc9fd4d12008-01-29 19:14:59 +0000946 return SS;
947}