Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for statements. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 16 | #include "clang/AST/Expr.h" |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 17 | #include "clang/AST/Stmt.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 18 | #include "clang/Parse/Scope.h" |
Anders Carlsson | 49dadd6 | 2007-11-25 00:25:21 +0000 | [diff] [blame] | 19 | #include "clang/Basic/TargetInfo.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 20 | #include "clang/Basic/Diagnostic.h" |
| 21 | #include "clang/Basic/LangOptions.h" |
Anders Carlsson | 49dadd6 | 2007-11-25 00:25:21 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SmallString.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 23 | using namespace clang; |
| 24 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 25 | Sema::StmtResult Sema::ActOnExprStmt(ExprTy *expr) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 26 | Expr *E = static_cast<Expr*>(expr); |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 27 | assert(E && "ActOnExprStmt(): missing expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 28 | return E; |
| 29 | } |
| 30 | |
| 31 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 32 | Sema::StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 33 | return new NullStmt(SemiLoc); |
| 34 | } |
| 35 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 36 | Sema::StmtResult Sema::ActOnDeclStmt(DeclTy *decl) { |
Steve Naroff | cb59747 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 37 | if (decl) { |
| 38 | ScopedDecl *SD = dyn_cast<ScopedDecl>(static_cast<Decl *>(decl)); |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 39 | assert(SD && "Sema::ActOnDeclStmt(): expected ScopedDecl"); |
Steve Naroff | cb59747 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 40 | return new DeclStmt(SD); |
| 41 | } else |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 42 | return true; // error |
| 43 | } |
| 44 | |
| 45 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 46 | Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R, |
Chris Lattner | f2b0757 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 47 | StmtTy **elts, unsigned NumElts, bool isStmtExpr) { |
Chris Lattner | 3ea3b66 | 2007-08-27 04:29:41 +0000 | [diff] [blame] | 48 | 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 Naroff | cb59747 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 63 | ScopedDecl *D = cast<DeclStmt>(Elts[i])->getDecl(); |
Chris Lattner | 3ea3b66 | 2007-08-27 04:29:41 +0000 | [diff] [blame] | 64 | Diag(D->getLocation(), diag::ext_mixed_decls_code); |
| 65 | } |
| 66 | } |
Chris Lattner | f2b0757 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 67 | // 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 Naroff | 5d2fff8 | 2007-08-31 23:28:33 +0000 | [diff] [blame] | 93 | return new CompoundStmt(Elts, NumElts, L, R); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 97 | Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprTy *lhsval, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 98 | SourceLocation DotDotDotLoc, ExprTy *rhsval, |
| 99 | SourceLocation ColonLoc, StmtTy *subStmt) { |
| 100 | Stmt *SubStmt = static_cast<Stmt*>(subStmt); |
| 101 | Expr *LHSVal = ((Expr *)lhsval), *RHSVal = ((Expr *)rhsval); |
| 102 | assert((LHSVal != 0) && "missing expression in case statement"); |
| 103 | |
| 104 | SourceLocation ExpLoc; |
| 105 | // C99 6.8.4.2p3: The expression shall be an integer constant. |
| 106 | if (!LHSVal->isIntegerConstantExpr(Context, &ExpLoc)) { |
| 107 | Diag(ExpLoc, diag::err_case_label_not_integer_constant_expr, |
| 108 | LHSVal->getSourceRange()); |
| 109 | return SubStmt; |
| 110 | } |
| 111 | |
| 112 | // GCC extension: The expression shall be an integer constant. |
| 113 | if (RHSVal && !RHSVal->isIntegerConstantExpr(Context, &ExpLoc)) { |
| 114 | Diag(ExpLoc, diag::err_case_label_not_integer_constant_expr, |
| 115 | RHSVal->getSourceRange()); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 116 | RHSVal = 0; // Recover by just forgetting about it. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | if (SwitchStack.empty()) { |
| 120 | Diag(CaseLoc, diag::err_case_not_in_switch); |
| 121 | return SubStmt; |
| 122 | } |
| 123 | |
Steve Naroff | 5d2fff8 | 2007-08-31 23:28:33 +0000 | [diff] [blame] | 124 | CaseStmt *CS = new CaseStmt(LHSVal, RHSVal, SubStmt, CaseLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 125 | SwitchStack.back()->addSwitchCase(CS); |
| 126 | return CS; |
| 127 | } |
| 128 | |
| 129 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 130 | Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 131 | StmtTy *subStmt, Scope *CurScope) { |
| 132 | Stmt *SubStmt = static_cast<Stmt*>(subStmt); |
| 133 | |
| 134 | if (SwitchStack.empty()) { |
| 135 | Diag(DefaultLoc, diag::err_default_not_in_switch); |
| 136 | return SubStmt; |
| 137 | } |
| 138 | |
| 139 | DefaultStmt *DS = new DefaultStmt(DefaultLoc, SubStmt); |
| 140 | SwitchStack.back()->addSwitchCase(DS); |
| 141 | |
| 142 | return DS; |
| 143 | } |
| 144 | |
| 145 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 146 | Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 147 | SourceLocation ColonLoc, StmtTy *subStmt) { |
| 148 | Stmt *SubStmt = static_cast<Stmt*>(subStmt); |
| 149 | // 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) |
| 154 | return LabelDecl = new LabelStmt(IdentLoc, II, SubStmt); |
| 155 | |
| 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); |
| 163 | return SubStmt; |
| 164 | } |
| 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); |
| 169 | LabelDecl->setSubStmt(SubStmt); |
| 170 | return LabelDecl; |
| 171 | } |
| 172 | |
| 173 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 174 | Sema::ActOnIfStmt(SourceLocation IfLoc, ExprTy *CondVal, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 175 | StmtTy *ThenVal, SourceLocation ElseLoc, |
| 176 | StmtTy *ElseVal) { |
| 177 | Expr *condExpr = (Expr *)CondVal; |
Anders Carlsson | 663733e | 2007-10-10 20:50:11 +0000 | [diff] [blame] | 178 | Stmt *thenStmt = (Stmt *)ThenVal; |
| 179 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 180 | assert(condExpr && "ActOnIfStmt(): missing expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 181 | |
| 182 | DefaultFunctionArrayConversion(condExpr); |
| 183 | QualType condType = condExpr->getType(); |
| 184 | |
| 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 Carlsson | 663733e | 2007-10-10 20:50:11 +0000 | [diff] [blame] | 189 | // 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); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 202 | Sema::ActOnStartOfSwitchStmt(ExprTy *cond) { |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 203 | 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); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 209 | SwitchStack.push_back(SS); |
| 210 | return SS; |
| 211 | } |
| 212 | |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 213 | /// 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. |
| 216 | void 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 Lattner | 5c03960 | 2007-08-23 22:08:35 +0000 | [diff] [blame] | 236 | ConvVal.setIsSigned(NewSign); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 237 | ConvVal.extend(Val.getBitWidth()); |
Chris Lattner | 5c03960 | 2007-08-23 22:08:35 +0000 | [diff] [blame] | 238 | ConvVal.setIsSigned(Val.isSigned()); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 239 | 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 Lattner | 5c03960 | 2007-08-23 22:08:35 +0000 | [diff] [blame] | 245 | Val.setIsSigned(NewSign); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 246 | } 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 Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 257 | namespace { |
| 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 Lattner | 2157f27 | 2007-09-03 18:31:57 +0000 | [diff] [blame] | 263 | 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 Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 267 | bool operator()(const llvm::APSInt &LHS, |
| 268 | const std::pair<llvm::APSInt, CaseStmt*> &RHS) { |
| 269 | return LHS < RHS.first; |
| 270 | } |
| 271 | }; |
| 272 | } |
| 273 | |
Chris Lattner | 766afb8 | 2007-09-21 18:15:22 +0000 | [diff] [blame] | 274 | /// CmpCaseVals - Comparison predicate for sorting case values. |
| 275 | /// |
| 276 | static 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 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 288 | Action::StmtResult |
Chris Lattner | 766afb8 | 2007-09-21 18:15:22 +0000 | [diff] [blame] | 289 | Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtTy *Switch, |
| 290 | ExprTy *Body) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 291 | Stmt *BodyStmt = (Stmt*)Body; |
| 292 | |
| 293 | SwitchStmt *SS = SwitchStack.back(); |
| 294 | assert(SS == (SwitchStmt*)Switch && "switch stack missing push/pop!"); |
| 295 | |
Steve Naroff | a610eab | 2007-09-01 21:08:38 +0000 | [diff] [blame] | 296 | SS->setBody(BodyStmt, SwitchLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 297 | SwitchStack.pop_back(); |
| 298 | |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 299 | Expr *CondExpr = SS->getCond(); |
| 300 | QualType CondType = CondExpr->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 301 | |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 302 | if (!CondType->isIntegerType()) { // C99 6.8.4.2p1 |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 303 | Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer, |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 304 | CondType.getAsString(), CondExpr->getSourceRange()); |
| 305 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 306 | } |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 307 | |
| 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 Kaiser | 612f174 | 2007-09-16 00:04:22 +0000 | [diff] [blame] | 310 | unsigned CondWidth = |
| 311 | static_cast<unsigned>(Context.getTypeSize(CondType, SwitchLoc)); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 312 | 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 Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 317 | typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy; |
| 318 | CaseValsTy CaseVals; |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 319 | |
| 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; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 324 | |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 325 | bool CaseListIsErroneous = false; |
| 326 | |
| 327 | for (SwitchCase *SC = SS->getSwitchCaseList(); SC; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 328 | SC = SC->getNextSwitchCase()) { |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 329 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 330 | if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 331 | if (TheDefaultStmt) { |
| 332 | Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined); |
| 333 | Diag(TheDefaultStmt->getDefaultLoc(), diag::err_first_label); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 334 | |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 335 | // 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 Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 339 | CaseListIsErroneous = true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 340 | } |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 341 | TheDefaultStmt = DS; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 342 | |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 343 | } 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); |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame^] | 349 | Expr *Lo = CS->getLHS(); |
| 350 | Lo->isIntegerConstantExpr(LoVal, Context); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 351 | |
| 352 | // Convert the value to the same width/sign as the condition. |
| 353 | ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned, |
| 354 | CS->getLHS()->getLocStart(), |
| 355 | diag::warn_case_value_overflow); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 356 | |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame^] | 357 | // If the LHS is not the same type as the condition, insert an implicit |
| 358 | // cast. |
| 359 | ImpCastExprToType(Lo, CondType); |
| 360 | CS->setLHS(Lo); |
| 361 | |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 362 | // If this is a case range, remember it in CaseRanges, otherwise CaseVals. |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 363 | if (CS->getRHS()) |
| 364 | CaseRanges.push_back(std::make_pair(LoVal, CS)); |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 365 | else |
| 366 | CaseVals.push_back(std::make_pair(LoVal, CS)); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 370 | // Sort all the scalar case values so we can easily detect duplicates. |
Chris Lattner | 766afb8 | 2007-09-21 18:15:22 +0000 | [diff] [blame] | 371 | std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals); |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 372 | |
Chris Lattner | 2b1b9a8 | 2007-08-23 14:29:07 +0000 | [diff] [blame] | 373 | if (!CaseVals.empty()) { |
| 374 | for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) { |
| 375 | if (CaseVals[i].first == CaseVals[i+1].first) { |
| 376 | // If we have a duplicate, report it. |
| 377 | Diag(CaseVals[i+1].second->getLHS()->getLocStart(), |
| 378 | diag::err_duplicate_case, CaseVals[i].first.toString()); |
| 379 | Diag(CaseVals[i].second->getLHS()->getLocStart(), |
| 380 | diag::err_duplicate_case_prev); |
| 381 | // FIXME: We really want to remove the bogus case stmt from the substmt, |
| 382 | // but we have no way to do this right now. |
| 383 | CaseListIsErroneous = true; |
| 384 | } |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 385 | } |
| 386 | } |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 387 | |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 388 | // Detect duplicate case ranges, which usually don't exist at all in the first |
| 389 | // place. |
| 390 | if (!CaseRanges.empty()) { |
| 391 | // Sort all the case ranges by their low value so we can easily detect |
| 392 | // overlaps between ranges. |
Chris Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 393 | std::stable_sort(CaseRanges.begin(), CaseRanges.end()); |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 394 | |
| 395 | // Scan the ranges, computing the high values and removing empty ranges. |
| 396 | std::vector<llvm::APSInt> HiVals; |
Chris Lattner | 7443e0f | 2007-08-23 17:48:14 +0000 | [diff] [blame] | 397 | for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 398 | CaseStmt *CR = CaseRanges[i].second; |
| 399 | llvm::APSInt HiVal(32); |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame^] | 400 | Expr *Hi = CR->getRHS(); |
| 401 | Hi->isIntegerConstantExpr(HiVal, Context); |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 402 | |
| 403 | // Convert the value to the same width/sign as the condition. |
| 404 | ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned, |
| 405 | CR->getRHS()->getLocStart(), |
| 406 | diag::warn_case_value_overflow); |
| 407 | |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame^] | 408 | // If the LHS is not the same type as the condition, insert an implicit |
| 409 | // cast. |
| 410 | ImpCastExprToType(Hi, CondType); |
| 411 | CR->setRHS(Hi); |
| 412 | |
Chris Lattner | 7443e0f | 2007-08-23 17:48:14 +0000 | [diff] [blame] | 413 | // If the low value is bigger than the high value, the case is empty. |
| 414 | if (CaseRanges[i].first > HiVal) { |
| 415 | Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range, |
| 416 | SourceRange(CR->getLHS()->getLocStart(), |
| 417 | CR->getRHS()->getLocEnd())); |
| 418 | CaseRanges.erase(CaseRanges.begin()+i); |
| 419 | --i, --e; |
| 420 | continue; |
| 421 | } |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 422 | HiVals.push_back(HiVal); |
| 423 | } |
| 424 | |
| 425 | // Rescan the ranges, looking for overlap with singleton values and other |
Chris Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 426 | // ranges. Since the range list is sorted, we only need to compare case |
| 427 | // ranges with their neighbors. |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 428 | for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { |
Chris Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 429 | llvm::APSInt &CRLo = CaseRanges[i].first; |
| 430 | llvm::APSInt &CRHi = HiVals[i]; |
| 431 | CaseStmt *CR = CaseRanges[i].second; |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 432 | |
Chris Lattner | 0ab833c | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 433 | // Check to see whether the case range overlaps with any singleton cases. |
| 434 | CaseStmt *OverlapStmt = 0; |
| 435 | llvm::APSInt OverlapVal(32); |
| 436 | |
| 437 | // Find the smallest value >= the lower bound. If I is in the case range, |
| 438 | // then we have overlap. |
| 439 | CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(), |
| 440 | CaseVals.end(), CRLo, |
| 441 | CaseCompareFunctor()); |
| 442 | if (I != CaseVals.end() && I->first < CRHi) { |
| 443 | OverlapVal = I->first; // Found overlap with scalar. |
| 444 | OverlapStmt = I->second; |
| 445 | } |
| 446 | |
| 447 | // Find the smallest value bigger than the upper bound. |
| 448 | I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor()); |
| 449 | if (I != CaseVals.begin() && (I-1)->first >= CRLo) { |
| 450 | OverlapVal = (I-1)->first; // Found overlap with scalar. |
| 451 | OverlapStmt = (I-1)->second; |
| 452 | } |
| 453 | |
| 454 | // Check to see if this case stmt overlaps with the subsequent case range. |
| 455 | if (i && CRLo <= HiVals[i-1]) { |
| 456 | OverlapVal = HiVals[i-1]; // Found overlap with range. |
| 457 | OverlapStmt = CaseRanges[i-1].second; |
| 458 | } |
| 459 | |
| 460 | if (OverlapStmt) { |
| 461 | // If we have a duplicate, report it. |
| 462 | Diag(CR->getLHS()->getLocStart(), |
| 463 | diag::err_duplicate_case, OverlapVal.toString()); |
| 464 | Diag(OverlapStmt->getLHS()->getLocStart(), |
| 465 | diag::err_duplicate_case_prev); |
| 466 | // FIXME: We really want to remove the bogus case stmt from the substmt, |
| 467 | // but we have no way to do this right now. |
| 468 | CaseListIsErroneous = true; |
| 469 | } |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 470 | } |
| 471 | } |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 472 | |
Chris Lattner | 1a4066d | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 473 | // FIXME: If the case list was broken is some way, we don't have a good system |
| 474 | // to patch it up. Instead, just return the whole substmt as broken. |
| 475 | if (CaseListIsErroneous) |
| 476 | return true; |
Chris Lattner | 3429a81 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 477 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 478 | return SS; |
| 479 | } |
| 480 | |
| 481 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 482 | Sema::ActOnWhileStmt(SourceLocation WhileLoc, ExprTy *Cond, StmtTy *Body) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 483 | Expr *condExpr = (Expr *)Cond; |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 484 | assert(condExpr && "ActOnWhileStmt(): missing expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 485 | |
| 486 | DefaultFunctionArrayConversion(condExpr); |
| 487 | QualType condType = condExpr->getType(); |
| 488 | |
| 489 | if (!condType->isScalarType()) // C99 6.8.5p2 |
| 490 | return Diag(WhileLoc, diag::err_typecheck_statement_requires_scalar, |
| 491 | condType.getAsString(), condExpr->getSourceRange()); |
| 492 | |
Steve Naroff | 5d2fff8 | 2007-08-31 23:28:33 +0000 | [diff] [blame] | 493 | return new WhileStmt(condExpr, (Stmt*)Body, WhileLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 497 | Sema::ActOnDoStmt(SourceLocation DoLoc, StmtTy *Body, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 498 | SourceLocation WhileLoc, ExprTy *Cond) { |
| 499 | Expr *condExpr = (Expr *)Cond; |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 500 | assert(condExpr && "ActOnDoStmt(): missing expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 501 | |
| 502 | DefaultFunctionArrayConversion(condExpr); |
| 503 | QualType condType = condExpr->getType(); |
| 504 | |
| 505 | if (!condType->isScalarType()) // C99 6.8.5p2 |
| 506 | return Diag(DoLoc, diag::err_typecheck_statement_requires_scalar, |
| 507 | condType.getAsString(), condExpr->getSourceRange()); |
| 508 | |
Steve Naroff | 5d2fff8 | 2007-08-31 23:28:33 +0000 | [diff] [blame] | 509 | return new DoStmt((Stmt*)Body, condExpr, DoLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 513 | Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, |
Chris Lattner | 3332fbd | 2007-08-28 04:55:47 +0000 | [diff] [blame] | 514 | StmtTy *first, ExprTy *second, ExprTy *third, |
| 515 | SourceLocation RParenLoc, StmtTy *body) { |
| 516 | Stmt *First = static_cast<Stmt*>(first); |
| 517 | Expr *Second = static_cast<Expr*>(second); |
| 518 | Expr *Third = static_cast<Expr*>(third); |
| 519 | Stmt *Body = static_cast<Stmt*>(body); |
| 520 | |
Chris Lattner | 0661105 | 2007-08-28 05:03:08 +0000 | [diff] [blame] | 521 | if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) { |
| 522 | // C99 6.8.5p3: The declaration part of a 'for' statement shall only declare |
| 523 | // identifiers for objects having storage class 'auto' or 'register'. |
Steve Naroff | 2591e1b | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 524 | for (ScopedDecl *D = DS->getDecl(); D; D = D->getNextDeclarator()) { |
Chris Lattner | 0661105 | 2007-08-28 05:03:08 +0000 | [diff] [blame] | 525 | BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(D); |
| 526 | if (BVD && !BVD->hasLocalStorage()) |
| 527 | BVD = 0; |
| 528 | if (BVD == 0) |
Steve Naroff | cb59747 | 2007-09-13 21:41:19 +0000 | [diff] [blame] | 529 | Diag(dyn_cast<ScopedDecl>(D)->getLocation(), |
| 530 | diag::err_non_variable_decl_in_for); |
Chris Lattner | 0661105 | 2007-08-28 05:03:08 +0000 | [diff] [blame] | 531 | // FIXME: mark decl erroneous! |
| 532 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 533 | } |
| 534 | if (Second) { |
Chris Lattner | 3332fbd | 2007-08-28 04:55:47 +0000 | [diff] [blame] | 535 | DefaultFunctionArrayConversion(Second); |
| 536 | QualType SecondType = Second->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 537 | |
Chris Lattner | 3332fbd | 2007-08-28 04:55:47 +0000 | [diff] [blame] | 538 | if (!SecondType->isScalarType()) // C99 6.8.5p2 |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 539 | return Diag(ForLoc, diag::err_typecheck_statement_requires_scalar, |
Chris Lattner | 3332fbd | 2007-08-28 04:55:47 +0000 | [diff] [blame] | 540 | SecondType.getAsString(), Second->getSourceRange()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 541 | } |
Steve Naroff | 5d2fff8 | 2007-08-31 23:28:33 +0000 | [diff] [blame] | 542 | return new ForStmt(First, Second, Third, Body, ForLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Fariborz Jahanian | 1300bc7 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 545 | Action::StmtResult |
Fariborz Jahanian | df2b095 | 2008-01-10 00:24:29 +0000 | [diff] [blame] | 546 | Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, |
Fariborz Jahanian | 1300bc7 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 547 | SourceLocation LParenLoc, |
| 548 | StmtTy *first, ExprTy *second, |
| 549 | SourceLocation RParenLoc, StmtTy *body) { |
| 550 | Stmt *First = static_cast<Stmt*>(first); |
| 551 | Expr *Second = static_cast<Expr*>(second); |
| 552 | Stmt *Body = static_cast<Stmt*>(body); |
Fariborz Jahanian | 6833b3b | 2008-01-10 20:33:58 +0000 | [diff] [blame] | 553 | if (First) { |
| 554 | QualType FirstType; |
| 555 | if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) { |
| 556 | FirstType = cast<ValueDecl>(DS->getDecl())->getType(); |
| 557 | // C99 6.8.5p3: The declaration part of a 'for' statement shall only declare |
| 558 | // identifiers for objects having storage class 'auto' or 'register'. |
| 559 | ScopedDecl *D = DS->getDecl(); |
| 560 | BlockVarDecl *BVD = cast<BlockVarDecl>(D); |
| 561 | if (!BVD->hasLocalStorage()) |
| 562 | return Diag(BVD->getLocation(), diag::err_non_variable_decl_in_for); |
| 563 | if (D->getNextDeclarator()) |
| 564 | return Diag(D->getLocation(), diag::err_toomany_element_decls); |
| 565 | } |
| 566 | else |
| 567 | FirstType = static_cast<Expr*>(first)->getType(); |
| 568 | if (!isObjCObjectPointerType(FirstType)) |
| 569 | Diag(ForLoc, diag::err_selector_element_type, |
| 570 | FirstType.getAsString(), First->getSourceRange()); |
Fariborz Jahanian | 1300bc7 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 571 | } |
| 572 | if (Second) { |
| 573 | DefaultFunctionArrayConversion(Second); |
| 574 | QualType SecondType = Second->getType(); |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 575 | if (!isObjCObjectPointerType(SecondType)) |
Fariborz Jahanian | df2b095 | 2008-01-10 00:24:29 +0000 | [diff] [blame] | 576 | Diag(ForLoc, diag::err_collection_expr_type, |
Fariborz Jahanian | fe0982d | 2008-01-04 00:27:46 +0000 | [diff] [blame] | 577 | SecondType.getAsString(), Second->getSourceRange()); |
Fariborz Jahanian | 1300bc7 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 578 | } |
Fariborz Jahanian | df2b095 | 2008-01-10 00:24:29 +0000 | [diff] [blame] | 579 | return new ObjCForCollectionStmt(First, Second, Body, ForLoc, RParenLoc); |
Fariborz Jahanian | 1300bc7 | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 580 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 581 | |
| 582 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 583 | Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 584 | IdentifierInfo *LabelII) { |
| 585 | // Look up the record for this label identifier. |
| 586 | LabelStmt *&LabelDecl = LabelMap[LabelII]; |
| 587 | |
| 588 | // If we haven't seen this label yet, create a forward reference. |
| 589 | if (LabelDecl == 0) |
| 590 | LabelDecl = new LabelStmt(LabelLoc, LabelII, 0); |
| 591 | |
Ted Kremenek | a65ad46 | 2007-09-06 17:11:52 +0000 | [diff] [blame] | 592 | return new GotoStmt(LabelDecl, GotoLoc, LabelLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 596 | Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc,SourceLocation StarLoc, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 597 | ExprTy *DestExp) { |
| 598 | // FIXME: Verify that the operand is convertible to void*. |
| 599 | |
| 600 | return new IndirectGotoStmt((Expr*)DestExp); |
| 601 | } |
| 602 | |
| 603 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 604 | Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 605 | Scope *S = CurScope->getContinueParent(); |
| 606 | if (!S) { |
| 607 | // C99 6.8.6.2p1: A break shall appear only in or as a loop body. |
| 608 | Diag(ContinueLoc, diag::err_continue_not_in_loop); |
| 609 | return true; |
| 610 | } |
| 611 | |
Steve Naroff | c32a20d | 2007-08-31 23:49:30 +0000 | [diff] [blame] | 612 | return new ContinueStmt(ContinueLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 616 | Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 617 | Scope *S = CurScope->getBreakParent(); |
| 618 | if (!S) { |
| 619 | // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body. |
| 620 | Diag(BreakLoc, diag::err_break_not_in_loop_or_switch); |
| 621 | return true; |
| 622 | } |
| 623 | |
Steve Naroff | c32a20d | 2007-08-31 23:49:30 +0000 | [diff] [blame] | 624 | return new BreakStmt(BreakLoc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | |
| 628 | Action::StmtResult |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 629 | Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprTy *rex) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 630 | Expr *RetValExp = static_cast<Expr *>(rex); |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 631 | QualType FnRetType = CurFunctionDecl ? CurFunctionDecl->getResultType() : |
| 632 | CurMethodDecl->getResultType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 633 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 634 | if (FnRetType->isVoidType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 635 | if (RetValExp) // C99 6.8.6.4p1 (ext_ since GCC warns) |
Fariborz Jahanian | 336b2e8 | 2007-12-04 19:20:11 +0000 | [diff] [blame] | 636 | Diag(ReturnLoc, diag::ext_return_has_expr, |
| 637 | (CurFunctionDecl ? CurFunctionDecl->getIdentifier()->getName() : |
| 638 | CurMethodDecl->getSelector().getName()), |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 639 | RetValExp->getSourceRange()); |
Steve Naroff | c32a20d | 2007-08-31 23:49:30 +0000 | [diff] [blame] | 640 | return new ReturnStmt(ReturnLoc, RetValExp); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 641 | } else { |
| 642 | if (!RetValExp) { |
Fariborz Jahanian | 336b2e8 | 2007-12-04 19:20:11 +0000 | [diff] [blame] | 643 | const char *funcName = CurFunctionDecl ? |
| 644 | CurFunctionDecl->getIdentifier()->getName() : |
| 645 | CurMethodDecl->getSelector().getName().c_str(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 646 | if (getLangOptions().C99) // C99 6.8.6.4p1 (ext_ since GCC warns) |
| 647 | Diag(ReturnLoc, diag::ext_return_missing_expr, funcName); |
| 648 | else // C90 6.6.6.4p4 |
| 649 | Diag(ReturnLoc, diag::warn_return_missing_expr, funcName); |
Steve Naroff | c32a20d | 2007-08-31 23:49:30 +0000 | [diff] [blame] | 650 | return new ReturnStmt(ReturnLoc, (Expr*)0); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 651 | } |
| 652 | } |
| 653 | // we have a non-void function with an expression, continue checking |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 654 | QualType RetValType = RetValExp->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 655 | |
| 656 | // C99 6.8.6.4p3(136): The return statement is not an assignment. The |
| 657 | // overlap restriction of subclause 6.5.16.1 does not apply to the case of |
| 658 | // function return. |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 659 | AssignConvertType ConvTy = CheckSingleAssignmentConstraints(FnRetType, |
| 660 | RetValExp); |
| 661 | if (DiagnoseAssignmentResult(ConvTy, ReturnLoc, FnRetType, |
| 662 | RetValType, RetValExp, "returning")) |
| 663 | return true; |
Ted Kremenek | 45925ab | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 664 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 665 | if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc); |
Ted Kremenek | 45925ab | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 666 | |
Steve Naroff | c32a20d | 2007-08-31 23:49:30 +0000 | [diff] [blame] | 667 | return new ReturnStmt(ReturnLoc, (Expr*)RetValExp); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 668 | } |
| 669 | |
Anders Carlsson | 076c111 | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 670 | Sema::StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc, |
Anders Carlsson | 759f45d | 2007-11-23 23:12:25 +0000 | [diff] [blame] | 671 | bool IsVolatile, |
Anders Carlsson | 965d520 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 672 | unsigned NumOutputs, |
| 673 | unsigned NumInputs, |
| 674 | std::string *Names, |
| 675 | ExprTy **Constraints, |
| 676 | ExprTy **Exprs, |
Anders Carlsson | 076c111 | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 677 | ExprTy *AsmString, |
Anders Carlsson | 965d520 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 678 | unsigned NumClobbers, |
| 679 | ExprTy **Clobbers, |
Chris Lattner | 8a40a83 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 680 | SourceLocation RParenLoc) { |
Anders Carlsson | 076c111 | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 681 | Expr *E = (Expr *)AsmString; |
Anders Carlsson | 759f45d | 2007-11-23 23:12:25 +0000 | [diff] [blame] | 682 | |
Anders Carlsson | b4487a8 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 683 | for (unsigned i = 0; i < NumOutputs; i++) { |
Anders Carlsson | 4ce4230 | 2007-11-27 04:11:28 +0000 | [diff] [blame] | 684 | 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 Carlsson | b4487a8 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 701 | Expr *OutputExpr = (Expr *)Exprs[i]; |
| 702 | Expr::isLvalueResult Result = OutputExpr->isLvalue(); |
Anders Carlsson | b4487a8 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 703 | 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 Carlsson | b4487a8 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 715 | for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) { |
Anders Carlsson | 4ce4230 | 2007-11-27 04:11:28 +0000 | [diff] [blame] | 716 | StringLiteral *Literal = cast<StringLiteral>((Expr *)Constraints[i]); |
| 717 | assert(!Literal->isWide() && |
| 718 | "Output constraint strings should not be wide!"); |
Anders Carlsson | b4487a8 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 719 | |
Anders Carlsson | 4ce4230 | 2007-11-27 04:11:28 +0000 | [diff] [blame] | 720 | 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 Carlsson | b4487a8 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 735 | 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 Carlsson | 965d520 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 747 | |
Anders Carlsson | 49dadd6 | 2007-11-25 00:25:21 +0000 | [diff] [blame] | 748 | // 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 Carlsson | 965d520 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 767 | return new AsmStmt(AsmLoc, |
Anders Carlsson | 759f45d | 2007-11-23 23:12:25 +0000 | [diff] [blame] | 768 | IsVolatile, |
Anders Carlsson | 965d520 | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 769 | NumOutputs, |
| 770 | NumInputs, |
| 771 | Names, |
| 772 | reinterpret_cast<StringLiteral**>(Constraints), |
| 773 | reinterpret_cast<Expr**>(Exprs), |
| 774 | cast<StringLiteral>(E), |
| 775 | NumClobbers, |
| 776 | reinterpret_cast<StringLiteral**>(Clobbers), |
| 777 | RParenLoc); |
Chris Lattner | 8a40a83 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 778 | } |
Fariborz Jahanian | 0679836 | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 779 | |
| 780 | Action::StmtResult |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 781 | Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc, |
Fariborz Jahanian | 0679836 | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 782 | SourceLocation RParen, StmtTy *Parm, |
| 783 | StmtTy *Body, StmtTy *CatchList) { |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 784 | ObjCAtCatchStmt *CS = new ObjCAtCatchStmt(AtLoc, RParen, |
Fariborz Jahanian | 0679836 | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 785 | static_cast<Stmt*>(Parm), static_cast<Stmt*>(Body), |
| 786 | static_cast<Stmt*>(CatchList)); |
| 787 | return CatchList ? CatchList : CS; |
| 788 | } |
| 789 | |
Fariborz Jahanian | de3abf8 | 2007-11-02 00:18:53 +0000 | [diff] [blame] | 790 | Action::StmtResult |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 791 | Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtTy *Body) { |
| 792 | ObjCAtFinallyStmt *FS = new ObjCAtFinallyStmt(AtLoc, |
Fariborz Jahanian | de3abf8 | 2007-11-02 00:18:53 +0000 | [diff] [blame] | 793 | static_cast<Stmt*>(Body)); |
| 794 | return FS; |
| 795 | } |
Fariborz Jahanian | b8bf607 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 796 | |
| 797 | Action::StmtResult |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 798 | Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, |
Fariborz Jahanian | b8bf607 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 799 | StmtTy *Try, StmtTy *Catch, StmtTy *Finally) { |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 800 | ObjCAtTryStmt *TS = new ObjCAtTryStmt(AtLoc, static_cast<Stmt*>(Try), |
Fariborz Jahanian | b8bf607 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 801 | static_cast<Stmt*>(Catch), |
| 802 | static_cast<Stmt*>(Finally)); |
| 803 | return TS; |
| 804 | } |
| 805 | |
Fariborz Jahanian | 08df2c6 | 2007-11-07 02:00:49 +0000 | [diff] [blame] | 806 | Action::StmtResult |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 807 | Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, StmtTy *Throw) { |
| 808 | ObjCAtThrowStmt *TS = new ObjCAtThrowStmt(AtLoc, static_cast<Stmt*>(Throw)); |
Fariborz Jahanian | 08df2c6 | 2007-11-07 02:00:49 +0000 | [diff] [blame] | 809 | return TS; |
| 810 | } |
Fariborz Jahanian | b8bf607 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 811 | |
| 812 | |
| 813 | |