Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 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. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for statements. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
Anders Carlsson | 51fe996 | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 15 | #include "clang/AST/APValue.h" |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 419cfb3 | 2009-08-16 16:57:27 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprObjC.h" |
Chris Lattner | 16f0049 | 2009-04-26 01:32:48 +0000 | [diff] [blame] | 19 | #include "clang/AST/StmtObjC.h" |
| 20 | #include "clang/AST/StmtCXX.h" |
Anders Carlsson | 6fa9086 | 2007-11-25 00:25:21 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/STLExtras.h" |
| 23 | #include "llvm/ADT/SmallVector.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | |
Anders Carlsson | 6b1d283 | 2009-05-17 21:11:30 +0000 | [diff] [blame] | 26 | Sema::OwningStmtResult Sema::ActOnExprStmt(FullExprArg expr) { |
| 27 | Expr *E = expr->takeAs<Expr>(); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 28 | assert(E && "ActOnExprStmt(): missing expression"); |
Fariborz Jahanian | 16b1037 | 2009-09-03 00:43:07 +0000 | [diff] [blame] | 29 | if (E->getType()->isObjCInterfaceType()) { |
| 30 | if (LangOpts.ObjCNonFragileABI) |
| 31 | Diag(E->getLocEnd(), diag::err_indirection_requires_nonfragile_object) |
| 32 | << E->getType(); |
| 33 | else |
| 34 | Diag(E->getLocEnd(), diag::err_direct_interface_unsupported) |
| 35 | << E->getType(); |
| 36 | return StmtError(); |
| 37 | } |
Chris Lattner | 834a72a | 2008-07-25 23:18:17 +0000 | [diff] [blame] | 38 | // C99 6.8.3p2: The expression in an expression statement is evaluated as a |
| 39 | // void expression for its side effects. Conversion to void allows any |
| 40 | // operand, even incomplete types. |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 834a72a | 2008-07-25 23:18:17 +0000 | [diff] [blame] | 42 | // Same thing in for stmt first clause (when expr) and third clause. |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 43 | return Owned(static_cast<Stmt*>(E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 47 | Sema::OwningStmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc) { |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 48 | return Owned(new (Context) NullStmt(SemiLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 51 | Sema::OwningStmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 52 | SourceLocation StartLoc, |
| 53 | SourceLocation EndLoc) { |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 54 | DeclGroupRef DG = dg.getAsVal<DeclGroupRef>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 2040169 | 2009-04-12 20:13:14 +0000 | [diff] [blame] | 56 | // If we have an invalid decl, just return an error. |
| 57 | if (DG.isNull()) return StmtError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 59 | return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 62 | void Sema::DiagnoseUnusedExprResult(const Stmt *S) { |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 63 | const Expr *E = dyn_cast_or_null<Expr>(S); |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 64 | if (!E) |
| 65 | return; |
| 66 | |
| 67 | // Ignore expressions that have void type. |
| 68 | if (E->getType()->isVoidType()) |
| 69 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 70 | |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 71 | SourceLocation Loc; |
| 72 | SourceRange R1, R2; |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 73 | if (!E->isUnusedResultAWarning(Loc, R1, R2, Context)) |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 74 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | |
Chris Lattner | 419cfb3 | 2009-08-16 16:57:27 +0000 | [diff] [blame] | 76 | // Okay, we have an unused result. Depending on what the base expression is, |
| 77 | // we might want to make a more specific diagnostic. Check for one of these |
| 78 | // cases now. |
| 79 | unsigned DiagID = diag::warn_unused_expr; |
| 80 | E = E->IgnoreParens(); |
Fariborz Jahanian | 09105f5 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 81 | if (isa<ObjCImplicitSetterGetterRefExpr>(E)) |
Chris Lattner | 419cfb3 | 2009-08-16 16:57:27 +0000 | [diff] [blame] | 82 | DiagID = diag::warn_unused_property_expr; |
Chris Lattner | bc8d42c | 2009-10-13 04:53:48 +0000 | [diff] [blame] | 83 | |
| 84 | if (const CallExpr *CE = dyn_cast<CallExpr>(E)) { |
| 85 | // If the callee has attribute pure, const, or warn_unused_result, warn with |
| 86 | // a more specific message to make it clear what is happening. |
| 87 | if (const FunctionDecl *FD = CE->getDirectCallee()) { |
| 88 | if (FD->getAttr<WarnUnusedResultAttr>()) { |
| 89 | Diag(Loc, diag::warn_unused_call) << R1 << R2 << "warn_unused_result"; |
| 90 | return; |
| 91 | } |
| 92 | if (FD->getAttr<PureAttr>()) { |
| 93 | Diag(Loc, diag::warn_unused_call) << R1 << R2 << "pure"; |
| 94 | return; |
| 95 | } |
| 96 | if (FD->getAttr<ConstAttr>()) { |
| 97 | Diag(Loc, diag::warn_unused_call) << R1 << R2 << "const"; |
| 98 | return; |
| 99 | } |
| 100 | } |
| 101 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 102 | |
Chris Lattner | 419cfb3 | 2009-08-16 16:57:27 +0000 | [diff] [blame] | 103 | Diag(Loc, DiagID) << R1 << R2; |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 106 | Action::OwningStmtResult |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 107 | Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R, |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 108 | MultiStmtArg elts, bool isStmtExpr) { |
| 109 | unsigned NumElts = elts.size(); |
| 110 | Stmt **Elts = reinterpret_cast<Stmt**>(elts.release()); |
Chris Lattner | c30ebfb | 2007-08-27 04:29:41 +0000 | [diff] [blame] | 111 | // If we're in C89 mode, check that we don't have any decls after stmts. If |
| 112 | // so, emit an extension diagnostic. |
| 113 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus) { |
| 114 | // Note that __extension__ can be around a decl. |
| 115 | unsigned i = 0; |
| 116 | // Skip over all declarations. |
| 117 | for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i) |
| 118 | /*empty*/; |
| 119 | |
| 120 | // We found the end of the list or a statement. Scan for another declstmt. |
| 121 | for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i) |
| 122 | /*empty*/; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 123 | |
Chris Lattner | c30ebfb | 2007-08-27 04:29:41 +0000 | [diff] [blame] | 124 | if (i != NumElts) { |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 125 | Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin(); |
Chris Lattner | c30ebfb | 2007-08-27 04:29:41 +0000 | [diff] [blame] | 126 | Diag(D->getLocation(), diag::ext_mixed_decls_code); |
| 127 | } |
| 128 | } |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 129 | // Warn about unused expressions in statements. |
| 130 | for (unsigned i = 0; i != NumElts; ++i) { |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 131 | // Ignore statements that are last in a statement expression. |
| 132 | if (isStmtExpr && i == NumElts - 1) |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 133 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 134 | |
Anders Carlsson | 636463e | 2009-07-30 22:17:18 +0000 | [diff] [blame] | 135 | DiagnoseUnusedExprResult(Elts[i]); |
Chris Lattner | 98414c1 | 2007-08-31 21:49:55 +0000 | [diff] [blame] | 136 | } |
Sebastian Redl | a60528c | 2008-12-21 12:04:03 +0000 | [diff] [blame] | 137 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 138 | return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 141 | Action::OwningStmtResult |
| 142 | Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprArg lhsval, |
| 143 | SourceLocation DotDotDotLoc, ExprArg rhsval, |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 144 | SourceLocation ColonLoc) { |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 145 | assert((lhsval.get() != 0) && "missing expression in case statement"); |
| 146 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 147 | // C99 6.8.4.2p3: The expression shall be an integer constant. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 148 | // However, GCC allows any evaluatable integer expression. |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 149 | Expr *LHSVal = static_cast<Expr*>(lhsval.get()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 150 | if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent() && |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 151 | VerifyIntegerConstantExpression(LHSVal)) |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 152 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 153 | |
Chris Lattner | 6c36be5 | 2007-07-18 02:28:47 +0000 | [diff] [blame] | 154 | // GCC extension: The expression shall be an integer constant. |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 155 | |
| 156 | Expr *RHSVal = static_cast<Expr*>(rhsval.get()); |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 157 | if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() && |
| 158 | VerifyIntegerConstantExpression(RHSVal)) { |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 159 | RHSVal = 0; // Recover by just forgetting about it. |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 160 | rhsval = 0; |
| 161 | } |
| 162 | |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 163 | if (getSwitchStack().empty()) { |
Chris Lattner | 8a87e57 | 2007-07-23 17:05:23 +0000 | [diff] [blame] | 164 | Diag(CaseLoc, diag::err_case_not_in_switch); |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 165 | return StmtError(); |
Chris Lattner | 8a87e57 | 2007-07-23 17:05:23 +0000 | [diff] [blame] | 166 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 167 | |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 168 | // Only now release the smart pointers. |
| 169 | lhsval.release(); |
| 170 | rhsval.release(); |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 171 | CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc, |
| 172 | ColonLoc); |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 173 | getSwitchStack().back()->addSwitchCase(CS); |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 174 | return Owned(CS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 177 | /// ActOnCaseStmtBody - This installs a statement as the body of a case. |
| 178 | void Sema::ActOnCaseStmtBody(StmtTy *caseStmt, StmtArg subStmt) { |
| 179 | CaseStmt *CS = static_cast<CaseStmt*>(caseStmt); |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 180 | Stmt *SubStmt = subStmt.takeAs<Stmt>(); |
Chris Lattner | 24e1e70 | 2009-03-04 04:23:07 +0000 | [diff] [blame] | 181 | CS->setSubStmt(SubStmt); |
| 182 | } |
| 183 | |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 184 | Action::OwningStmtResult |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 185 | Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc, |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 186 | StmtArg subStmt, Scope *CurScope) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 187 | Stmt *SubStmt = subStmt.takeAs<Stmt>(); |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 188 | |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 189 | if (getSwitchStack().empty()) { |
Chris Lattner | 0fa152e | 2007-07-21 03:00:26 +0000 | [diff] [blame] | 190 | Diag(DefaultLoc, diag::err_default_not_in_switch); |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 191 | return Owned(SubStmt); |
Chris Lattner | 0fa152e | 2007-07-21 03:00:26 +0000 | [diff] [blame] | 192 | } |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 193 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 194 | DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt); |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 195 | getSwitchStack().back()->addSwitchCase(DS); |
Sebastian Redl | 117054a | 2008-12-28 16:13:43 +0000 | [diff] [blame] | 196 | return Owned(DS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 199 | Action::OwningStmtResult |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 200 | Sema::ActOnLabelStmt(SourceLocation IdentLoc, IdentifierInfo *II, |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 201 | SourceLocation ColonLoc, StmtArg subStmt) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 202 | Stmt *SubStmt = subStmt.takeAs<Stmt>(); |
Steve Naroff | f3cf897 | 2009-02-28 16:48:43 +0000 | [diff] [blame] | 203 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 204 | LabelStmt *&LabelDecl = getLabelMap()[II]; |
Steve Naroff | f3cf897 | 2009-02-28 16:48:43 +0000 | [diff] [blame] | 205 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 206 | // If not forward referenced or defined already, just create a new LabelStmt. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 207 | if (LabelDecl == 0) |
| 208 | return Owned(LabelDecl = new (Context) LabelStmt(IdentLoc, II, SubStmt)); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 209 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 210 | assert(LabelDecl->getID() == II && "Label mismatch!"); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 211 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 212 | // Otherwise, this label was either forward reference or multiply defined. If |
| 213 | // multiply defined, reject it now. |
| 214 | if (LabelDecl->getSubStmt()) { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 215 | Diag(IdentLoc, diag::err_redefinition_of_label) << LabelDecl->getID(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 216 | Diag(LabelDecl->getIdentLoc(), diag::note_previous_definition); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 217 | return Owned(SubStmt); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 218 | } |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 219 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 220 | // Otherwise, this label was forward declared, and we just found its real |
| 221 | // definition. Fill in the forward definition and return it. |
| 222 | LabelDecl->setIdentLoc(IdentLoc); |
Chris Lattner | 0fa152e | 2007-07-21 03:00:26 +0000 | [diff] [blame] | 223 | LabelDecl->setSubStmt(SubStmt); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 224 | return Owned(LabelDecl); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 227 | Action::OwningStmtResult |
Anders Carlsson | a99fad8 | 2009-05-17 18:26:53 +0000 | [diff] [blame] | 228 | Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 229 | StmtArg ThenVal, SourceLocation ElseLoc, |
| 230 | StmtArg ElseVal) { |
Anders Carlsson | a99fad8 | 2009-05-17 18:26:53 +0000 | [diff] [blame] | 231 | OwningExprResult CondResult(CondVal.release()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 232 | |
Anders Carlsson | a99fad8 | 2009-05-17 18:26:53 +0000 | [diff] [blame] | 233 | Expr *condExpr = CondResult.takeAs<Expr>(); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 234 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 235 | assert(condExpr && "ActOnIfStmt(): missing expression"); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 236 | if (CheckBooleanCondition(condExpr, IfLoc)) { |
Anders Carlsson | a99fad8 | 2009-05-17 18:26:53 +0000 | [diff] [blame] | 237 | CondResult = condExpr; |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 238 | return StmtError(); |
Douglas Gregor | d06f6ca | 2009-05-15 18:53:42 +0000 | [diff] [blame] | 239 | } |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 240 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 241 | Stmt *thenStmt = ThenVal.takeAs<Stmt>(); |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 242 | DiagnoseUnusedExprResult(thenStmt); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 243 | |
Anders Carlsson | 2d85f8b | 2007-10-10 20:50:11 +0000 | [diff] [blame] | 244 | // Warn if the if block has a null body without an else value. |
| 245 | // this helps prevent bugs due to typos, such as |
| 246 | // if (condition); |
| 247 | // do_stuff(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 248 | if (!ElseVal.get()) { |
Anders Carlsson | 2d85f8b | 2007-10-10 20:50:11 +0000 | [diff] [blame] | 249 | if (NullStmt* stmt = dyn_cast<NullStmt>(thenStmt)) |
| 250 | Diag(stmt->getSemiLoc(), diag::warn_empty_if_body); |
| 251 | } |
| 252 | |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 253 | Stmt *elseStmt = ElseVal.takeAs<Stmt>(); |
| 254 | DiagnoseUnusedExprResult(elseStmt); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 255 | |
Anders Carlsson | a99fad8 | 2009-05-17 18:26:53 +0000 | [diff] [blame] | 256 | CondResult.release(); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 257 | return Owned(new (Context) IfStmt(IfLoc, condExpr, thenStmt, |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 258 | ElseLoc, elseStmt)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 261 | Action::OwningStmtResult |
| 262 | Sema::ActOnStartOfSwitchStmt(ExprArg cond) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 263 | Expr *Cond = cond.takeAs<Expr>(); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 264 | |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 265 | if (getLangOptions().CPlusPlus) { |
| 266 | // C++ 6.4.2.p2: |
| 267 | // The condition shall be of integral type, enumeration type, or of a class |
| 268 | // type for which a single conversion function to integral or enumeration |
| 269 | // type exists (12.3). If the condition is of class type, the condition is |
| 270 | // converted by calling that conversion function, and the result of the |
| 271 | // conversion is used in place of the original condition for the remainder |
| 272 | // of this section. Integral promotions are performed. |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 273 | if (!Cond->isTypeDependent()) { |
| 274 | QualType Ty = Cond->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 275 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 276 | // FIXME: Handle class types. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 277 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 278 | // If the type is wrong a diagnostic will be emitted later at |
| 279 | // ActOnFinishSwitchStmt. |
| 280 | if (Ty->isIntegralType() || Ty->isEnumeralType()) { |
| 281 | // Integral promotions are performed. |
| 282 | // FIXME: Integral promotions for C++ are not complete. |
| 283 | UsualUnaryConversions(Cond); |
| 284 | } |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 285 | } |
| 286 | } else { |
| 287 | // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr. |
| 288 | UsualUnaryConversions(Cond); |
| 289 | } |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 290 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 291 | SwitchStmt *SS = new (Context) SwitchStmt(Cond); |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 292 | getSwitchStack().push_back(SS); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 293 | return Owned(SS); |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 294 | } |
Chris Lattner | 6c36be5 | 2007-07-18 02:28:47 +0000 | [diff] [blame] | 295 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 296 | /// ConvertIntegerToTypeWarnOnOverflow - Convert the specified APInt to have |
| 297 | /// the specified width and sign. If an overflow occurs, detect it and emit |
| 298 | /// the specified diagnostic. |
| 299 | void Sema::ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &Val, |
| 300 | unsigned NewWidth, bool NewSign, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 301 | SourceLocation Loc, |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 302 | unsigned DiagID) { |
| 303 | // Perform a conversion to the promoted condition type if needed. |
| 304 | if (NewWidth > Val.getBitWidth()) { |
| 305 | // If this is an extension, just do it. |
| 306 | llvm::APSInt OldVal(Val); |
| 307 | Val.extend(NewWidth); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 308 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 309 | // If the input was signed and negative and the output is unsigned, |
| 310 | // warn. |
| 311 | if (!NewSign && OldVal.isSigned() && OldVal.isNegative()) |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 312 | Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 313 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 314 | Val.setIsSigned(NewSign); |
| 315 | } else if (NewWidth < Val.getBitWidth()) { |
| 316 | // If this is a truncation, check for overflow. |
| 317 | llvm::APSInt ConvVal(Val); |
| 318 | ConvVal.trunc(NewWidth); |
Chris Lattner | b2137ae | 2007-08-23 22:08:35 +0000 | [diff] [blame] | 319 | ConvVal.setIsSigned(NewSign); |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 320 | ConvVal.extend(Val.getBitWidth()); |
Chris Lattner | b2137ae | 2007-08-23 22:08:35 +0000 | [diff] [blame] | 321 | ConvVal.setIsSigned(Val.isSigned()); |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 322 | if (ConvVal != Val) |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 323 | Diag(Loc, DiagID) << Val.toString(10) << ConvVal.toString(10); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 324 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 325 | // Regardless of whether a diagnostic was emitted, really do the |
| 326 | // truncation. |
| 327 | Val.trunc(NewWidth); |
Chris Lattner | b2137ae | 2007-08-23 22:08:35 +0000 | [diff] [blame] | 328 | Val.setIsSigned(NewSign); |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 329 | } else if (NewSign != Val.isSigned()) { |
| 330 | // Convert the sign to match the sign of the condition. This can cause |
| 331 | // overflow as well: unsigned(INTMIN) |
| 332 | llvm::APSInt OldVal(Val); |
| 333 | Val.setIsSigned(NewSign); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 334 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 335 | if (Val.isNegative()) // Sign bit changes meaning. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 336 | Diag(Loc, DiagID) << OldVal.toString(10) << Val.toString(10); |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 337 | } |
| 338 | } |
| 339 | |
Chris Lattner | 0471f5b | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 340 | namespace { |
| 341 | struct CaseCompareFunctor { |
| 342 | bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS, |
| 343 | const llvm::APSInt &RHS) { |
| 344 | return LHS.first < RHS; |
| 345 | } |
Chris Lattner | 0e85a27 | 2007-09-03 18:31:57 +0000 | [diff] [blame] | 346 | bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS, |
| 347 | const std::pair<llvm::APSInt, CaseStmt*> &RHS) { |
| 348 | return LHS.first < RHS.first; |
| 349 | } |
Chris Lattner | 0471f5b | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 350 | bool operator()(const llvm::APSInt &LHS, |
| 351 | const std::pair<llvm::APSInt, CaseStmt*> &RHS) { |
| 352 | return LHS < RHS.first; |
| 353 | } |
| 354 | }; |
| 355 | } |
| 356 | |
Chris Lattner | 764a7ce | 2007-09-21 18:15:22 +0000 | [diff] [blame] | 357 | /// CmpCaseVals - Comparison predicate for sorting case values. |
| 358 | /// |
| 359 | static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs, |
| 360 | const std::pair<llvm::APSInt, CaseStmt*>& rhs) { |
| 361 | if (lhs.first < rhs.first) |
| 362 | return true; |
| 363 | |
| 364 | if (lhs.first == rhs.first && |
| 365 | lhs.second->getCaseLoc().getRawEncoding() |
| 366 | < rhs.second->getCaseLoc().getRawEncoding()) |
| 367 | return true; |
| 368 | return false; |
| 369 | } |
| 370 | |
Chris Lattner | 5f04881 | 2009-10-16 16:45:22 +0000 | [diff] [blame] | 371 | /// GetTypeBeforeIntegralPromotion - Returns the pre-promotion type of |
| 372 | /// potentially integral-promoted expression @p expr. |
| 373 | static QualType GetTypeBeforeIntegralPromotion(const Expr* expr) { |
| 374 | const ImplicitCastExpr *ImplicitCast = |
| 375 | dyn_cast_or_null<ImplicitCastExpr>(expr); |
| 376 | if (ImplicitCast != NULL) { |
| 377 | const Expr *ExprBeforePromotion = ImplicitCast->getSubExpr(); |
| 378 | QualType TypeBeforePromotion = ExprBeforePromotion->getType(); |
| 379 | if (TypeBeforePromotion->isIntegralType()) { |
| 380 | return TypeBeforePromotion; |
| 381 | } |
| 382 | } |
| 383 | return expr->getType(); |
| 384 | } |
| 385 | |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 386 | Action::OwningStmtResult |
| 387 | Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, StmtArg Switch, |
| 388 | StmtArg Body) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 389 | Stmt *BodyStmt = Body.takeAs<Stmt>(); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 390 | |
Chris Lattner | bcfce66 | 2009-04-18 20:10:59 +0000 | [diff] [blame] | 391 | SwitchStmt *SS = getSwitchStack().back(); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 392 | assert(SS == (SwitchStmt*)Switch.get() && "switch stack missing push/pop!"); |
| 393 | |
Steve Naroff | 9dcbfa4 | 2007-09-01 21:08:38 +0000 | [diff] [blame] | 394 | SS->setBody(BodyStmt, SwitchLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 395 | getSwitchStack().pop_back(); |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 396 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 397 | Expr *CondExpr = SS->getCond(); |
| 398 | QualType CondType = CondExpr->getType(); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 399 | |
Chris Lattner | 5f04881 | 2009-10-16 16:45:22 +0000 | [diff] [blame] | 400 | // C++ 6.4.2.p2: |
| 401 | // Integral promotions are performed (on the switch condition). |
| 402 | // |
| 403 | // A case value unrepresentable by the original switch condition |
| 404 | // type (before the promotion) doesn't make sense, even when it can |
| 405 | // be represented by the promoted type. Therefore we need to find |
| 406 | // the pre-promotion type of the switch condition. |
| 407 | QualType CondTypeBeforePromotion = |
| 408 | GetTypeBeforeIntegralPromotion(CondExpr); |
| 409 | |
Edward O'Callaghan | 12356b1 | 2009-10-17 19:32:54 +0000 | [diff] [blame] | 410 | if (!CondExpr->isTypeDependent()) { |
| 411 | if (!CondType->isIntegerType()) { // C99 6.8.4.2p1 |
| 412 | Diag(SwitchLoc, diag::err_typecheck_statement_requires_integer) |
| 413 | << CondType << CondExpr->getSourceRange(); |
| 414 | return StmtError(); |
| 415 | } |
| 416 | |
| 417 | if (CondTypeBeforePromotion->isBooleanType()) { |
| 418 | // switch(bool_expr) {...} is often a programmer error, e.g. |
| 419 | // switch(n && mask) { ... } // Doh - should be "n & mask". |
| 420 | // One can always use an if statement instead of switch(bool_expr). |
| 421 | Diag(SwitchLoc, diag::warn_bool_switch_condition) |
| 422 | << CondExpr->getSourceRange(); |
| 423 | } |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 424 | } |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 425 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 426 | // Get the bitwidth of the switched-on value before promotions. We must |
| 427 | // convert the integer case values to this width before comparison. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 428 | bool HasDependentValue |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 429 | = CondExpr->isTypeDependent() || CondExpr->isValueDependent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 430 | unsigned CondWidth |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 431 | = HasDependentValue? 0 |
Chris Lattner | 5f04881 | 2009-10-16 16:45:22 +0000 | [diff] [blame] | 432 | : static_cast<unsigned>(Context.getTypeSize(CondTypeBeforePromotion)); |
| 433 | bool CondIsSigned = CondTypeBeforePromotion->isSignedIntegerType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 434 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 435 | // Accumulate all of the case values in a vector so that we can sort them |
| 436 | // and detect duplicates. This vector contains the APInt for the case after |
| 437 | // it has been converted to the condition type. |
Chris Lattner | 0471f5b | 2007-08-23 18:29:20 +0000 | [diff] [blame] | 438 | typedef llvm::SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy; |
| 439 | CaseValsTy CaseVals; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 440 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 441 | // Keep track of any GNU case ranges we see. The APSInt is the low value. |
| 442 | std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRanges; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 443 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 444 | DefaultStmt *TheDefaultStmt = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 445 | |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 446 | bool CaseListIsErroneous = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 447 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 448 | for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue; |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 449 | SC = SC->getNextSwitchCase()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 450 | |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 451 | if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) { |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 452 | if (TheDefaultStmt) { |
| 453 | Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 454 | Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev); |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 455 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 456 | // FIXME: Remove the default statement from the switch block so that |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 457 | // we'll return a valid AST. This requires recursing down the AST and |
| 458 | // finding it, not something we are set up to do right now. For now, |
| 459 | // just lop the entire switch stmt out of the AST. |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 460 | CaseListIsErroneous = true; |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 461 | } |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 462 | TheDefaultStmt = DS; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 463 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 464 | } else { |
| 465 | CaseStmt *CS = cast<CaseStmt>(SC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 466 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 467 | // We already verified that the expression has a i-c-e value (C99 |
| 468 | // 6.8.4.2p3) - get that value now. |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 469 | Expr *Lo = CS->getLHS(); |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 470 | |
| 471 | if (Lo->isTypeDependent() || Lo->isValueDependent()) { |
| 472 | HasDependentValue = true; |
| 473 | break; |
| 474 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 475 | |
Anders Carlsson | 51fe996 | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 476 | llvm::APSInt LoVal = Lo->EvaluateAsInt(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 477 | |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 478 | // Convert the value to the same width/sign as the condition. |
| 479 | ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned, |
| 480 | CS->getLHS()->getLocStart(), |
| 481 | diag::warn_case_value_overflow); |
Anders Carlsson | c1fcb77 | 2007-07-22 07:07:56 +0000 | [diff] [blame] | 482 | |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 483 | // If the LHS is not the same type as the condition, insert an implicit |
| 484 | // cast. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 485 | ImpCastExprToType(Lo, CondType, CastExpr::CK_IntegralCast); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 486 | CS->setLHS(Lo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 487 | |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 488 | // If this is a case range, remember it in CaseRanges, otherwise CaseVals. |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 489 | if (CS->getRHS()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 490 | if (CS->getRHS()->isTypeDependent() || |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 491 | CS->getRHS()->isValueDependent()) { |
| 492 | HasDependentValue = true; |
| 493 | break; |
| 494 | } |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 495 | CaseRanges.push_back(std::make_pair(LoVal, CS)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 496 | } else |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 497 | CaseVals.push_back(std::make_pair(LoVal, CS)); |
Chris Lattner | f4021e7 | 2007-08-23 05:46:52 +0000 | [diff] [blame] | 498 | } |
| 499 | } |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 500 | |
| 501 | if (!HasDependentValue) { |
| 502 | // Sort all the scalar case values so we can easily detect duplicates. |
| 503 | std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals); |
| 504 | |
| 505 | if (!CaseVals.empty()) { |
| 506 | for (unsigned i = 0, e = CaseVals.size()-1; i != e; ++i) { |
| 507 | if (CaseVals[i].first == CaseVals[i+1].first) { |
| 508 | // If we have a duplicate, report it. |
| 509 | Diag(CaseVals[i+1].second->getLHS()->getLocStart(), |
| 510 | diag::err_duplicate_case) << CaseVals[i].first.toString(10); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 511 | Diag(CaseVals[i].second->getLHS()->getLocStart(), |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 512 | diag::note_duplicate_case_prev); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 513 | // FIXME: We really want to remove the bogus case stmt from the |
| 514 | // substmt, but we have no way to do this right now. |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 515 | CaseListIsErroneous = true; |
| 516 | } |
| 517 | } |
| 518 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 519 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 520 | // Detect duplicate case ranges, which usually don't exist at all in |
| 521 | // the first place. |
| 522 | if (!CaseRanges.empty()) { |
| 523 | // Sort all the case ranges by their low value so we can easily detect |
| 524 | // overlaps between ranges. |
| 525 | std::stable_sort(CaseRanges.begin(), CaseRanges.end()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 526 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 527 | // Scan the ranges, computing the high values and removing empty ranges. |
| 528 | std::vector<llvm::APSInt> HiVals; |
| 529 | for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { |
| 530 | CaseStmt *CR = CaseRanges[i].second; |
| 531 | Expr *Hi = CR->getRHS(); |
| 532 | llvm::APSInt HiVal = Hi->EvaluateAsInt(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 533 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 534 | // Convert the value to the same width/sign as the condition. |
| 535 | ConvertIntegerToTypeWarnOnOverflow(HiVal, CondWidth, CondIsSigned, |
| 536 | CR->getRHS()->getLocStart(), |
| 537 | diag::warn_case_value_overflow); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 538 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 539 | // If the LHS is not the same type as the condition, insert an implicit |
| 540 | // cast. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 541 | ImpCastExprToType(Hi, CondType, CastExpr::CK_IntegralCast); |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 542 | CR->setRHS(Hi); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 543 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 544 | // If the low value is bigger than the high value, the case is empty. |
| 545 | if (CaseRanges[i].first > HiVal) { |
| 546 | Diag(CR->getLHS()->getLocStart(), diag::warn_case_empty_range) |
| 547 | << SourceRange(CR->getLHS()->getLocStart(), |
| 548 | CR->getRHS()->getLocEnd()); |
| 549 | CaseRanges.erase(CaseRanges.begin()+i); |
| 550 | --i, --e; |
| 551 | continue; |
| 552 | } |
| 553 | HiVals.push_back(HiVal); |
| 554 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 555 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 556 | // Rescan the ranges, looking for overlap with singleton values and other |
| 557 | // ranges. Since the range list is sorted, we only need to compare case |
| 558 | // ranges with their neighbors. |
| 559 | for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { |
| 560 | llvm::APSInt &CRLo = CaseRanges[i].first; |
| 561 | llvm::APSInt &CRHi = HiVals[i]; |
| 562 | CaseStmt *CR = CaseRanges[i].second; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 563 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 564 | // Check to see whether the case range overlaps with any |
| 565 | // singleton cases. |
| 566 | CaseStmt *OverlapStmt = 0; |
| 567 | llvm::APSInt OverlapVal(32); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 568 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 569 | // Find the smallest value >= the lower bound. If I is in the |
| 570 | // case range, then we have overlap. |
| 571 | CaseValsTy::iterator I = std::lower_bound(CaseVals.begin(), |
| 572 | CaseVals.end(), CRLo, |
| 573 | CaseCompareFunctor()); |
| 574 | if (I != CaseVals.end() && I->first < CRHi) { |
| 575 | OverlapVal = I->first; // Found overlap with scalar. |
| 576 | OverlapStmt = I->second; |
| 577 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 578 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 579 | // Find the smallest value bigger than the upper bound. |
| 580 | I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor()); |
| 581 | if (I != CaseVals.begin() && (I-1)->first >= CRLo) { |
| 582 | OverlapVal = (I-1)->first; // Found overlap with scalar. |
| 583 | OverlapStmt = (I-1)->second; |
| 584 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 585 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 586 | // Check to see if this case stmt overlaps with the subsequent |
| 587 | // case range. |
| 588 | if (i && CRLo <= HiVals[i-1]) { |
| 589 | OverlapVal = HiVals[i-1]; // Found overlap with range. |
| 590 | OverlapStmt = CaseRanges[i-1].second; |
| 591 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 592 | |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 593 | if (OverlapStmt) { |
| 594 | // If we have a duplicate, report it. |
| 595 | Diag(CR->getLHS()->getLocStart(), diag::err_duplicate_case) |
| 596 | << OverlapVal.toString(10); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 597 | Diag(OverlapStmt->getLHS()->getLocStart(), |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 598 | diag::note_duplicate_case_prev); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 599 | // FIXME: We really want to remove the bogus case stmt from the |
| 600 | // substmt, but we have no way to do this right now. |
Douglas Gregor | dbb26db | 2009-05-15 23:57:33 +0000 | [diff] [blame] | 601 | CaseListIsErroneous = true; |
| 602 | } |
Chris Lattner | f334850 | 2007-08-23 14:29:07 +0000 | [diff] [blame] | 603 | } |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 604 | } |
| 605 | } |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 606 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 607 | // FIXME: If the case list was broken is some way, we don't have a good system |
| 608 | // to patch it up. Instead, just return the whole substmt as broken. |
Chris Lattner | b2ec9d6 | 2007-08-23 06:23:56 +0000 | [diff] [blame] | 609 | if (CaseListIsErroneous) |
Sebastian Redl | de30747 | 2009-01-11 00:38:46 +0000 | [diff] [blame] | 610 | return StmtError(); |
| 611 | |
| 612 | Switch.release(); |
| 613 | return Owned(SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 614 | } |
| 615 | |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 616 | Action::OwningStmtResult |
Anders Carlsson | 7f537c1 | 2009-05-17 21:22:26 +0000 | [diff] [blame] | 617 | Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, StmtArg Body) { |
| 618 | ExprArg CondArg(Cond.release()); |
| 619 | Expr *condExpr = CondArg.takeAs<Expr>(); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 620 | assert(condExpr && "ActOnWhileStmt(): missing expression"); |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 621 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 622 | if (CheckBooleanCondition(condExpr, WhileLoc)) { |
Anders Carlsson | 7f537c1 | 2009-05-17 21:22:26 +0000 | [diff] [blame] | 623 | CondArg = condExpr; |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 624 | return StmtError(); |
Douglas Gregor | 4a2e204 | 2009-05-15 21:45:53 +0000 | [diff] [blame] | 625 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 626 | |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 627 | Stmt *bodyStmt = Body.takeAs<Stmt>(); |
| 628 | DiagnoseUnusedExprResult(bodyStmt); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 629 | |
Anders Carlsson | 7f537c1 | 2009-05-17 21:22:26 +0000 | [diff] [blame] | 630 | CondArg.release(); |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 631 | return Owned(new (Context) WhileStmt(condExpr, bodyStmt, WhileLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 632 | } |
| 633 | |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 634 | Action::OwningStmtResult |
| 635 | Sema::ActOnDoStmt(SourceLocation DoLoc, StmtArg Body, |
Chris Lattner | 9891359 | 2009-06-12 23:04:47 +0000 | [diff] [blame] | 636 | SourceLocation WhileLoc, SourceLocation CondLParen, |
| 637 | ExprArg Cond, SourceLocation CondRParen) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 638 | Expr *condExpr = Cond.takeAs<Expr>(); |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 639 | assert(condExpr && "ActOnDoStmt(): missing expression"); |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 640 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 641 | if (CheckBooleanCondition(condExpr, DoLoc)) { |
Douglas Gregor | 9f3ca2a | 2009-05-15 21:56:04 +0000 | [diff] [blame] | 642 | Cond = condExpr; |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 643 | return StmtError(); |
Douglas Gregor | 9f3ca2a | 2009-05-15 21:56:04 +0000 | [diff] [blame] | 644 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 645 | |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 646 | Stmt *bodyStmt = Body.takeAs<Stmt>(); |
| 647 | DiagnoseUnusedExprResult(bodyStmt); |
| 648 | |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 649 | Cond.release(); |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 650 | return Owned(new (Context) DoStmt(bodyStmt, condExpr, DoLoc, |
Chris Lattner | 9891359 | 2009-06-12 23:04:47 +0000 | [diff] [blame] | 651 | WhileLoc, CondRParen)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 652 | } |
| 653 | |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 654 | Action::OwningStmtResult |
| 655 | Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, |
| 656 | StmtArg first, ExprArg second, ExprArg third, |
| 657 | SourceLocation RParenLoc, StmtArg body) { |
| 658 | Stmt *First = static_cast<Stmt*>(first.get()); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 659 | Expr *Second = second.takeAs<Expr>(); |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 660 | Expr *Third = static_cast<Expr*>(third.get()); |
| 661 | Stmt *Body = static_cast<Stmt*>(body.get()); |
| 662 | |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 663 | if (!getLangOptions().CPlusPlus) { |
| 664 | if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) { |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 665 | // C99 6.8.5p3: The declaration part of a 'for' statement shall only |
| 666 | // declare identifiers for objects having storage class 'auto' or |
| 667 | // 'register'. |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 668 | for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end(); |
| 669 | DI!=DE; ++DI) { |
| 670 | VarDecl *VD = dyn_cast<VarDecl>(*DI); |
| 671 | if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage()) |
| 672 | VD = 0; |
| 673 | if (VD == 0) |
| 674 | Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for); |
| 675 | // FIXME: mark decl erroneous! |
| 676 | } |
Chris Lattner | ae3b701 | 2007-08-28 05:03:08 +0000 | [diff] [blame] | 677 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 678 | } |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 679 | if (Second && CheckBooleanCondition(Second, ForLoc)) { |
| 680 | second = Second; |
| 681 | return StmtError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 682 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 683 | |
Anders Carlsson | 3af708f | 2009-08-01 01:39:59 +0000 | [diff] [blame] | 684 | DiagnoseUnusedExprResult(First); |
| 685 | DiagnoseUnusedExprResult(Third); |
Anders Carlsson | 7544311 | 2009-07-30 22:39:03 +0000 | [diff] [blame] | 686 | DiagnoseUnusedExprResult(Body); |
| 687 | |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 688 | first.release(); |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 689 | third.release(); |
| 690 | body.release(); |
Douglas Gregor | 5831c6a | 2009-05-15 22:12:32 +0000 | [diff] [blame] | 691 | return Owned(new (Context) ForStmt(First, Second, Third, Body, ForLoc, |
| 692 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 693 | } |
| 694 | |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 695 | Action::OwningStmtResult |
| 696 | Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, |
| 697 | SourceLocation LParenLoc, |
| 698 | StmtArg first, ExprArg second, |
| 699 | SourceLocation RParenLoc, StmtArg body) { |
| 700 | Stmt *First = static_cast<Stmt*>(first.get()); |
| 701 | Expr *Second = static_cast<Expr*>(second.get()); |
| 702 | Stmt *Body = static_cast<Stmt*>(body.get()); |
Fariborz Jahanian | 20552d2 | 2008-01-10 20:33:58 +0000 | [diff] [blame] | 703 | if (First) { |
| 704 | QualType FirstType; |
| 705 | if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) { |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 706 | if (!DS->isSingleDecl()) |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 707 | return StmtError(Diag((*DS->decl_begin())->getLocation(), |
| 708 | diag::err_toomany_element_decls)); |
| 709 | |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 710 | Decl *D = DS->getSingleDecl(); |
Ted Kremenek | f34afee | 2008-10-06 20:58:11 +0000 | [diff] [blame] | 711 | FirstType = cast<ValueDecl>(D)->getType(); |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 712 | // C99 6.8.5p3: The declaration part of a 'for' statement shall only |
| 713 | // declare identifiers for objects having storage class 'auto' or |
| 714 | // 'register'. |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 715 | VarDecl *VD = cast<VarDecl>(D); |
| 716 | if (VD->isBlockVarDecl() && !VD->hasLocalStorage()) |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 717 | return StmtError(Diag(VD->getLocation(), |
| 718 | diag::err_non_variable_decl_in_for)); |
Anders Carlsson | 1fe379f | 2008-08-25 18:16:36 +0000 | [diff] [blame] | 719 | } else { |
Chris Lattner | 810f6d5 | 2009-03-13 17:38:01 +0000 | [diff] [blame] | 720 | if (cast<Expr>(First)->isLvalue(Context) != Expr::LV_Valid) |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 721 | return StmtError(Diag(First->getLocStart(), |
| 722 | diag::err_selector_element_not_lvalue) |
| 723 | << First->getSourceRange()); |
| 724 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 725 | FirstType = static_cast<Expr*>(First)->getType(); |
Anders Carlsson | 1fe379f | 2008-08-25 18:16:36 +0000 | [diff] [blame] | 726 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 727 | if (!FirstType->isObjCObjectPointerType() && |
Fariborz Jahanian | a5e42a8 | 2009-08-14 21:53:27 +0000 | [diff] [blame] | 728 | !FirstType->isBlockPointerType()) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 729 | Diag(ForLoc, diag::err_selector_element_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 730 | << FirstType << First->getSourceRange(); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 731 | } |
| 732 | if (Second) { |
| 733 | DefaultFunctionArrayConversion(Second); |
| 734 | QualType SecondType = Second->getType(); |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 735 | if (!SecondType->isObjCObjectPointerType()) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 736 | Diag(ForLoc, diag::err_collection_expr_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 737 | << SecondType << Second->getSourceRange(); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 738 | } |
Sebastian Redl | f05b152 | 2009-01-16 23:28:06 +0000 | [diff] [blame] | 739 | first.release(); |
| 740 | second.release(); |
| 741 | body.release(); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 742 | return Owned(new (Context) ObjCForCollectionStmt(First, Second, Body, |
| 743 | ForLoc, RParenLoc)); |
Fariborz Jahanian | 3ba5a0f | 2008-01-03 17:55:25 +0000 | [diff] [blame] | 744 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 745 | |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 746 | Action::OwningStmtResult |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 747 | Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 748 | IdentifierInfo *LabelII) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 749 | // If we are in a block, reject all gotos for now. |
| 750 | if (CurBlock) |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 751 | return StmtError(Diag(GotoLoc, diag::err_goto_in_block)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 752 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 753 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 754 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 755 | |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 756 | // If we haven't seen this label yet, create a forward reference. |
| 757 | if (LabelDecl == 0) |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 758 | LabelDecl = new (Context) LabelStmt(LabelLoc, LabelII, 0); |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 759 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 760 | return Owned(new (Context) GotoStmt(LabelDecl, GotoLoc, LabelLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 761 | } |
| 762 | |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 763 | Action::OwningStmtResult |
Chris Lattner | ad56d68 | 2009-04-19 01:04:21 +0000 | [diff] [blame] | 764 | Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 765 | ExprArg DestExp) { |
Eli Friedman | bbf4623 | 2009-03-26 00:18:06 +0000 | [diff] [blame] | 766 | // Convert operand to void* |
Eli Friedman | 3308382 | 2009-03-26 07:32:37 +0000 | [diff] [blame] | 767 | Expr* E = DestExp.takeAs<Expr>(); |
Douglas Gregor | 5f1b9e6 | 2009-05-16 00:20:29 +0000 | [diff] [blame] | 768 | if (!E->isTypeDependent()) { |
| 769 | QualType ETy = E->getType(); |
| 770 | AssignConvertType ConvTy = |
| 771 | CheckSingleAssignmentConstraints(Context.VoidPtrTy, E); |
| 772 | if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy, |
| 773 | E, "passing")) |
| 774 | return StmtError(); |
| 775 | } |
| 776 | return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 777 | } |
| 778 | |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 779 | Action::OwningStmtResult |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 780 | Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 781 | Scope *S = CurScope->getContinueParent(); |
| 782 | if (!S) { |
| 783 | // C99 6.8.6.2p1: A break shall appear only in or as a loop body. |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 784 | return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 785 | } |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 786 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 787 | return Owned(new (Context) ContinueStmt(ContinueLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 788 | } |
| 789 | |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 790 | Action::OwningStmtResult |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 791 | Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 792 | Scope *S = CurScope->getBreakParent(); |
| 793 | if (!S) { |
| 794 | // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body. |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 795 | return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 796 | } |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 797 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 798 | return Owned(new (Context) BreakStmt(BreakLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 799 | } |
| 800 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 801 | /// ActOnBlockReturnStmt - Utility routine to figure out block's return type. |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 802 | /// |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 803 | Action::OwningStmtResult |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 804 | Sema::ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 805 | // If this is the first return we've seen in the block, infer the type of |
| 806 | // the block from it. |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 807 | if (CurBlock->ReturnType.isNull()) { |
Steve Naroff | c50a4a5 | 2008-09-16 22:25:10 +0000 | [diff] [blame] | 808 | if (RetValExp) { |
Steve Naroff | 1656442 | 2008-09-24 22:26:48 +0000 | [diff] [blame] | 809 | // Don't call UsualUnaryConversions(), since we don't want to do |
| 810 | // integer promotions here. |
| 811 | DefaultFunctionArrayConversion(RetValExp); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 812 | CurBlock->ReturnType = RetValExp->getType(); |
| 813 | if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(RetValExp)) { |
| 814 | // We have to remove a 'const' added to copied-in variable which was |
| 815 | // part of the implementation spec. and not the actual qualifier for |
| 816 | // the variable. |
| 817 | if (CDRE->isConstQualAdded()) |
| 818 | CurBlock->ReturnType.removeConst(); |
| 819 | } |
Steve Naroff | c50a4a5 | 2008-09-16 22:25:10 +0000 | [diff] [blame] | 820 | } else |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 821 | CurBlock->ReturnType = Context.VoidTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 822 | } |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 823 | QualType FnRetType = CurBlock->ReturnType; |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 824 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 825 | if (CurBlock->TheDecl->hasAttr<NoReturnAttr>()) { |
Mike Stump | 6c92fa7 | 2009-04-29 21:40:37 +0000 | [diff] [blame] | 826 | Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr) |
| 827 | << getCurFunctionOrMethodDecl()->getDeclName(); |
| 828 | return StmtError(); |
| 829 | } |
| 830 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 831 | // Otherwise, verify that this result type matches the previous one. We are |
| 832 | // pickier with blocks than for normal functions because we don't have GCC |
| 833 | // compatibility to worry about here. |
| 834 | if (CurBlock->ReturnType->isVoidType()) { |
| 835 | if (RetValExp) { |
| 836 | Diag(ReturnLoc, diag::err_return_block_has_expr); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 837 | RetValExp->Destroy(Context); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 838 | RetValExp = 0; |
| 839 | } |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 840 | return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 841 | } |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 842 | |
| 843 | if (!RetValExp) |
| 844 | return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr)); |
| 845 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 846 | if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) { |
| 847 | // we have a non-void block with an expression, continue checking |
| 848 | QualType RetValType = RetValExp->getType(); |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 849 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 850 | // C99 6.8.6.4p3(136): The return statement is not an assignment. The |
| 851 | // overlap restriction of subclause 6.5.16.1 does not apply to the case of |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 852 | // function return. |
| 853 | |
| 854 | // In C++ the return statement is handled via a copy initialization. |
| 855 | // the C version of which boils down to CheckSingleAssignmentConstraints. |
| 856 | // FIXME: Leaks RetValExp. |
| 857 | if (PerformCopyInitialization(RetValExp, FnRetType, "returning")) |
| 858 | return StmtError(); |
| 859 | |
| 860 | if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 861 | } |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 862 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 863 | return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 864 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 865 | |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 866 | /// IsReturnCopyElidable - Whether returning @p RetExpr from a function that |
| 867 | /// returns a @p RetType fulfills the criteria for copy elision (C++0x 12.8p15). |
| 868 | static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType, |
| 869 | Expr *RetExpr) { |
| 870 | QualType ExprType = RetExpr->getType(); |
| 871 | // - in a return statement in a function with ... |
| 872 | // ... a class return type ... |
| 873 | if (!RetType->isRecordType()) |
| 874 | return false; |
| 875 | // ... the same cv-unqualified type as the function return type ... |
| 876 | if (Ctx.getCanonicalType(RetType).getUnqualifiedType() != |
| 877 | Ctx.getCanonicalType(ExprType).getUnqualifiedType()) |
| 878 | return false; |
| 879 | // ... the expression is the name of a non-volatile automatic object ... |
| 880 | // We ignore parentheses here. |
| 881 | // FIXME: Is this compliant? |
| 882 | const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetExpr->IgnoreParens()); |
| 883 | if (!DR) |
| 884 | return false; |
| 885 | const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()); |
| 886 | if (!VD) |
| 887 | return false; |
| 888 | return VD->hasLocalStorage() && !VD->getType()->isReferenceType() |
| 889 | && !VD->getType().isVolatileQualified(); |
| 890 | } |
| 891 | |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 892 | Action::OwningStmtResult |
Anders Carlsson | f53b443 | 2009-08-18 16:11:00 +0000 | [diff] [blame] | 893 | Sema::ActOnReturnStmt(SourceLocation ReturnLoc, ExprArg rex) { |
| 894 | Expr *RetValExp = rex.takeAs<Expr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 895 | if (CurBlock) |
| 896 | return ActOnBlockReturnStmt(ReturnLoc, RetValExp); |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 897 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 898 | QualType FnRetType; |
Mike Stump | f7c41da | 2009-04-29 00:43:21 +0000 | [diff] [blame] | 899 | if (const FunctionDecl *FD = getCurFunctionDecl()) { |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 900 | FnRetType = FD->getResultType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 901 | if (FD->hasAttr<NoReturnAttr>()) |
Chris Lattner | 8662587 | 2009-05-31 19:32:13 +0000 | [diff] [blame] | 902 | Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr) |
Mike Stump | f7c41da | 2009-04-29 00:43:21 +0000 | [diff] [blame] | 903 | << getCurFunctionOrMethodDecl()->getDeclName(); |
Mike Stump | f7c41da | 2009-04-29 00:43:21 +0000 | [diff] [blame] | 904 | } else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
Steve Naroff | c97fb9a | 2009-03-03 00:45:38 +0000 | [diff] [blame] | 905 | FnRetType = MD->getResultType(); |
| 906 | else // If we don't have a function/method context, bail. |
| 907 | return StmtError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 908 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 909 | if (FnRetType->isVoidType()) { |
Douglas Gregor | 1be8aee | 2009-10-01 23:25:31 +0000 | [diff] [blame] | 910 | if (RetValExp && !RetValExp->isTypeDependent()) { |
| 911 | // C99 6.8.6.4p1 (ext_ since GCC warns) |
Chris Lattner | 65ce04b | 2008-12-18 02:01:17 +0000 | [diff] [blame] | 912 | unsigned D = diag::ext_return_has_expr; |
| 913 | if (RetValExp->getType()->isVoidType()) |
| 914 | D = diag::ext_return_has_void_expr; |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 915 | |
Chris Lattner | e878eb0 | 2008-12-18 02:03:48 +0000 | [diff] [blame] | 916 | // return (some void expression); is legal in C++. |
| 917 | if (D != diag::ext_return_has_void_expr || |
| 918 | !getLangOptions().CPlusPlus) { |
| 919 | NamedDecl *CurDecl = getCurFunctionOrMethodDecl(); |
| 920 | Diag(ReturnLoc, D) |
| 921 | << CurDecl->getDeclName() << isa<ObjCMethodDecl>(CurDecl) |
| 922 | << RetValExp->getSourceRange(); |
| 923 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 924 | |
Anders Carlsson | f53b443 | 2009-08-18 16:11:00 +0000 | [diff] [blame] | 925 | RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 926 | } |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 927 | return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 928 | } |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 929 | |
Anders Carlsson | 03d7776 | 2009-05-15 00:48:27 +0000 | [diff] [blame] | 930 | if (!RetValExp && !FnRetType->isDependentType()) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 931 | unsigned DiagID = diag::warn_return_missing_expr; // C90 6.6.6.4p4 |
| 932 | // C99 6.8.6.4p1 (ext_ since GCC warns) |
| 933 | if (getLangOptions().C99) DiagID = diag::ext_return_missing_expr; |
| 934 | |
| 935 | if (FunctionDecl *FD = getCurFunctionDecl()) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 936 | Diag(ReturnLoc, DiagID) << FD->getIdentifier() << 0/*fn*/; |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 937 | else |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 938 | Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 939 | return Owned(new (Context) ReturnStmt(ReturnLoc, (Expr*)0)); |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 940 | } |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 941 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 942 | if (!FnRetType->isDependentType() && !RetValExp->isTypeDependent()) { |
| 943 | // we have a non-void function with an expression, continue checking |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 944 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 945 | // C99 6.8.6.4p3(136): The return statement is not an assignment. The |
| 946 | // overlap restriction of subclause 6.5.16.1 does not apply to the case of |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 947 | // function return. |
| 948 | |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 949 | // C++0x 12.8p15: When certain criteria are met, an implementation is |
| 950 | // allowed to omit the copy construction of a class object, [...] |
| 951 | // - in a return statement in a function with a class return type, when |
| 952 | // the expression is the name of a non-volatile automatic object with |
| 953 | // the same cv-unqualified type as the function return type, the copy |
| 954 | // operation can be omitted [...] |
| 955 | // C++0x 12.8p16: When the criteria for elision of a copy operation are met |
| 956 | // and the object to be copied is designated by an lvalue, overload |
| 957 | // resolution to select the constructor for the copy is first performed |
| 958 | // as if the object were designated by an rvalue. |
| 959 | // Note that we only compute Elidable if we're in C++0x, since we don't |
| 960 | // care otherwise. |
| 961 | bool Elidable = getLangOptions().CPlusPlus0x ? |
| 962 | IsReturnCopyElidable(Context, FnRetType, RetValExp) : |
| 963 | false; |
| 964 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 965 | // In C++ the return statement is handled via a copy initialization. |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 966 | // the C version of which boils down to CheckSingleAssignmentConstraints. |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 967 | // FIXME: Leaks RetValExp on error. |
| 968 | if (PerformCopyInitialization(RetValExp, FnRetType, "returning", Elidable)) |
Sebastian Redl | 4cffe2f | 2009-01-18 13:19:59 +0000 | [diff] [blame] | 969 | return StmtError(); |
| 970 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 971 | if (RetValExp) CheckReturnStackAddr(RetValExp, FnRetType, ReturnLoc); |
| 972 | } |
| 973 | |
Anders Carlsson | f53b443 | 2009-08-18 16:11:00 +0000 | [diff] [blame] | 974 | if (RetValExp) |
| 975 | RetValExp = MaybeCreateCXXExprWithTemporaries(RetValExp, true); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 976 | return Owned(new (Context) ReturnStmt(ReturnLoc, RetValExp)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 977 | } |
| 978 | |
Chris Lattner | 810f6d5 | 2009-03-13 17:38:01 +0000 | [diff] [blame] | 979 | /// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently |
| 980 | /// ignore "noop" casts in places where an lvalue is required by an inline asm. |
| 981 | /// We emulate this behavior when -fheinous-gnu-extensions is specified, but |
| 982 | /// provide a strong guidance to not use it. |
| 983 | /// |
| 984 | /// This method checks to see if the argument is an acceptable l-value and |
| 985 | /// returns false if it is a case we can handle. |
| 986 | static bool CheckAsmLValue(const Expr *E, Sema &S) { |
| 987 | if (E->isLvalue(S.Context) == Expr::LV_Valid) |
| 988 | return false; // Cool, this is an lvalue. |
| 989 | |
| 990 | // Okay, this is not an lvalue, but perhaps it is the result of a cast that we |
| 991 | // are supposed to allow. |
| 992 | const Expr *E2 = E->IgnoreParenNoopCasts(S.Context); |
| 993 | if (E != E2 && E2->isLvalue(S.Context) == Expr::LV_Valid) { |
| 994 | if (!S.getLangOptions().HeinousExtensions) |
| 995 | S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue) |
| 996 | << E->getSourceRange(); |
| 997 | else |
| 998 | S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue) |
| 999 | << E->getSourceRange(); |
| 1000 | // Accept, even if we emitted an error diagnostic. |
| 1001 | return false; |
| 1002 | } |
| 1003 | |
| 1004 | // None of the above, just randomly invalid non-lvalue. |
| 1005 | return true; |
| 1006 | } |
| 1007 | |
| 1008 | |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1009 | Sema::OwningStmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc, |
| 1010 | bool IsSimple, |
| 1011 | bool IsVolatile, |
| 1012 | unsigned NumOutputs, |
| 1013 | unsigned NumInputs, |
| 1014 | std::string *Names, |
| 1015 | MultiExprArg constraints, |
| 1016 | MultiExprArg exprs, |
| 1017 | ExprArg asmString, |
| 1018 | MultiExprArg clobbers, |
| 1019 | SourceLocation RParenLoc) { |
| 1020 | unsigned NumClobbers = clobbers.size(); |
| 1021 | StringLiteral **Constraints = |
| 1022 | reinterpret_cast<StringLiteral**>(constraints.get()); |
| 1023 | Expr **Exprs = reinterpret_cast<Expr **>(exprs.get()); |
| 1024 | StringLiteral *AsmString = cast<StringLiteral>((Expr *)asmString.get()); |
| 1025 | StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.get()); |
| 1026 | |
Anders Carlsson | 03eb543 | 2009-01-27 20:38:24 +0000 | [diff] [blame] | 1027 | llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1028 | |
Chris Lattner | 1708b96 | 2008-08-18 19:55:17 +0000 | [diff] [blame] | 1029 | // The parser verifies that there is a string literal here. |
Chris Lattner | 6bc5211 | 2008-07-23 06:46:56 +0000 | [diff] [blame] | 1030 | if (AsmString->isWide()) |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1031 | return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character) |
| 1032 | << AsmString->getSourceRange()); |
| 1033 | |
Chris Lattner | 1708b96 | 2008-08-18 19:55:17 +0000 | [diff] [blame] | 1034 | for (unsigned i = 0; i != NumOutputs; i++) { |
| 1035 | StringLiteral *Literal = Constraints[i]; |
Chris Lattner | 6bc5211 | 2008-07-23 06:46:56 +0000 | [diff] [blame] | 1036 | if (Literal->isWide()) |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1037 | return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character) |
| 1038 | << Literal->getSourceRange()); |
| 1039 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1040 | TargetInfo::ConstraintInfo Info(Literal->getStrData(), |
Chris Lattner | 2819fa8 | 2009-04-26 17:57:12 +0000 | [diff] [blame] | 1041 | Literal->getByteLength(), |
| 1042 | Names[i]); |
Chris Lattner | 432c869 | 2009-04-26 17:19:08 +0000 | [diff] [blame] | 1043 | if (!Context.Target.validateOutputConstraint(Info)) |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1044 | return StmtError(Diag(Literal->getLocStart(), |
Chris Lattner | 432c869 | 2009-04-26 17:19:08 +0000 | [diff] [blame] | 1045 | diag::err_asm_invalid_output_constraint) |
| 1046 | << Info.getConstraintStr()); |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1047 | |
Anders Carlsson | d04c6e2 | 2007-11-27 04:11:28 +0000 | [diff] [blame] | 1048 | // Check that the output exprs are valid lvalues. |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1049 | Expr *OutputExpr = Exprs[i]; |
Chris Lattner | 810f6d5 | 2009-03-13 17:38:01 +0000 | [diff] [blame] | 1050 | if (CheckAsmLValue(OutputExpr, *this)) { |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1051 | return StmtError(Diag(OutputExpr->getLocStart(), |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1052 | diag::err_asm_invalid_lvalue_in_output) |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1053 | << OutputExpr->getSourceRange()); |
Anders Carlsson | 04728b7 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 1054 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1055 | |
Chris Lattner | 44def07 | 2009-04-26 07:16:29 +0000 | [diff] [blame] | 1056 | OutputConstraintInfos.push_back(Info); |
Anders Carlsson | 04728b7 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 1057 | } |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1058 | |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1059 | llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos; |
| 1060 | |
Anders Carlsson | 04728b7 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 1061 | for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) { |
Chris Lattner | 1708b96 | 2008-08-18 19:55:17 +0000 | [diff] [blame] | 1062 | StringLiteral *Literal = Constraints[i]; |
Chris Lattner | 6bc5211 | 2008-07-23 06:46:56 +0000 | [diff] [blame] | 1063 | if (Literal->isWide()) |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1064 | return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character) |
| 1065 | << Literal->getSourceRange()); |
| 1066 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1067 | TargetInfo::ConstraintInfo Info(Literal->getStrData(), |
Chris Lattner | 2819fa8 | 2009-04-26 17:57:12 +0000 | [diff] [blame] | 1068 | Literal->getByteLength(), |
| 1069 | Names[i]); |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1070 | if (!Context.Target.validateInputConstraint(OutputConstraintInfos.data(), |
Chris Lattner | 2819fa8 | 2009-04-26 17:57:12 +0000 | [diff] [blame] | 1071 | NumOutputs, Info)) { |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1072 | return StmtError(Diag(Literal->getLocStart(), |
Chris Lattner | 432c869 | 2009-04-26 17:19:08 +0000 | [diff] [blame] | 1073 | diag::err_asm_invalid_input_constraint) |
| 1074 | << Info.getConstraintStr()); |
Anders Carlsson | d04c6e2 | 2007-11-27 04:11:28 +0000 | [diff] [blame] | 1075 | } |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1076 | |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1077 | Expr *InputExpr = Exprs[i]; |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1078 | |
Anders Carlsson | d9fca6e | 2009-01-20 20:49:22 +0000 | [diff] [blame] | 1079 | // Only allow void types for memory constraints. |
Chris Lattner | 44def07 | 2009-04-26 07:16:29 +0000 | [diff] [blame] | 1080 | if (Info.allowsMemory() && !Info.allowsRegister()) { |
Chris Lattner | 810f6d5 | 2009-03-13 17:38:01 +0000 | [diff] [blame] | 1081 | if (CheckAsmLValue(InputExpr, *this)) |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1082 | return StmtError(Diag(InputExpr->getLocStart(), |
Anders Carlsson | d9fca6e | 2009-01-20 20:49:22 +0000 | [diff] [blame] | 1083 | diag::err_asm_invalid_lvalue_in_input) |
Chris Lattner | 432c869 | 2009-04-26 17:19:08 +0000 | [diff] [blame] | 1084 | << Info.getConstraintStr() |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1085 | << InputExpr->getSourceRange()); |
Anders Carlsson | 04728b7 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 1086 | } |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1087 | |
Chris Lattner | 44def07 | 2009-04-26 07:16:29 +0000 | [diff] [blame] | 1088 | if (Info.allowsRegister()) { |
Anders Carlsson | d9fca6e | 2009-01-20 20:49:22 +0000 | [diff] [blame] | 1089 | if (InputExpr->getType()->isVoidType()) { |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1090 | return StmtError(Diag(InputExpr->getLocStart(), |
Anders Carlsson | d9fca6e | 2009-01-20 20:49:22 +0000 | [diff] [blame] | 1091 | diag::err_asm_invalid_type_in_input) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1092 | << InputExpr->getType() << Info.getConstraintStr() |
Eli Friedman | 72056a2 | 2009-05-03 07:49:42 +0000 | [diff] [blame] | 1093 | << InputExpr->getSourceRange()); |
Anders Carlsson | d9fca6e | 2009-01-20 20:49:22 +0000 | [diff] [blame] | 1094 | } |
Anders Carlsson | d9fca6e | 2009-01-20 20:49:22 +0000 | [diff] [blame] | 1095 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1096 | |
Anders Carlsson | 6032979 | 2009-02-22 02:11:23 +0000 | [diff] [blame] | 1097 | DefaultFunctionArrayConversion(Exprs[i]); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1098 | |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1099 | InputConstraintInfos.push_back(Info); |
Anders Carlsson | 04728b7 | 2007-11-23 19:43:50 +0000 | [diff] [blame] | 1100 | } |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1101 | |
Anders Carlsson | 6fa9086 | 2007-11-25 00:25:21 +0000 | [diff] [blame] | 1102 | // Check that the clobbers are valid. |
Chris Lattner | 1708b96 | 2008-08-18 19:55:17 +0000 | [diff] [blame] | 1103 | for (unsigned i = 0; i != NumClobbers; i++) { |
| 1104 | StringLiteral *Literal = Clobbers[i]; |
Chris Lattner | 6bc5211 | 2008-07-23 06:46:56 +0000 | [diff] [blame] | 1105 | if (Literal->isWide()) |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1106 | return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character) |
| 1107 | << Literal->getSourceRange()); |
| 1108 | |
Daniel Dunbar | 7765934 | 2009-08-19 20:04:03 +0000 | [diff] [blame] | 1109 | std::string Clobber(Literal->getStrData(), |
| 1110 | Literal->getStrData() + |
| 1111 | Literal->getByteLength()); |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1112 | |
Chris Lattner | 6bc5211 | 2008-07-23 06:46:56 +0000 | [diff] [blame] | 1113 | if (!Context.Target.isValidGCCRegisterName(Clobber.c_str())) |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1114 | return StmtError(Diag(Literal->getLocStart(), |
Daniel Dunbar | 7765934 | 2009-08-19 20:04:03 +0000 | [diff] [blame] | 1115 | diag::err_asm_unknown_register_name) << Clobber); |
Anders Carlsson | 6fa9086 | 2007-11-25 00:25:21 +0000 | [diff] [blame] | 1116 | } |
Sebastian Redl | 3037ed0 | 2009-01-18 16:53:17 +0000 | [diff] [blame] | 1117 | |
| 1118 | constraints.release(); |
| 1119 | exprs.release(); |
| 1120 | asmString.release(); |
| 1121 | clobbers.release(); |
Chris Lattner | fb5058e | 2009-03-10 23:41:04 +0000 | [diff] [blame] | 1122 | AsmStmt *NS = |
| 1123 | new (Context) AsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, |
| 1124 | Names, Constraints, Exprs, AsmString, NumClobbers, |
| 1125 | Clobbers, RParenLoc); |
| 1126 | // Validate the asm string, ensuring it makes sense given the operands we |
| 1127 | // have. |
| 1128 | llvm::SmallVector<AsmStmt::AsmStringPiece, 8> Pieces; |
| 1129 | unsigned DiagOffs; |
| 1130 | if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) { |
Chris Lattner | 2ff0f42 | 2009-03-10 23:57:07 +0000 | [diff] [blame] | 1131 | Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID) |
| 1132 | << AsmString->getSourceRange(); |
Chris Lattner | fb5058e | 2009-03-10 23:41:04 +0000 | [diff] [blame] | 1133 | DeleteStmt(NS); |
| 1134 | return StmtError(); |
| 1135 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1136 | |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1137 | // Validate tied input operands for type mismatches. |
| 1138 | for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) { |
| 1139 | TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1140 | |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1141 | // If this is a tied constraint, verify that the output and input have |
| 1142 | // either exactly the same type, or that they are int/ptr operands with the |
| 1143 | // same size (int/long, int*/long, are ok etc). |
| 1144 | if (!Info.hasTiedOperand()) continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1145 | |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1146 | unsigned TiedTo = Info.getTiedOperand(); |
Chris Lattner | f69fcae | 2009-05-03 07:04:21 +0000 | [diff] [blame] | 1147 | Expr *OutputExpr = Exprs[TiedTo]; |
Chris Lattner | c1f3b28 | 2009-05-03 06:50:40 +0000 | [diff] [blame] | 1148 | Expr *InputExpr = Exprs[i+NumOutputs]; |
Chris Lattner | 7adaa18 | 2009-05-03 05:59:17 +0000 | [diff] [blame] | 1149 | QualType InTy = InputExpr->getType(); |
| 1150 | QualType OutTy = OutputExpr->getType(); |
| 1151 | if (Context.hasSameType(InTy, OutTy)) |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1152 | continue; // All types can be tied to themselves. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1153 | |
Chris Lattner | 7adaa18 | 2009-05-03 05:59:17 +0000 | [diff] [blame] | 1154 | // Int/ptr operands have some special cases that we allow. |
| 1155 | if ((OutTy->isIntegerType() || OutTy->isPointerType()) && |
| 1156 | (InTy->isIntegerType() || InTy->isPointerType())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1157 | |
Chris Lattner | 7adaa18 | 2009-05-03 05:59:17 +0000 | [diff] [blame] | 1158 | // They are ok if they are the same size. Tying void* to int is ok if |
| 1159 | // they are the same size, for example. This also allows tying void* to |
| 1160 | // int*. |
Chris Lattner | 3351f11 | 2009-05-03 08:32:32 +0000 | [diff] [blame] | 1161 | uint64_t OutSize = Context.getTypeSize(OutTy); |
| 1162 | uint64_t InSize = Context.getTypeSize(InTy); |
| 1163 | if (OutSize == InSize) |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1164 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1165 | |
Chris Lattner | 3351f11 | 2009-05-03 08:32:32 +0000 | [diff] [blame] | 1166 | // If the smaller input/output operand is not mentioned in the asm string, |
| 1167 | // then we can promote it and the asm string won't notice. Check this |
Chris Lattner | f69fcae | 2009-05-03 07:04:21 +0000 | [diff] [blame] | 1168 | // case now. |
Chris Lattner | 3351f11 | 2009-05-03 08:32:32 +0000 | [diff] [blame] | 1169 | bool SmallerValueMentioned = false; |
Chris Lattner | 58bce89 | 2009-05-03 08:24:16 +0000 | [diff] [blame] | 1170 | for (unsigned p = 0, e = Pieces.size(); p != e; ++p) { |
| 1171 | AsmStmt::AsmStringPiece &Piece = Pieces[p]; |
| 1172 | if (!Piece.isOperand()) continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1173 | |
Chris Lattner | 3351f11 | 2009-05-03 08:32:32 +0000 | [diff] [blame] | 1174 | // If this is a reference to the input and if the input was the smaller |
| 1175 | // one, then we have to reject this asm. |
| 1176 | if (Piece.getOperandNo() == i+NumOutputs) { |
| 1177 | if (InSize < OutSize) { |
| 1178 | SmallerValueMentioned = true; |
| 1179 | break; |
| 1180 | } |
| 1181 | } |
| 1182 | |
| 1183 | // If this is a reference to the input and if the input was the smaller |
| 1184 | // one, then we have to reject this asm. |
| 1185 | if (Piece.getOperandNo() == TiedTo) { |
| 1186 | if (InSize > OutSize) { |
| 1187 | SmallerValueMentioned = true; |
| 1188 | break; |
| 1189 | } |
| 1190 | } |
Chris Lattner | f69fcae | 2009-05-03 07:04:21 +0000 | [diff] [blame] | 1191 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1192 | |
Chris Lattner | 3351f11 | 2009-05-03 08:32:32 +0000 | [diff] [blame] | 1193 | // If the smaller value wasn't mentioned in the asm string, and if the |
| 1194 | // output was a register, just extend the shorter one to the size of the |
| 1195 | // larger one. |
| 1196 | if (!SmallerValueMentioned && |
Chris Lattner | f69fcae | 2009-05-03 07:04:21 +0000 | [diff] [blame] | 1197 | OutputConstraintInfos[TiedTo].allowsRegister()) |
| 1198 | continue; |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1199 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1200 | |
Chris Lattner | c1f3b28 | 2009-05-03 06:50:40 +0000 | [diff] [blame] | 1201 | Diag(InputExpr->getLocStart(), |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1202 | diag::err_asm_tying_incompatible_types) |
Chris Lattner | 7adaa18 | 2009-05-03 05:59:17 +0000 | [diff] [blame] | 1203 | << InTy << OutTy << OutputExpr->getSourceRange() |
Chris Lattner | 806503f | 2009-05-03 05:55:43 +0000 | [diff] [blame] | 1204 | << InputExpr->getSourceRange(); |
| 1205 | DeleteStmt(NS); |
| 1206 | return StmtError(); |
| 1207 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1208 | |
Chris Lattner | fb5058e | 2009-03-10 23:41:04 +0000 | [diff] [blame] | 1209 | return Owned(NS); |
Chris Lattner | fe79595 | 2007-10-29 04:04:16 +0000 | [diff] [blame] | 1210 | } |
Fariborz Jahanian | 3b1191d | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 1211 | |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1212 | Action::OwningStmtResult |
| 1213 | Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1214 | SourceLocation RParen, DeclPtrTy Parm, |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1215 | StmtArg Body, StmtArg catchList) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 1216 | Stmt *CatchList = catchList.takeAs<Stmt>(); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1217 | ParmVarDecl *PVD = cast_or_null<ParmVarDecl>(Parm.getAs<Decl>()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1218 | |
Steve Naroff | f50cb36 | 2009-03-03 20:59:06 +0000 | [diff] [blame] | 1219 | // PVD == 0 implies @catch(...). |
Steve Naroff | 9d40ee5 | 2009-03-03 21:16:54 +0000 | [diff] [blame] | 1220 | if (PVD) { |
Chris Lattner | 93c4945 | 2009-04-12 23:26:56 +0000 | [diff] [blame] | 1221 | // If we already know the decl is invalid, reject it. |
| 1222 | if (PVD->isInvalidDecl()) |
| 1223 | return StmtError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1224 | |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 1225 | if (!PVD->getType()->isObjCObjectPointerType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1226 | return StmtError(Diag(PVD->getLocation(), |
Steve Naroff | 9d40ee5 | 2009-03-03 21:16:54 +0000 | [diff] [blame] | 1227 | diag::err_catch_param_not_objc_type)); |
| 1228 | if (PVD->getType()->isObjCQualifiedIdType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1229 | return StmtError(Diag(PVD->getLocation(), |
Steve Naroff | d198aba | 2009-03-03 23:13:51 +0000 | [diff] [blame] | 1230 | diag::err_illegal_qualifiers_on_catch_parm)); |
Steve Naroff | 9d40ee5 | 2009-03-03 21:16:54 +0000 | [diff] [blame] | 1231 | } |
Chris Lattner | 93c4945 | 2009-04-12 23:26:56 +0000 | [diff] [blame] | 1232 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 1233 | ObjCAtCatchStmt *CS = new (Context) ObjCAtCatchStmt(AtLoc, RParen, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1234 | PVD, Body.takeAs<Stmt>(), CatchList); |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1235 | return Owned(CatchList ? CatchList : CS); |
Fariborz Jahanian | 3b1191d | 2007-11-01 23:59:59 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1238 | Action::OwningStmtResult |
| 1239 | Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, StmtArg Body) { |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 1240 | return Owned(new (Context) ObjCAtFinallyStmt(AtLoc, |
| 1241 | static_cast<Stmt*>(Body.release()))); |
Fariborz Jahanian | 161a9c5 | 2007-11-02 00:18:53 +0000 | [diff] [blame] | 1242 | } |
Fariborz Jahanian | bd49a64 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 1243 | |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1244 | Action::OwningStmtResult |
| 1245 | Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, |
| 1246 | StmtArg Try, StmtArg Catch, StmtArg Finally) { |
Chris Lattner | 38c5ebd | 2009-04-19 05:21:20 +0000 | [diff] [blame] | 1247 | CurFunctionNeedsScopeChecking = true; |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1248 | return Owned(new (Context) ObjCAtTryStmt(AtLoc, Try.takeAs<Stmt>(), |
| 1249 | Catch.takeAs<Stmt>(), |
| 1250 | Finally.takeAs<Stmt>())); |
Fariborz Jahanian | bd49a64 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1253 | Action::OwningStmtResult |
Steve Naroff | 3dcfe10 | 2009-02-12 15:54:59 +0000 | [diff] [blame] | 1254 | Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, ExprArg expr,Scope *CurScope) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 1255 | Expr *ThrowExpr = expr.takeAs<Expr>(); |
Steve Naroff | 7151bbb | 2009-02-11 17:45:08 +0000 | [diff] [blame] | 1256 | if (!ThrowExpr) { |
Steve Naroff | e21dd6f | 2009-02-11 20:05:44 +0000 | [diff] [blame] | 1257 | // @throw without an expression designates a rethrow (which much occur |
| 1258 | // in the context of an @catch clause). |
| 1259 | Scope *AtCatchParent = CurScope; |
| 1260 | while (AtCatchParent && !AtCatchParent->isAtCatchScope()) |
| 1261 | AtCatchParent = AtCatchParent->getParent(); |
| 1262 | if (!AtCatchParent) |
Steve Naroff | 4ab2414 | 2009-02-12 18:09:32 +0000 | [diff] [blame] | 1263 | return StmtError(Diag(AtLoc, diag::error_rethrow_used_outside_catch)); |
Steve Naroff | 7151bbb | 2009-02-11 17:45:08 +0000 | [diff] [blame] | 1264 | } else { |
| 1265 | QualType ThrowType = ThrowExpr->getType(); |
| 1266 | // Make sure the expression type is an ObjC pointer or "void *". |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 1267 | if (!ThrowType->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1268 | const PointerType *PT = ThrowType->getAs<PointerType>(); |
Steve Naroff | 7151bbb | 2009-02-11 17:45:08 +0000 | [diff] [blame] | 1269 | if (!PT || !PT->getPointeeType()->isVoidType()) |
Steve Naroff | 4ab2414 | 2009-02-12 18:09:32 +0000 | [diff] [blame] | 1270 | return StmtError(Diag(AtLoc, diag::error_objc_throw_expects_object) |
| 1271 | << ThrowExpr->getType() << ThrowExpr->getSourceRange()); |
Steve Naroff | 7151bbb | 2009-02-11 17:45:08 +0000 | [diff] [blame] | 1272 | } |
| 1273 | } |
| 1274 | return Owned(new (Context) ObjCAtThrowStmt(AtLoc, ThrowExpr)); |
Fariborz Jahanian | 39f8f15 | 2007-11-07 02:00:49 +0000 | [diff] [blame] | 1275 | } |
Fariborz Jahanian | bd49a64 | 2007-11-02 15:39:31 +0000 | [diff] [blame] | 1276 | |
Sebastian Redl | 431e90e | 2009-01-18 17:43:11 +0000 | [diff] [blame] | 1277 | Action::OwningStmtResult |
| 1278 | Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, ExprArg SynchExpr, |
| 1279 | StmtArg SynchBody) { |
Chris Lattner | 46c3c4b | 2009-04-21 06:01:00 +0000 | [diff] [blame] | 1280 | CurFunctionNeedsScopeChecking = true; |
| 1281 | |
Chris Lattner | a868a20 | 2009-04-21 06:11:25 +0000 | [diff] [blame] | 1282 | // Make sure the expression type is an ObjC pointer or "void *". |
| 1283 | Expr *SyncExpr = static_cast<Expr*>(SynchExpr.get()); |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 1284 | if (!SyncExpr->getType()->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1285 | const PointerType *PT = SyncExpr->getType()->getAs<PointerType>(); |
Chris Lattner | a868a20 | 2009-04-21 06:11:25 +0000 | [diff] [blame] | 1286 | if (!PT || !PT->getPointeeType()->isVoidType()) |
| 1287 | return StmtError(Diag(AtLoc, diag::error_objc_synchronized_expects_object) |
| 1288 | << SyncExpr->getType() << SyncExpr->getSourceRange()); |
| 1289 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1290 | |
| 1291 | return Owned(new (Context) ObjCAtSynchronizedStmt(AtLoc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1292 | SynchExpr.takeAs<Stmt>(), |
| 1293 | SynchBody.takeAs<Stmt>())); |
Fariborz Jahanian | fa3ee8e | 2008-01-29 19:14:59 +0000 | [diff] [blame] | 1294 | } |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 1295 | |
| 1296 | /// ActOnCXXCatchBlock - Takes an exception declaration and a handler block |
| 1297 | /// and creates a proper catch handler from them. |
| 1298 | Action::OwningStmtResult |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1299 | Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, DeclPtrTy ExDecl, |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 1300 | StmtArg HandlerBlock) { |
| 1301 | // There's nothing to test that ActOnExceptionDecl didn't already test. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 1302 | return Owned(new (Context) CXXCatchStmt(CatchLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1303 | cast_or_null<VarDecl>(ExDecl.getAs<Decl>()), |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1304 | HandlerBlock.takeAs<Stmt>())); |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 1305 | } |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1306 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1307 | class TypeWithHandler { |
| 1308 | QualType t; |
| 1309 | CXXCatchStmt *stmt; |
| 1310 | public: |
| 1311 | TypeWithHandler(const QualType &type, CXXCatchStmt *statement) |
| 1312 | : t(type), stmt(statement) {} |
| 1313 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1314 | // An arbitrary order is fine as long as it places identical |
| 1315 | // types next to each other. |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1316 | bool operator<(const TypeWithHandler &y) const { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1317 | if (t.getAsOpaquePtr() < y.t.getAsOpaquePtr()) |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1318 | return true; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1319 | if (t.getAsOpaquePtr() > y.t.getAsOpaquePtr()) |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1320 | return false; |
| 1321 | else |
| 1322 | return getTypeSpecStartLoc() < y.getTypeSpecStartLoc(); |
| 1323 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1324 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1325 | bool operator==(const TypeWithHandler& other) const { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1326 | return t == other.t; |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1327 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1328 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1329 | QualType getQualType() const { return t; } |
| 1330 | CXXCatchStmt *getCatchStmt() const { return stmt; } |
| 1331 | SourceLocation getTypeSpecStartLoc() const { |
| 1332 | return stmt->getExceptionDecl()->getTypeSpecStartLoc(); |
| 1333 | } |
| 1334 | }; |
| 1335 | |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1336 | /// ActOnCXXTryBlock - Takes a try compound-statement and a number of |
| 1337 | /// handlers and creates a try statement from them. |
| 1338 | Action::OwningStmtResult |
| 1339 | Sema::ActOnCXXTryBlock(SourceLocation TryLoc, StmtArg TryBlock, |
| 1340 | MultiStmtArg RawHandlers) { |
| 1341 | unsigned NumHandlers = RawHandlers.size(); |
| 1342 | assert(NumHandlers > 0 && |
| 1343 | "The parser shouldn't call this if there are no handlers."); |
| 1344 | Stmt **Handlers = reinterpret_cast<Stmt**>(RawHandlers.get()); |
| 1345 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1346 | llvm::SmallVector<TypeWithHandler, 8> TypesWithHandlers; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1347 | |
| 1348 | for (unsigned i = 0; i < NumHandlers; ++i) { |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1349 | CXXCatchStmt *Handler = llvm::cast<CXXCatchStmt>(Handlers[i]); |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1350 | if (!Handler->getExceptionDecl()) { |
| 1351 | if (i < NumHandlers - 1) |
| 1352 | return StmtError(Diag(Handler->getLocStart(), |
| 1353 | diag::err_early_catch_all)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1354 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1355 | continue; |
| 1356 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1357 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1358 | const QualType CaughtType = Handler->getCaughtType(); |
| 1359 | const QualType CanonicalCaughtType = Context.getCanonicalType(CaughtType); |
| 1360 | TypesWithHandlers.push_back(TypeWithHandler(CanonicalCaughtType, Handler)); |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1361 | } |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1362 | |
| 1363 | // Detect handlers for the same type as an earlier one. |
| 1364 | if (NumHandlers > 1) { |
| 1365 | llvm::array_pod_sort(TypesWithHandlers.begin(), TypesWithHandlers.end()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1366 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1367 | TypeWithHandler prev = TypesWithHandlers[0]; |
| 1368 | for (unsigned i = 1; i < TypesWithHandlers.size(); ++i) { |
| 1369 | TypeWithHandler curr = TypesWithHandlers[i]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1370 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1371 | if (curr == prev) { |
| 1372 | Diag(curr.getTypeSpecStartLoc(), |
| 1373 | diag::warn_exception_caught_by_earlier_handler) |
| 1374 | << curr.getCatchStmt()->getCaughtType().getAsString(); |
| 1375 | Diag(prev.getTypeSpecStartLoc(), |
| 1376 | diag::note_previous_exception_handler) |
| 1377 | << prev.getCatchStmt()->getCaughtType().getAsString(); |
| 1378 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1379 | |
Sebastian Redl | c447aba | 2009-07-29 17:15:45 +0000 | [diff] [blame] | 1380 | prev = curr; |
| 1381 | } |
| 1382 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1383 | |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1384 | // FIXME: We should detect handlers that cannot catch anything because an |
| 1385 | // earlier handler catches a superclass. Need to find a method that is not |
| 1386 | // quadratic for this. |
| 1387 | // Neither of these are explicitly forbidden, but every compiler detects them |
| 1388 | // and warns. |
| 1389 | |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 1390 | CurFunctionNeedsScopeChecking = true; |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1391 | RawHandlers.release(); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 1392 | return Owned(new (Context) CXXTryStmt(TryLoc, |
| 1393 | static_cast<Stmt*>(TryBlock.release()), |
| 1394 | Handlers, NumHandlers)); |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 1395 | } |