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