blob: 7f5d038e71e7eb4967a52030deeb1a5b675b29e1 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for statements.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Chris Lattnerf4021e72007-08-23 05:46:52 +000015#include "clang/AST/ASTContext.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/Expr.h"
Chris Lattnerf4021e72007-08-23 05:46:52 +000017#include "clang/AST/Stmt.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/Parse/Scope.h"
Anders Carlsson6fa90862007-11-25 00:25:21 +000019#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Basic/Diagnostic.h"
21#include "clang/Basic/LangOptions.h"
Anders Carlsson6fa90862007-11-25 00:25:21 +000022#include "llvm/ADT/SmallString.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
Steve Naroff1b273c42007-09-16 14:56:35 +000025Sema::StmtResult Sema::ActOnExprStmt(ExprTy *expr) {
Reid Spencer5f016e22007-07-11 17:01:13 +000026 Expr *E = static_cast<Expr*>(expr);
Steve Naroff1b273c42007-09-16 14:56:35 +000027 assert(E && "ActOnExprStmt(): missing expression");
Reid Spencer5f016e22007-07-11 17:01:13 +000028 return E;
29}
30
31
Steve Naroff1b273c42007-09-16 14:56:35 +000032Sema::StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) {
Reid Spencer5f016e22007-07-11 17:01:13 +000033 return new NullStmt(SemiLoc);
34}
35
Steve Naroff1b273c42007-09-16 14:56:35 +000036Sema::StmtResult Sema::ActOnDeclStmt(DeclTy *decl) {
Steve Naroff8e74c932007-09-13 21:41:19 +000037 if (decl) {
38 ScopedDecl *SD = dyn_cast<ScopedDecl>(static_cast<Decl *>(decl));
Steve Naroff1b273c42007-09-16 14:56:35 +000039 assert(SD && "Sema::ActOnDeclStmt(): expected ScopedDecl");
Steve Naroff8e74c932007-09-13 21:41:19 +000040 return new DeclStmt(SD);
41 } else
Reid Spencer5f016e22007-07-11 17:01:13 +000042 return true; // error
43}
44
45Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +000046Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
Chris Lattner98414c12007-08-31 21:49:55 +000047 StmtTy **elts, unsigned NumElts, bool isStmtExpr) {
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000048 Stmt **Elts = reinterpret_cast<Stmt**>(elts);
49 // If we're in C89 mode, check that we don't have any decls after stmts. If
50 // so, emit an extension diagnostic.
51 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) {
52 // Note that __extension__ can be around a decl.
53 unsigned i = 0;
54 // Skip over all declarations.
55 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
56 /*empty*/;
57
58 // We found the end of the list or a statement. Scan for another declstmt.
59 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
60 /*empty*/;
61
62 if (i != NumElts) {
Steve Naroff8e74c932007-09-13 21:41:19 +000063 ScopedDecl *D = cast<DeclStmt>(Elts[i])->getDecl();
Chris Lattnerc30ebfb2007-08-27 04:29:41 +000064 Diag(D->getLocation(), diag::ext_mixed_decls_code);
65 }
66 }
Chris Lattner98414c12007-08-31 21:49:55 +000067 // Warn about unused expressions in statements.
68 for (unsigned i = 0; i != NumElts; ++i) {
69 Expr *E = dyn_cast<Expr>(Elts[i]);
70 if (!E) continue;
71
72 // Warn about expressions with unused results.
73 if (E->hasLocalSideEffect() || E->getType()->isVoidType())
74 continue;
75
76 // The last expr in a stmt expr really is used.
77 if (isStmtExpr && i == NumElts-1)
78 continue;
79
80 /// DiagnoseDeadExpr - This expression is side-effect free and evaluated in
81 /// a context where the result is unused. Emit a diagnostic to warn about
82 /// this.
83 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E))
84 Diag(BO->getOperatorLoc(), diag::warn_unused_expr,
85 BO->getLHS()->getSourceRange(), BO->getRHS()->getSourceRange());
86 else if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
87 Diag(UO->getOperatorLoc(), diag::warn_unused_expr,
88 UO->getSubExpr()->getSourceRange());
89 else
90 Diag(E->getExprLoc(), diag::warn_unused_expr, E->getSourceRange());
91 }
92
Steve Naroffb5a69582007-08-31 23:28:33 +000093 return new CompoundStmt(Elts, NumElts, L, R);
Reid Spencer5f016e22007-07-11 17:01:13 +000094}
95
96Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +000097Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprTy *lhsval,
Chris Lattner6c36be52007-07-18 02:28:47 +000098 SourceLocation DotDotDotLoc, ExprTy *rhsval,
Chris Lattner0fa152e2007-07-21 03:00:26 +000099 SourceLocation ColonLoc, StmtTy *subStmt) {
100 Stmt *SubStmt = static_cast<Stmt*>(subStmt);
Chris Lattner8a87e572007-07-23 17:05:23 +0000101 Expr *LHSVal = ((Expr *)lhsval), *RHSVal = ((Expr *)rhsval);
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 assert((LHSVal != 0) && "missing expression in case statement");
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000103
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 SourceLocation ExpLoc;
105 // C99 6.8.4.2p3: The expression shall be an integer constant.
Chris Lattner0fa152e2007-07-21 03:00:26 +0000106 if (!LHSVal->isIntegerConstantExpr(Context, &ExpLoc)) {
107 Diag(ExpLoc, diag::err_case_label_not_integer_constant_expr,
108 LHSVal->getSourceRange());
109 return SubStmt;
110 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000111
Chris Lattner6c36be52007-07-18 02:28:47 +0000112 // GCC extension: The expression shall be an integer constant.
Chris Lattner0fa152e2007-07-21 03:00:26 +0000113 if (RHSVal && !RHSVal->isIntegerConstantExpr(Context, &ExpLoc)) {
114 Diag(ExpLoc, diag::err_case_label_not_integer_constant_expr,
115 RHSVal->getSourceRange());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000116 RHSVal = 0; // Recover by just forgetting about it.
Chris Lattner6c36be52007-07-18 02:28:47 +0000117 }
Chris Lattner8a87e572007-07-23 17:05:23 +0000118
119 if (SwitchStack.empty()) {
120 Diag(CaseLoc, diag::err_case_not_in_switch);
121 return SubStmt;
122 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000123
Steve Naroffb5a69582007-08-31 23:28:33 +0000124 CaseStmt *CS = new CaseStmt(LHSVal, RHSVal, SubStmt, CaseLoc);
Chris Lattner8a87e572007-07-23 17:05:23 +0000125 SwitchStack.back()->addSwitchCase(CS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000126 return CS;
Reid Spencer5f016e22007-07-11 17:01:13 +0000127}
128
129Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000130Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
Chris Lattner0fa152e2007-07-21 03:00:26 +0000131 StmtTy *subStmt, Scope *CurScope) {
132 Stmt *SubStmt = static_cast<Stmt*>(subStmt);
Chris Lattner6c36be52007-07-18 02:28:47 +0000133
Chris Lattner8a87e572007-07-23 17:05:23 +0000134 if (SwitchStack.empty()) {
Chris Lattner0fa152e2007-07-21 03:00:26 +0000135 Diag(DefaultLoc, diag::err_default_not_in_switch);
136 return SubStmt;
137 }
138
Chris Lattner0fa152e2007-07-21 03:00:26 +0000139 DefaultStmt *DS = new DefaultStmt(DefaultLoc, SubStmt);
Chris Lattner8a87e572007-07-23 17:05:23 +0000140 SwitchStack.back()->addSwitchCase(DS);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000141
Chris Lattner6c36be52007-07-18 02:28:47 +0000142 return DS;
Reid Spencer5f016e22007-07-11 17:01:13 +0000143}
144
145Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000146Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II,
Chris Lattner0fa152e2007-07-21 03:00:26 +0000147 SourceLocation ColonLoc, StmtTy *subStmt) {
148 Stmt *SubStmt = static_cast<Stmt*>(subStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 // Look up the record for this label identifier.
150 LabelStmt *&LabelDecl = LabelMap[II];
151
152 // If not forward referenced or defined already, just create a new LabelStmt.
153 if (LabelDecl == 0)
Chris Lattner0fa152e2007-07-21 03:00:26 +0000154 return LabelDecl = new LabelStmt(IdentLoc, II, SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000155
156 assert(LabelDecl->getID() == II && "Label mismatch!");
157
158 // Otherwise, this label was either forward reference or multiply defined. If
159 // multiply defined, reject it now.
160 if (LabelDecl->getSubStmt()) {
161 Diag(IdentLoc, diag::err_redefinition_of_label, LabelDecl->getName());
162 Diag(LabelDecl->getIdentLoc(), diag::err_previous_definition);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000163 return SubStmt;
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 }
165
166 // Otherwise, this label was forward declared, and we just found its real
167 // definition. Fill in the forward definition and return it.
168 LabelDecl->setIdentLoc(IdentLoc);
Chris Lattner0fa152e2007-07-21 03:00:26 +0000169 LabelDecl->setSubStmt(SubStmt);
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 return LabelDecl;
171}
172
173Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000174Sema::ActOnIfStmt(SourceLocation IfLoc, ExprTy *CondVal,
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 StmtTy *ThenVal, SourceLocation ElseLoc,
176 StmtTy *ElseVal) {
177 Expr *condExpr = (Expr *)CondVal;
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000178 Stmt *thenStmt = (Stmt *)ThenVal;
179
Steve Naroff1b273c42007-09-16 14:56:35 +0000180 assert(condExpr && "ActOnIfStmt(): missing expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000181
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000182 DefaultFunctionArrayConversion(condExpr);
183 QualType condType = condExpr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000184
185 if (!condType->isScalarType()) // C99 6.8.4.1p1
186 return Diag(IfLoc, diag::err_typecheck_statement_requires_scalar,
187 condType.getAsString(), condExpr->getSourceRange());
188
Anders Carlsson2d85f8b2007-10-10 20:50:11 +0000189 // Warn if the if block has a null body without an else value.
190 // this helps prevent bugs due to typos, such as
191 // if (condition);
192 // do_stuff();
193 if (!ElseVal) {
194 if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt))
195 Diag(stmt->getSemiLoc(), diag::warn_empty_if_body);
196 }
197
198 return new IfStmt(IfLoc, condExpr, thenStmt, (Stmt*)ElseVal);
Reid Spencer5f016e22007-07-11 17:01:13 +0000199}
200
201Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000202Sema::ActOnStartOfSwitchStmt(ExprTy *cond) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000203 Expr *Cond = static_cast<Expr*>(cond);
204
205 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
206 UsualUnaryConversions(Cond);
207
208 SwitchStmt *SS = new SwitchStmt(Cond);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000209 SwitchStack.push_back(SS);
210 return SS;
211}
Chris Lattner6c36be52007-07-18 02:28:47 +0000212
Chris Lattnerf4021e72007-08-23 05:46:52 +0000213/// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have
214/// the specified width and sign. If an overflow occurs, detect it and emit
215/// the specified diagnostic.
216void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val,
217 unsigned NewWidth, bool NewSign,
218 SourceLocation Loc,
219 unsigned DiagID) {
220 // Perform a conversion to the promoted condition type if needed.
221 if (NewWidth > Val.getBitWidth()) {
222 // If this is an extension, just do it.
223 llvm::APSInt OldVal(Val);
224 Val.extend(NewWidth);
225
226 // If the input was signed and negative and the output is unsigned,
227 // warn.
228 if (!NewSign && OldVal.isSigned() && OldVal.isNegative())
229 Diag(Loc, DiagID, OldVal.toString(), Val.toString());
230
231 Val.setIsSigned(NewSign);
232 } else if (NewWidth < Val.getBitWidth()) {
233 // If this is a truncation, check for overflow.
234 llvm::APSInt ConvVal(Val);
235 ConvVal.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000236 ConvVal.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000237 ConvVal.extend(Val.getBitWidth());
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000238 ConvVal.setIsSigned(Val.isSigned());
Chris Lattnerf4021e72007-08-23 05:46:52 +0000239 if (ConvVal != Val)
240 Diag(Loc, DiagID, Val.toString(), ConvVal.toString());
241
242 // Regardless of whether a diagnostic was emitted, really do the
243 // truncation.
244 Val.trunc(NewWidth);
Chris Lattnerb2137ae2007-08-23 22:08:35 +0000245 Val.setIsSigned(NewSign);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000246 } else if (NewSign != Val.isSigned()) {
247 // Convert the sign to match the sign of the condition. This can cause
248 // overflow as well: unsigned(INTMIN)
249 llvm::APSInt OldVal(Val);
250 Val.setIsSigned(NewSign);
251
252 if (Val.isNegative()) // Sign bit changes meaning.
253 Diag(Loc, DiagID, OldVal.toString(), Val.toString());
254 }
255}
256
Chris Lattner0471f5b2007-08-23 18:29:20 +0000257namespace {
258 struct CaseCompareFunctor {
259 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
260 const llvm::APSInt &RHS) {
261 return LHS.first < RHS;
262 }
Chris Lattner0e85a272007-09-03 18:31:57 +0000263 bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
264 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
265 return LHS.first < RHS.first;
266 }
Chris Lattner0471f5b2007-08-23 18:29:20 +0000267 bool operator()(const llvm::APSInt &LHS,
268 const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
269 return LHS < RHS.first;
270 }
271 };
272}
273
Chris Lattner764a7ce2007-09-21 18:15:22 +0000274/// CmpCaseVals - Comparison predicate for sorting case values.
275///
276static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
277 const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
278 if (lhs.first < rhs.first)
279 return true;
280
281 if (lhs.first == rhs.first &&
282 lhs.second->getCaseLoc().getRawEncoding()
283 < rhs.second->getCaseLoc().getRawEncoding())
284 return true;
285 return false;
286}
287
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000288Action::StmtResult
Chris Lattner764a7ce2007-09-21 18:15:22 +0000289Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtTy *Switch,
290 ExprTy *Body) {
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000291 Stmt *BodyStmt = (Stmt*)Body;
292
293 SwitchStmt *SS = SwitchStack.back();
294 assert(SS == (SwitchStmt*)Switch && "switch stack missing push/pop!");
295
Steve Naroff9dcbfa42007-09-01 21:08:38 +0000296 SS->setBody(BodyStmt, SwitchLoc);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000297 SwitchStack.pop_back();
298
Chris Lattnerf4021e72007-08-23 05:46:52 +0000299 Expr *CondExpr = SS->getCond();
300 QualType CondType = CondExpr->getType();
Chris Lattner6c36be52007-07-18 02:28:47 +0000301
Chris Lattnerf4021e72007-08-23 05:46:52 +0000302 if (!CondType->isIntegerType()) { // C99 6.8.4.2p1
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000303 Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer,
Chris Lattnerf4021e72007-08-23 05:46:52 +0000304 CondType.getAsString(), CondExpr->getSourceRange());
305 return true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000306 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000307
308 // Get the bitwidth of the switched-on value before promotions. We must
309 // convert the integer case values to this width before comparison.
Hartmut Kaiser1ff4f0c2007-09-16 00:04:22 +0000310 unsigned CondWidth =
311 static_cast<unsigned>(Context.getTypeSize(CondType, SwitchLoc));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000312 bool CondIsSigned = CondType->isSignedIntegerType();
313
314 // Accumulate all of the case values in a vector so that we can sort them
315 // and detect duplicates. This vector contains the APInt for the case after
316 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000317 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
318 CaseValsTy CaseVals;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000319
320 // Keep track of any GNU case ranges we see. The APSInt is the low value.
321 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
322
323 DefaultStmt *TheDefaultStmt = 0;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000324
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000325 bool CaseListIsErroneous = false;
326
327 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000328 SC = SC->getNextSwitchCase()) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000329
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000330 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000331 if (TheDefaultStmt) {
332 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
333 Diag(TheDefaultStmt->getDefaultLoc(), diag::err_first_label);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000334
Chris Lattnerf4021e72007-08-23 05:46:52 +0000335 // FIXME: Remove the default statement from the switch block so that
336 // we'll return a valid AST. This requires recursing down the
337 // AST and finding it, not something we are set up to do right now. For
338 // now, just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000339 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000340 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000341 TheDefaultStmt = DS;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000342
Chris Lattnerf4021e72007-08-23 05:46:52 +0000343 } else {
344 CaseStmt *CS = cast<CaseStmt>(SC);
345
346 // We already verified that the expression has a i-c-e value (C99
347 // 6.8.4.2p3) - get that value now.
348 llvm::APSInt LoVal(32);
349 CS->getLHS()->isIntegerConstantExpr(LoVal, Context);
350
351 // Convert the value to the same width/sign as the condition.
352 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
353 CS->getLHS()->getLocStart(),
354 diag::warn_case_value_overflow);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000355
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000356 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Chris Lattnerf4021e72007-08-23 05:46:52 +0000357 if (CS->getRHS())
358 CaseRanges.push_back(std::make_pair(LoVal, CS));
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000359 else
360 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000361 }
362 }
363
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000364 // Sort all the scalar case values so we can easily detect duplicates.
Chris Lattner764a7ce2007-09-21 18:15:22 +0000365 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000366
Chris Lattnerf3348502007-08-23 14:29:07 +0000367 if (!CaseVals.empty()) {
368 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
369 if (CaseVals[i].first == CaseVals[i+1].first) {
370 // If we have a duplicate, report it.
371 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
372 diag::err_duplicate_case, CaseVals[i].first.toString());
373 Diag(CaseVals[i].second->getLHS()->getLocStart(),
374 diag::err_duplicate_case_prev);
375 // FIXME: We really want to remove the bogus case stmt from the substmt,
376 // but we have no way to do this right now.
377 CaseListIsErroneous = true;
378 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000379 }
380 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000381
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000382 // Detect duplicate case ranges, which usually don't exist at all in the first
383 // place.
384 if (!CaseRanges.empty()) {
385 // Sort all the case ranges by their low value so we can easily detect
386 // overlaps between ranges.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000387 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000388
389 // Scan the ranges, computing the high values and removing empty ranges.
390 std::vector<llvm::APSInt> HiVals;
Chris Lattner6efc4d32007-08-23 17:48:14 +0000391 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000392 CaseStmt *CR = CaseRanges[i].second;
393 llvm::APSInt HiVal(32);
394 CR->getRHS()->isIntegerConstantExpr(HiVal, Context);
395
396 // Convert the value to the same width/sign as the condition.
397 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
398 CR->getRHS()->getLocStart(),
399 diag::warn_case_value_overflow);
400
Chris Lattner6efc4d32007-08-23 17:48:14 +0000401 // If the low value is bigger than the high value, the case is empty.
402 if (CaseRanges[i].first > HiVal) {
403 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range,
404 SourceRange(CR->getLHS()->getLocStart(),
405 CR->getRHS()->getLocEnd()));
406 CaseRanges.erase(CaseRanges.begin()+i);
407 --i, --e;
408 continue;
409 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000410 HiVals.push_back(HiVal);
411 }
412
413 // Rescan the ranges, looking for overlap with singleton values and other
Chris Lattner0471f5b2007-08-23 18:29:20 +0000414 // ranges. Since the range list is sorted, we only need to compare case
415 // ranges with their neighbors.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000416 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattner0471f5b2007-08-23 18:29:20 +0000417 llvm::APSInt &CRLo = CaseRanges[i].first;
418 llvm::APSInt &CRHi = HiVals[i];
419 CaseStmt *CR = CaseRanges[i].second;
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000420
Chris Lattner0471f5b2007-08-23 18:29:20 +0000421 // Check to see whether the case range overlaps with any singleton cases.
422 CaseStmt *OverlapStmt = 0;
423 llvm::APSInt OverlapVal(32);
424
425 // Find the smallest value >= the lower bound. If I is in the case range,
426 // then we have overlap.
427 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
428 CaseVals.end(), CRLo,
429 CaseCompareFunctor());
430 if (I != CaseVals.end() && I->first < CRHi) {
431 OverlapVal = I->first; // Found overlap with scalar.
432 OverlapStmt = I->second;
433 }
434
435 // Find the smallest value bigger than the upper bound.
436 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
437 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
438 OverlapVal = (I-1)->first; // Found overlap with scalar.
439 OverlapStmt = (I-1)->second;
440 }
441
442 // Check to see if this case stmt overlaps with the subsequent case range.
443 if (i && CRLo <= HiVals[i-1]) {
444 OverlapVal = HiVals[i-1]; // Found overlap with range.
445 OverlapStmt = CaseRanges[i-1].second;
446 }
447
448 if (OverlapStmt) {
449 // If we have a duplicate, report it.
450 Diag(CR->getLHS()->getLocStart(),
451 diag::err_duplicate_case, OverlapVal.toString());
452 Diag(OverlapStmt->getLHS()->getLocStart(),
453 diag::err_duplicate_case_prev);
454 // FIXME: We really want to remove the bogus case stmt from the substmt,
455 // but we have no way to do this right now.
456 CaseListIsErroneous = true;
457 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000458 }
459 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000460
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000461 // FIXME: If the case list was broken is some way, we don't have a good system
462 // to patch it up. Instead, just return the whole substmt as broken.
463 if (CaseListIsErroneous)
464 return true;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000465
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000466 return SS;
Reid Spencer5f016e22007-07-11 17:01:13 +0000467}
468
469Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000470Sema::ActOnWhileStmt(SourceLocation WhileLoc, ExprTy *Cond, StmtTy *Body) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000471 Expr *condExpr = (Expr *)Cond;
Steve Naroff1b273c42007-09-16 14:56:35 +0000472 assert(condExpr && "ActOnWhileStmt(): missing expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000473
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000474 DefaultFunctionArrayConversion(condExpr);
475 QualType condType = condExpr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000476
477 if (!condType->isScalarType()) // C99 6.8.5p2
478 return Diag(WhileLoc, diag::err_typecheck_statement_requires_scalar,
479 condType.getAsString(), condExpr->getSourceRange());
480
Steve Naroffb5a69582007-08-31 23:28:33 +0000481 return new WhileStmt(condExpr, (Stmt*)Body, WhileLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000482}
483
484Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000485Sema::ActOnDoStmt(SourceLocation DoLoc, StmtTy *Body,
Reid Spencer5f016e22007-07-11 17:01:13 +0000486 SourceLocation WhileLoc, ExprTy *Cond) {
487 Expr *condExpr = (Expr *)Cond;
Steve Naroff1b273c42007-09-16 14:56:35 +0000488 assert(condExpr && "ActOnDoStmt(): missing expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000489
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000490 DefaultFunctionArrayConversion(condExpr);
491 QualType condType = condExpr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000492
493 if (!condType->isScalarType()) // C99 6.8.5p2
494 return Diag(DoLoc, diag::err_typecheck_statement_requires_scalar,
495 condType.getAsString(), condExpr->getSourceRange());
496
Steve Naroffb5a69582007-08-31 23:28:33 +0000497 return new DoStmt((Stmt*)Body, condExpr, DoLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000498}
499
500Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000501Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000502 StmtTy *first, ExprTy *second, ExprTy *third,
503 SourceLocation RParenLoc, StmtTy *body) {
504 Stmt *First = static_cast<Stmt*>(first);
505 Expr *Second = static_cast<Expr*>(second);
506 Expr *Third = static_cast<Expr*>(third);
507 Stmt *Body = static_cast<Stmt*>(body);
508
Chris Lattnerae3b7012007-08-28 05:03:08 +0000509 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
510 // C99 6.8.5p3: The declaration part of a 'for' statement shall only declare
511 // identifiers for objects having storage class 'auto' or 'register'.
Steve Naroff94745042007-09-13 23:52:58 +0000512 for (ScopedDecl *D = DS->getDecl(); D; D = D->getNextDeclarator()) {
Chris Lattnerae3b7012007-08-28 05:03:08 +0000513 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(D);
514 if (BVD && !BVD->hasLocalStorage())
515 BVD = 0;
516 if (BVD == 0)
Steve Naroff8e74c932007-09-13 21:41:19 +0000517 Diag(dyn_cast<ScopedDecl>(D)->getLocation(),
518 diag::err_non_variable_decl_in_for);
Chris Lattnerae3b7012007-08-28 05:03:08 +0000519 // FIXME: mark decl erroneous!
520 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000521 }
522 if (Second) {
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000523 DefaultFunctionArrayConversion(Second);
524 QualType SecondType = Second->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000525
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000526 if (!SecondType->isScalarType()) // C99 6.8.5p2
Reid Spencer5f016e22007-07-11 17:01:13 +0000527 return Diag(ForLoc, diag::err_typecheck_statement_requires_scalar,
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000528 SecondType.getAsString(), Second->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000529 }
Steve Naroffb5a69582007-08-31 23:28:33 +0000530 return new ForStmt(First, Second, Third, Body, ForLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000531}
532
533
534Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000535Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000536 IdentifierInfo *LabelII) {
537 // Look up the record for this label identifier.
538 LabelStmt *&LabelDecl = LabelMap[LabelII];
539
540 // If we haven't seen this label yet, create a forward reference.
541 if (LabelDecl == 0)
542 LabelDecl = new LabelStmt(LabelLoc, LabelII, 0);
543
Ted Kremenek61f62162007-09-06 17:11:52 +0000544 return new GotoStmt(LabelDecl, GotoLoc, LabelLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000545}
546
547Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000548Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc,SourceLocation StarLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000549 ExprTy *DestExp) {
550 // FIXME: Verify that the operand is convertible to void*.
551
552 return new IndirectGotoStmt((Expr*)DestExp);
553}
554
555Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000556Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 Scope *S = CurScope->getContinueParent();
558 if (!S) {
559 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
560 Diag(ContinueLoc, diag::err_continue_not_in_loop);
561 return true;
562 }
563
Steve Naroff507f2d52007-08-31 23:49:30 +0000564 return new ContinueStmt(ContinueLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000565}
566
567Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000568Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 Scope *S = CurScope->getBreakParent();
570 if (!S) {
571 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
572 Diag(BreakLoc, diag::err_break_not_in_loop_or_switch);
573 return true;
574 }
575
Steve Naroff507f2d52007-08-31 23:49:30 +0000576 return new BreakStmt(BreakLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000577}
578
579
580Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000581Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprTy *rex) {
Steve Naroff90045e82007-07-13 23:32:42 +0000582 Expr *RetValExp = static_cast<Expr *>(rex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 QualType lhsType = CurFunctionDecl->getResultType();
584
585 if (lhsType->isVoidType()) {
586 if (RetValExp) // C99 6.8.6.4p1 (ext_ since GCC warns)
587 Diag(ReturnLoc, diag::ext_return_has_expr,
588 CurFunctionDecl->getIdentifier()->getName(),
Steve Naroff90045e82007-07-13 23:32:42 +0000589 RetValExp->getSourceRange());
Steve Naroff507f2d52007-08-31 23:49:30 +0000590 return new ReturnStmt(ReturnLoc, RetValExp);
Reid Spencer5f016e22007-07-11 17:01:13 +0000591 } else {
592 if (!RetValExp) {
593 const char *funcName = CurFunctionDecl->getIdentifier()->getName();
594 if (getLangOptions().C99) // C99 6.8.6.4p1 (ext_ since GCC warns)
595 Diag(ReturnLoc, diag::ext_return_missing_expr, funcName);
596 else // C90 6.6.6.4p4
597 Diag(ReturnLoc, diag::warn_return_missing_expr, funcName);
Steve Naroff507f2d52007-08-31 23:49:30 +0000598 return new ReturnStmt(ReturnLoc, (Expr*)0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000599 }
600 }
601 // we have a non-void function with an expression, continue checking
Steve Naroff90045e82007-07-13 23:32:42 +0000602 QualType rhsType = RetValExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000603
Reid Spencer5f016e22007-07-11 17:01:13 +0000604 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
605 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
606 // function return.
Steve Naroff90045e82007-07-13 23:32:42 +0000607 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
608 RetValExp);
Ted Kremenek6a2394c2007-08-14 18:14:14 +0000609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610 // decode the result (notice that extensions still return a type).
611 switch (result) {
612 case Compatible:
613 break;
614 case Incompatible:
615 Diag(ReturnLoc, diag::err_typecheck_return_incompatible,
616 lhsType.getAsString(), rhsType.getAsString(),
Steve Naroff90045e82007-07-13 23:32:42 +0000617 RetValExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000618 break;
619 case PointerFromInt:
620 // check for null pointer constant (C99 6.3.2.3p3)
Chris Lattner590b6642007-07-15 23:26:56 +0000621 if (!RetValExp->isNullPointerConstant(Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000622 Diag(ReturnLoc, diag::ext_typecheck_return_pointer_int,
623 lhsType.getAsString(), rhsType.getAsString(),
Steve Naroff90045e82007-07-13 23:32:42 +0000624 RetValExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 }
626 break;
627 case IntFromPointer:
628 Diag(ReturnLoc, diag::ext_typecheck_return_pointer_int,
629 lhsType.getAsString(), rhsType.getAsString(),
Steve Naroff90045e82007-07-13 23:32:42 +0000630 RetValExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000631 break;
632 case IncompatiblePointer:
633 Diag(ReturnLoc, diag::ext_typecheck_return_incompatible_pointer,
634 lhsType.getAsString(), rhsType.getAsString(),
Steve Naroff90045e82007-07-13 23:32:42 +0000635 RetValExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000636 break;
637 case CompatiblePointerDiscardsQualifiers:
638 Diag(ReturnLoc, diag::ext_typecheck_return_discards_qualifiers,
639 lhsType.getAsString(), rhsType.getAsString(),
Steve Naroff90045e82007-07-13 23:32:42 +0000640 RetValExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 break;
642 }
Ted Kremenek06de2762007-08-17 16:46:58 +0000643
644 if (RetValExp) CheckReturnStackAddr(RetValExp, lhsType, ReturnLoc);
645
Steve Naroff507f2d52007-08-31 23:49:30 +0000646 return new ReturnStmt(ReturnLoc, (Expr*)RetValExp);
Reid Spencer5f016e22007-07-11 17:01:13 +0000647}
648
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000649Sema::StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
Anders Carlsson39c47b52007-11-23 23:12:25 +0000650 bool IsVolatile,
Anders Carlssonb235fc22007-11-22 01:36:19 +0000651 unsigned NumOutputs,
652 unsigned NumInputs,
653 std::string *Names,
654 ExprTy **Constraints,
655 ExprTy **Exprs,
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000656 ExprTy *AsmString,
Anders Carlssonb235fc22007-11-22 01:36:19 +0000657 unsigned NumClobbers,
658 ExprTy **Clobbers,
Chris Lattnerfe795952007-10-29 04:04:16 +0000659 SourceLocation RParenLoc) {
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000660 Expr *E = (Expr *)AsmString;
Anders Carlsson39c47b52007-11-23 23:12:25 +0000661
Anders Carlsson04728b72007-11-23 19:43:50 +0000662 // Check that the output exprs are valid lvalues.
663 for (unsigned i = 0; i < NumOutputs; i++) {
664 Expr *OutputExpr = (Expr *)Exprs[i];
665 Expr::isLvalueResult Result = OutputExpr->isLvalue();
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000666
Anders Carlsson04728b72007-11-23 19:43:50 +0000667 if (Result != Expr::LV_Valid) {
668 ParenExpr *PE = cast<ParenExpr>(OutputExpr);
669
670 Diag(PE->getSubExpr()->getLocStart(),
671 diag::err_invalid_lvalue_in_asm_output,
672 PE->getSubExpr()->getSourceRange());
673
674 // FIXME: We currently leak memory here.
675 return true;
676 }
677 }
678
679 // Check that the input exprs aren't of type void.
680 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
681 Expr *InputExpr = (Expr *)Exprs[i];
682
683 if (InputExpr->getType()->isVoidType()) {
684 ParenExpr *PE = cast<ParenExpr>(InputExpr);
685
686 Diag(PE->getSubExpr()->getLocStart(),
687 diag::err_invalid_type_in_asm_input,
688 PE->getType().getAsString(),
689 PE->getSubExpr()->getSourceRange());
690
691 // FIXME: We currently leak memory here.
692 return true;
693 }
694 }
Anders Carlssonb235fc22007-11-22 01:36:19 +0000695
Anders Carlsson6fa90862007-11-25 00:25:21 +0000696 // Check that the clobbers are valid.
697 for (unsigned i = 0; i < NumClobbers; i++) {
698 StringLiteral *Literal = cast<StringLiteral>((Expr *)Clobbers[i]);
699 assert(!Literal->isWide() && "Clobber strings should not be wide!");
700
701 llvm::SmallString<16> Clobber(Literal->getStrData(),
702 Literal->getStrData() +
703 Literal->getByteLength());
704
705 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str())) {
706 Diag(Literal->getLocStart(),
707 diag::err_unknown_register_name_in_asm,
708 Clobber.c_str());
709
710 // FIXME: We currently leak memory here.
711 return true;
712 }
713 }
714
Anders Carlssonb235fc22007-11-22 01:36:19 +0000715 return new AsmStmt(AsmLoc,
Anders Carlsson39c47b52007-11-23 23:12:25 +0000716 IsVolatile,
Anders Carlssonb235fc22007-11-22 01:36:19 +0000717 NumOutputs,
718 NumInputs,
719 Names,
720 reinterpret_cast<StringLiteral**>(Constraints),
721 reinterpret_cast<Expr**>(Exprs),
722 cast<StringLiteral>(E),
723 NumClobbers,
724 reinterpret_cast<StringLiteral**>(Clobbers),
725 RParenLoc);
Chris Lattnerfe795952007-10-29 04:04:16 +0000726}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +0000727
728Action::StmtResult
729Sema::ActOnObjcAtCatchStmt(SourceLocation AtLoc,
730 SourceLocation RParen, StmtTy *Parm,
731 StmtTy *Body, StmtTy *CatchList) {
732 ObjcAtCatchStmt *CS = new ObjcAtCatchStmt(AtLoc, RParen,
733 static_cast<Stmt*>(Parm), static_cast<Stmt*>(Body),
734 static_cast<Stmt*>(CatchList));
735 return CatchList ? CatchList : CS;
736}
737
Fariborz Jahanian161a9c52007-11-02 00:18:53 +0000738Action::StmtResult
739Sema::ActOnObjcAtFinallyStmt(SourceLocation AtLoc, StmtTy *Body) {
740 ObjcAtFinallyStmt *FS = new ObjcAtFinallyStmt(AtLoc,
741 static_cast<Stmt*>(Body));
742 return FS;
743}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000744
745Action::StmtResult
746Sema::ActOnObjcAtTryStmt(SourceLocation AtLoc,
747 StmtTy *Try, StmtTy *Catch, StmtTy *Finally) {
748 ObjcAtTryStmt *TS = new ObjcAtTryStmt(AtLoc, static_cast<Stmt*>(Try),
749 static_cast<Stmt*>(Catch),
750 static_cast<Stmt*>(Finally));
751 return TS;
752}
753
Fariborz Jahanian39f8f152007-11-07 02:00:49 +0000754Action::StmtResult
755Sema::ActOnObjcAtThrowStmt(SourceLocation AtLoc, StmtTy *Throw) {
756 ObjcAtThrowStmt *TS = new ObjcAtThrowStmt(AtLoc, static_cast<Stmt*>(Throw));
757 return TS;
758}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000759
760
761