blob: fe62c8ab0695b3c541d812d4fda59036b8e144ff [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for statements.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
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.
Chris Lattner98be4942008-03-05 18:54:05 +0000310 unsigned CondWidth = static_cast<unsigned>(Context.getTypeSize(CondType));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000311 bool CondIsSigned = CondType->isSignedIntegerType();
312
313 // Accumulate all of the case values in a vector so that we can sort them
314 // and detect duplicates. This vector contains the APInt for the case after
315 // it has been converted to the condition type.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000316 typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
317 CaseValsTy CaseVals;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000318
319 // Keep track of any GNU case ranges we see. The APSInt is the low value.
320 std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges;
321
322 DefaultStmt *TheDefaultStmt = 0;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000323
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000324 bool CaseListIsErroneous = false;
325
326 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000327 SC = SC->getNextSwitchCase()) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000328
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000329 if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
Chris Lattnerf4021e72007-08-23 05:46:52 +0000330 if (TheDefaultStmt) {
331 Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
332 Diag(TheDefaultStmt->getDefaultLoc(), diag::err_first_label);
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000333
Chris Lattnerf4021e72007-08-23 05:46:52 +0000334 // FIXME: Remove the default statement from the switch block so that
335 // we'll return a valid AST. This requires recursing down the
336 // AST and finding it, not something we are set up to do right now. For
337 // now, just lop the entire switch stmt out of the AST.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000338 CaseListIsErroneous = true;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000339 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000340 TheDefaultStmt = DS;
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000341
Chris Lattnerf4021e72007-08-23 05:46:52 +0000342 } else {
343 CaseStmt *CS = cast<CaseStmt>(SC);
344
345 // We already verified that the expression has a i-c-e value (C99
346 // 6.8.4.2p3) - get that value now.
347 llvm::APSInt LoVal(32);
Chris Lattner1e0a3902008-01-16 19:17:22 +0000348 Expr *Lo = CS->getLHS();
349 Lo->isIntegerConstantExpr(LoVal, Context);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000350
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 Lattner1e0a3902008-01-16 19:17:22 +0000356 // If the LHS is not the same type as the condition, insert an implicit
357 // cast.
358 ImpCastExprToType(Lo, CondType);
359 CS->setLHS(Lo);
360
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000361 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
Chris Lattnerf4021e72007-08-23 05:46:52 +0000362 if (CS->getRHS())
363 CaseRanges.push_back(std::make_pair(LoVal, CS));
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000364 else
365 CaseVals.push_back(std::make_pair(LoVal, CS));
Chris Lattnerf4021e72007-08-23 05:46:52 +0000366 }
367 }
368
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000369 // Sort all the scalar case values so we can easily detect duplicates.
Chris Lattner764a7ce2007-09-21 18:15:22 +0000370 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
Chris Lattnerf4021e72007-08-23 05:46:52 +0000371
Chris Lattnerf3348502007-08-23 14:29:07 +0000372 if (!CaseVals.empty()) {
373 for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) {
374 if (CaseVals[i].first == CaseVals[i+1].first) {
375 // If we have a duplicate, report it.
376 Diag(CaseVals[i+1].second->getLHS()->getLocStart(),
377 diag::err_duplicate_case, CaseVals[i].first.toString());
378 Diag(CaseVals[i].second->getLHS()->getLocStart(),
379 diag::err_duplicate_case_prev);
380 // FIXME: We really want to remove the bogus case stmt from the substmt,
381 // but we have no way to do this right now.
382 CaseListIsErroneous = true;
383 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000384 }
385 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000386
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000387 // Detect duplicate case ranges, which usually don't exist at all in the first
388 // place.
389 if (!CaseRanges.empty()) {
390 // Sort all the case ranges by their low value so we can easily detect
391 // overlaps between ranges.
Chris Lattner0471f5b2007-08-23 18:29:20 +0000392 std::stable_sort(CaseRanges.begin(), CaseRanges.end());
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000393
394 // Scan the ranges, computing the high values and removing empty ranges.
395 std::vector<llvm::APSInt> HiVals;
Chris Lattner6efc4d32007-08-23 17:48:14 +0000396 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000397 CaseStmt *CR = CaseRanges[i].second;
398 llvm::APSInt HiVal(32);
Chris Lattner1e0a3902008-01-16 19:17:22 +0000399 Expr *Hi = CR->getRHS();
400 Hi->isIntegerConstantExpr(HiVal, Context);
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000401
402 // Convert the value to the same width/sign as the condition.
403 ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned,
404 CR->getRHS()->getLocStart(),
405 diag::warn_case_value_overflow);
406
Chris Lattner1e0a3902008-01-16 19:17:22 +0000407 // If the LHS is not the same type as the condition, insert an implicit
408 // cast.
409 ImpCastExprToType(Hi, CondType);
410 CR->setRHS(Hi);
411
Chris Lattner6efc4d32007-08-23 17:48:14 +0000412 // If the low value is bigger than the high value, the case is empty.
413 if (CaseRanges[i].first > HiVal) {
414 Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range,
415 SourceRange(CR->getLHS()->getLocStart(),
416 CR->getRHS()->getLocEnd()));
417 CaseRanges.erase(CaseRanges.begin()+i);
418 --i, --e;
419 continue;
420 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000421 HiVals.push_back(HiVal);
422 }
423
424 // Rescan the ranges, looking for overlap with singleton values and other
Chris Lattner0471f5b2007-08-23 18:29:20 +0000425 // ranges. Since the range list is sorted, we only need to compare case
426 // ranges with their neighbors.
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000427 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
Chris Lattner0471f5b2007-08-23 18:29:20 +0000428 llvm::APSInt &CRLo = CaseRanges[i].first;
429 llvm::APSInt &CRHi = HiVals[i];
430 CaseStmt *CR = CaseRanges[i].second;
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000431
Chris Lattner0471f5b2007-08-23 18:29:20 +0000432 // Check to see whether the case range overlaps with any singleton cases.
433 CaseStmt *OverlapStmt = 0;
434 llvm::APSInt OverlapVal(32);
435
436 // Find the smallest value >= the lower bound. If I is in the case range,
437 // then we have overlap.
438 CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(),
439 CaseVals.end(), CRLo,
440 CaseCompareFunctor());
441 if (I != CaseVals.end() && I->first < CRHi) {
442 OverlapVal = I->first; // Found overlap with scalar.
443 OverlapStmt = I->second;
444 }
445
446 // Find the smallest value bigger than the upper bound.
447 I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
448 if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
449 OverlapVal = (I-1)->first; // Found overlap with scalar.
450 OverlapStmt = (I-1)->second;
451 }
452
453 // Check to see if this case stmt overlaps with the subsequent case range.
454 if (i && CRLo <= HiVals[i-1]) {
455 OverlapVal = HiVals[i-1]; // Found overlap with range.
456 OverlapStmt = CaseRanges[i-1].second;
457 }
458
459 if (OverlapStmt) {
460 // If we have a duplicate, report it.
461 Diag(CR->getLHS()->getLocStart(),
462 diag::err_duplicate_case, OverlapVal.toString());
463 Diag(OverlapStmt->getLHS()->getLocStart(),
464 diag::err_duplicate_case_prev);
465 // FIXME: We really want to remove the bogus case stmt from the substmt,
466 // but we have no way to do this right now.
467 CaseListIsErroneous = true;
468 }
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000469 }
470 }
Chris Lattnerf4021e72007-08-23 05:46:52 +0000471
Chris Lattnerb2ec9d62007-08-23 06:23:56 +0000472 // FIXME: If the case list was broken is some way, we don't have a good system
473 // to patch it up. Instead, just return the whole substmt as broken.
474 if (CaseListIsErroneous)
475 return true;
Chris Lattnerf4021e72007-08-23 05:46:52 +0000476
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000477 return SS;
Reid Spencer5f016e22007-07-11 17:01:13 +0000478}
479
480Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000481Sema::ActOnWhileStmt(SourceLocation WhileLoc, ExprTy *Cond, StmtTy *Body) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000482 Expr *condExpr = (Expr *)Cond;
Steve Naroff1b273c42007-09-16 14:56:35 +0000483 assert(condExpr && "ActOnWhileStmt(): missing expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000484
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000485 DefaultFunctionArrayConversion(condExpr);
486 QualType condType = condExpr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000487
488 if (!condType->isScalarType()) // C99 6.8.5p2
489 return Diag(WhileLoc, diag::err_typecheck_statement_requires_scalar,
490 condType.getAsString(), condExpr->getSourceRange());
491
Steve Naroffb5a69582007-08-31 23:28:33 +0000492 return new WhileStmt(condExpr, (Stmt*)Body, WhileLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000493}
494
495Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000496Sema::ActOnDoStmt(SourceLocation DoLoc, StmtTy *Body,
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 SourceLocation WhileLoc, ExprTy *Cond) {
498 Expr *condExpr = (Expr *)Cond;
Steve Naroff1b273c42007-09-16 14:56:35 +0000499 assert(condExpr && "ActOnDoStmt(): missing expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000500
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000501 DefaultFunctionArrayConversion(condExpr);
502 QualType condType = condExpr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000503
504 if (!condType->isScalarType()) // C99 6.8.5p2
505 return Diag(DoLoc, diag::err_typecheck_statement_requires_scalar,
506 condType.getAsString(), condExpr->getSourceRange());
507
Steve Naroffb5a69582007-08-31 23:28:33 +0000508 return new DoStmt((Stmt*)Body, condExpr, DoLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000509}
510
511Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000512Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000513 StmtTy *first, ExprTy *second, ExprTy *third,
514 SourceLocation RParenLoc, StmtTy *body) {
515 Stmt *First = static_cast<Stmt*>(first);
516 Expr *Second = static_cast<Expr*>(second);
517 Expr *Third = static_cast<Expr*>(third);
518 Stmt *Body = static_cast<Stmt*>(body);
519
Chris Lattnerae3b7012007-08-28 05:03:08 +0000520 if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
521 // C99 6.8.5p3: The declaration part of a 'for' statement shall only declare
522 // identifiers for objects having storage class 'auto' or 'register'.
Steve Naroff94745042007-09-13 23:52:58 +0000523 for (ScopedDecl *D = DS->getDecl(); D; D = D->getNextDeclarator()) {
Chris Lattnerae3b7012007-08-28 05:03:08 +0000524 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(D);
525 if (BVD && !BVD->hasLocalStorage())
526 BVD = 0;
527 if (BVD == 0)
Steve Naroff8e74c932007-09-13 21:41:19 +0000528 Diag(dyn_cast<ScopedDecl>(D)->getLocation(),
529 diag::err_non_variable_decl_in_for);
Chris Lattnerae3b7012007-08-28 05:03:08 +0000530 // FIXME: mark decl erroneous!
531 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000532 }
533 if (Second) {
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000534 DefaultFunctionArrayConversion(Second);
535 QualType SecondType = Second->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000536
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000537 if (!SecondType->isScalarType()) // C99 6.8.5p2
Reid Spencer5f016e22007-07-11 17:01:13 +0000538 return Diag(ForLoc, diag::err_typecheck_statement_requires_scalar,
Chris Lattner36c4b0e2007-08-28 04:55:47 +0000539 SecondType.getAsString(), Second->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000540 }
Steve Naroffb5a69582007-08-31 23:28:33 +0000541 return new ForStmt(First, Second, Third, Body, ForLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000542}
543
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000544Action::StmtResult
Fariborz Jahanian75712282008-01-10 00:24:29 +0000545Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000546 SourceLocation LParenLoc,
547 StmtTy *first, ExprTy *second,
548 SourceLocation RParenLoc, StmtTy *body) {
549 Stmt *First = static_cast<Stmt*>(first);
550 Expr *Second = static_cast<Expr*>(second);
551 Stmt *Body = static_cast<Stmt*>(body);
Fariborz Jahanian20552d22008-01-10 20:33:58 +0000552 if (First) {
553 QualType FirstType;
554 if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
555 FirstType = cast<ValueDecl>(DS->getDecl())->getType();
556 // C99 6.8.5p3: The declaration part of a 'for' statement shall only declare
557 // identifiers for objects having storage class 'auto' or 'register'.
558 ScopedDecl *D = DS->getDecl();
559 BlockVarDecl *BVD = cast<BlockVarDecl>(D);
560 if (!BVD->hasLocalStorage())
561 return Diag(BVD->getLocation(), diag::err_non_variable_decl_in_for);
562 if (D->getNextDeclarator())
563 return Diag(D->getLocation(), diag::err_toomany_element_decls);
564 }
565 else
566 FirstType = static_cast<Expr*>(first)->getType();
567 if (!isObjCObjectPointerType(FirstType))
568 Diag(ForLoc, diag::err_selector_element_type,
569 FirstType.getAsString(), First->getSourceRange());
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000570 }
571 if (Second) {
572 DefaultFunctionArrayConversion(Second);
573 QualType SecondType = Second->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000574 if (!isObjCObjectPointerType(SecondType))
Fariborz Jahanian75712282008-01-10 00:24:29 +0000575 Diag(ForLoc, diag::err_collection_expr_type,
Fariborz Jahanian1f990d62008-01-04 00:27:46 +0000576 SecondType.getAsString(), Second->getSourceRange());
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000577 }
Fariborz Jahanian75712282008-01-10 00:24:29 +0000578 return new ObjCForCollectionStmt(First, Second, Body, ForLoc, RParenLoc);
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000579}
Reid Spencer5f016e22007-07-11 17:01:13 +0000580
581Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000582Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 IdentifierInfo *LabelII) {
584 // Look up the record for this label identifier.
585 LabelStmt *&LabelDecl = LabelMap[LabelII];
586
587 // If we haven't seen this label yet, create a forward reference.
588 if (LabelDecl == 0)
589 LabelDecl = new LabelStmt(LabelLoc, LabelII, 0);
590
Ted Kremenek61f62162007-09-06 17:11:52 +0000591 return new GotoStmt(LabelDecl, GotoLoc, LabelLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000592}
593
594Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000595Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc,SourceLocation StarLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000596 ExprTy *DestExp) {
597 // FIXME: Verify that the operand is convertible to void*.
598
599 return new IndirectGotoStmt((Expr*)DestExp);
600}
601
602Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000603Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000604 Scope *S = CurScope->getContinueParent();
605 if (!S) {
606 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
607 Diag(ContinueLoc, diag::err_continue_not_in_loop);
608 return true;
609 }
610
Steve Naroff507f2d52007-08-31 23:49:30 +0000611 return new ContinueStmt(ContinueLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000612}
613
614Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000615Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000616 Scope *S = CurScope->getBreakParent();
617 if (!S) {
618 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
619 Diag(BreakLoc, diag::err_break_not_in_loop_or_switch);
620 return true;
621 }
622
Steve Naroff507f2d52007-08-31 23:49:30 +0000623 return new BreakStmt(BreakLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000624}
625
626
627Action::StmtResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000628Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprTy *rex) {
Steve Naroff90045e82007-07-13 23:32:42 +0000629 Expr *RetValExp = static_cast<Expr *>(rex);
Chris Lattner5cf216b2008-01-04 18:04:52 +0000630 QualType FnRetType = CurFunctionDecl ? CurFunctionDecl->getResultType() :
631 CurMethodDecl->getResultType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000632
Chris Lattner5cf216b2008-01-04 18:04:52 +0000633 if (FnRetType->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000634 if (RetValExp) // C99 6.8.6.4p1 (ext_ since GCC warns)
Fariborz Jahanianb107ce82007-12-04 19:20:11 +0000635 Diag(ReturnLoc, diag::ext_return_has_expr,
636 (CurFunctionDecl ? CurFunctionDecl->getIdentifier()->getName() :
637 CurMethodDecl->getSelector().getName()),
Steve Naroff90045e82007-07-13 23:32:42 +0000638 RetValExp->getSourceRange());
Steve Naroff507f2d52007-08-31 23:49:30 +0000639 return new ReturnStmt(ReturnLoc, RetValExp);
Reid Spencer5f016e22007-07-11 17:01:13 +0000640 } else {
641 if (!RetValExp) {
Fariborz Jahanianb107ce82007-12-04 19:20:11 +0000642 const char *funcName = CurFunctionDecl ?
643 CurFunctionDecl->getIdentifier()->getName() :
644 CurMethodDecl->getSelector().getName().c_str();
Reid Spencer5f016e22007-07-11 17:01:13 +0000645 if (getLangOptions().C99) // C99 6.8.6.4p1 (ext_ since GCC warns)
646 Diag(ReturnLoc, diag::ext_return_missing_expr, funcName);
647 else // C90 6.6.6.4p4
648 Diag(ReturnLoc, diag::warn_return_missing_expr, funcName);
Steve Naroff507f2d52007-08-31 23:49:30 +0000649 return new ReturnStmt(ReturnLoc, (Expr*)0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000650 }
651 }
652 // we have a non-void function with an expression, continue checking
Chris Lattner5cf216b2008-01-04 18:04:52 +0000653 QualType RetValType = RetValExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000654
Reid Spencer5f016e22007-07-11 17:01:13 +0000655 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
656 // overlap restriction of subclause 6.5.16.1 does not apply to the case of
657 // function return.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000658 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(FnRetType,
659 RetValExp);
660 if (DiagnoseAssignmentResult(ConvTy, ReturnLoc, FnRetType,
661 RetValType, RetValExp, "returning"))
662 return true;
Ted Kremenek06de2762007-08-17 16:46:58 +0000663
Chris Lattner5cf216b2008-01-04 18:04:52 +0000664 if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc);
Ted Kremenek06de2762007-08-17 16:46:58 +0000665
Steve Naroff507f2d52007-08-31 23:49:30 +0000666 return new ReturnStmt(ReturnLoc, (Expr*)RetValExp);
Reid Spencer5f016e22007-07-11 17:01:13 +0000667}
668
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000669Sema::StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
Anders Carlssondfab34a2008-02-05 23:03:50 +0000670 bool IsSimple,
Anders Carlsson39c47b52007-11-23 23:12:25 +0000671 bool IsVolatile,
Anders Carlssonb235fc22007-11-22 01:36:19 +0000672 unsigned NumOutputs,
673 unsigned NumInputs,
674 std::string *Names,
675 ExprTy **Constraints,
676 ExprTy **Exprs,
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000677 ExprTy *AsmString,
Anders Carlssonb235fc22007-11-22 01:36:19 +0000678 unsigned NumClobbers,
679 ExprTy **Clobbers,
Chris Lattnerfe795952007-10-29 04:04:16 +0000680 SourceLocation RParenLoc) {
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000681 Expr *E = (Expr *)AsmString;
Anders Carlsson39c47b52007-11-23 23:12:25 +0000682
Anders Carlsson04728b72007-11-23 19:43:50 +0000683 for (unsigned i = 0; i < NumOutputs; i++) {
Anders Carlssond04c6e22007-11-27 04:11:28 +0000684 StringLiteral *Literal = cast<StringLiteral>((Expr *)Constraints[i]);
685 assert(!Literal->isWide() &&
686 "Output constraint strings should not be wide!");
687
688 std::string OutputConstraint(Literal->getStrData(),
689 Literal->getByteLength());
690
691 TargetInfo::ConstraintInfo info;
692 if (!Context.Target.validateOutputConstraint(OutputConstraint.c_str(),
693 info)) {
694 // FIXME: We currently leak memory here.
695 Diag(Literal->getLocStart(),
696 diag::err_invalid_output_constraint_in_asm);
697 return true;
698 }
699
700 // Check that the output exprs are valid lvalues.
Anders Carlsson04728b72007-11-23 19:43:50 +0000701 Expr *OutputExpr = (Expr *)Exprs[i];
702 Expr::isLvalueResult Result = OutputExpr->isLvalue();
Anders Carlsson04728b72007-11-23 19:43:50 +0000703 if (Result != Expr::LV_Valid) {
704 ParenExpr *PE = cast<ParenExpr>(OutputExpr);
705
706 Diag(PE->getSubExpr()->getLocStart(),
707 diag::err_invalid_lvalue_in_asm_output,
708 PE->getSubExpr()->getSourceRange());
709
710 // FIXME: We currently leak memory here.
711 return true;
712 }
713 }
714
Anders Carlsson04728b72007-11-23 19:43:50 +0000715 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
Anders Carlssond04c6e22007-11-27 04:11:28 +0000716 StringLiteral *Literal = cast<StringLiteral>((Expr *)Constraints[i]);
717 assert(!Literal->isWide() &&
718 "Output constraint strings should not be wide!");
Anders Carlsson04728b72007-11-23 19:43:50 +0000719
Anders Carlssond04c6e22007-11-27 04:11:28 +0000720 std::string InputConstraint(Literal->getStrData(),
721 Literal->getByteLength());
722
723 TargetInfo::ConstraintInfo info;
724 if (!Context.Target.validateInputConstraint(InputConstraint.c_str(),
725 NumOutputs,
726 info)) {
727 // FIXME: We currently leak memory here.
728 Diag(Literal->getLocStart(),
729 diag::err_invalid_input_constraint_in_asm);
730 return true;
731 }
732
733 // Check that the input exprs aren't of type void.
734 Expr *InputExpr = (Expr *)Exprs[i];
Anders Carlsson04728b72007-11-23 19:43:50 +0000735 if (InputExpr->getType()->isVoidType()) {
736 ParenExpr *PE = cast<ParenExpr>(InputExpr);
737
738 Diag(PE->getSubExpr()->getLocStart(),
739 diag::err_invalid_type_in_asm_input,
740 PE->getType().getAsString(),
741 PE->getSubExpr()->getSourceRange());
742
743 // FIXME: We currently leak memory here.
744 return true;
745 }
746 }
Anders Carlssonb235fc22007-11-22 01:36:19 +0000747
Anders Carlsson6fa90862007-11-25 00:25:21 +0000748 // Check that the clobbers are valid.
749 for (unsigned i = 0; i < NumClobbers; i++) {
750 StringLiteral *Literal = cast<StringLiteral>((Expr *)Clobbers[i]);
751 assert(!Literal->isWide() && "Clobber strings should not be wide!");
752
753 llvm::SmallString<16> Clobber(Literal->getStrData(),
754 Literal->getStrData() +
755 Literal->getByteLength());
756
757 if (!Context.Target.isValidGCCRegisterName(Clobber.c_str())) {
758 Diag(Literal->getLocStart(),
759 diag::err_unknown_register_name_in_asm,
760 Clobber.c_str());
761
762 // FIXME: We currently leak memory here.
763 return true;
764 }
765 }
766
Anders Carlssonb235fc22007-11-22 01:36:19 +0000767 return new AsmStmt(AsmLoc,
Anders Carlssondfab34a2008-02-05 23:03:50 +0000768 IsSimple,
Anders Carlsson39c47b52007-11-23 23:12:25 +0000769 IsVolatile,
Anders Carlssonb235fc22007-11-22 01:36:19 +0000770 NumOutputs,
771 NumInputs,
772 Names,
773 reinterpret_cast<StringLiteral**>(Constraints),
774 reinterpret_cast<Expr**>(Exprs),
775 cast<StringLiteral>(E),
776 NumClobbers,
777 reinterpret_cast<StringLiteral**>(Clobbers),
778 RParenLoc);
Chris Lattnerfe795952007-10-29 04:04:16 +0000779}
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +0000780
781Action::StmtResult
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000782Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +0000783 SourceLocation RParen, StmtTy *Parm,
784 StmtTy *Body, StmtTy *CatchList) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000785 ObjCAtCatchStmt *CS = new ObjCAtCatchStmt(AtLoc, RParen,
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +0000786 static_cast<Stmt*>(Parm), static_cast<Stmt*>(Body),
787 static_cast<Stmt*>(CatchList));
788 return CatchList ? CatchList : CS;
789}
790
Fariborz Jahanian161a9c52007-11-02 00:18:53 +0000791Action::StmtResult
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000792Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtTy *Body) {
793 ObjCAtFinallyStmt *FS = new ObjCAtFinallyStmt(AtLoc,
Fariborz Jahanian161a9c52007-11-02 00:18:53 +0000794 static_cast<Stmt*>(Body));
795 return FS;
796}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000797
798Action::StmtResult
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000799Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc,
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000800 StmtTy *Try, StmtTy *Catch, StmtTy *Finally) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000801 ObjCAtTryStmt *TS = new ObjCAtTryStmt(AtLoc, static_cast<Stmt*>(Try),
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000802 static_cast<Stmt*>(Catch),
803 static_cast<Stmt*>(Finally));
804 return TS;
805}
806
Fariborz Jahanian39f8f152007-11-07 02:00:49 +0000807Action::StmtResult
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000808Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, StmtTy *Throw) {
809 ObjCAtThrowStmt *TS = new ObjCAtThrowStmt(AtLoc, static_cast<Stmt*>(Throw));
Fariborz Jahanian39f8f152007-11-07 02:00:49 +0000810 return TS;
811}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000812
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +0000813Action::StmtResult
814Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprTy *SynchExpr,
815 StmtTy *SynchBody) {
816 ObjCAtSynchronizedStmt *SS = new ObjCAtSynchronizedStmt(AtLoc,
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000817 static_cast<Stmt*>(SynchExpr), static_cast<Stmt*>(SynchBody));
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +0000818 return SS;
819}
Fariborz Jahanianbd49a642007-11-02 15:39:31 +0000820
821