Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 5b12ab8 | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
Douglas Gregor | 85dabae | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 15 | #include "SemaInit.h" |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 16 | #include "Lookup.h" |
Chris Lattner | cb6a382 | 2006-11-10 06:20:45 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 6e8aa53 | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 20 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | 021ca18 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 21 | #include "clang/AST/ExprObjC.h" |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 22 | #include "clang/Basic/PartialDiagnostic.h" |
Steve Naroff | f2fb89e | 2007-03-13 20:29:44 +0000 | [diff] [blame] | 23 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 24 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 25 | #include "clang/Lex/LiteralSupport.h" |
| 26 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 27 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 07d754a | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 28 | #include "clang/Parse/Designator.h" |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 29 | #include "clang/Parse/Scope.h" |
Douglas Gregor | b53edfb | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 30 | #include "clang/Parse/Template.h" |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 31 | using namespace clang; |
| 32 | |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 33 | |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 34 | /// \brief Determine whether the use of this declaration is valid, and |
| 35 | /// emit any corresponding diagnostics. |
| 36 | /// |
| 37 | /// This routine diagnoses various problems with referencing |
| 38 | /// declarations that can occur when using a declaration. For example, |
| 39 | /// it might warn if a deprecated or unavailable declaration is being |
| 40 | /// used, or produce an error (and return true) if a C++0x deleted |
| 41 | /// function is being used. |
| 42 | /// |
Chris Lattner | b7df3c6 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 43 | /// If IgnoreDeprecated is set to true, this should not want about deprecated |
| 44 | /// decls. |
| 45 | /// |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 46 | /// \returns true if there was an error (this declaration cannot be |
| 47 | /// referenced), false otherwise. |
Chris Lattner | b7df3c6 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 48 | /// |
John McCall | 28a6aea | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 49 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { |
Chris Lattner | 4bf74fd | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 50 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 51 | if (D->getAttr<DeprecatedAttr>()) { |
John McCall | 28a6aea | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 52 | EmitDeprecationWarning(D, Loc); |
Chris Lattner | 4bf74fd | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Chris Lattner | a27dd59 | 2009-10-25 17:21:40 +0000 | [diff] [blame] | 55 | // See if the decl is unavailable |
| 56 | if (D->getAttr<UnavailableAttr>()) { |
| 57 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
| 58 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 59 | } |
| 60 | |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 61 | // See if this is a deleted function. |
Douglas Gregor | de681d4 | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 62 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 63 | if (FD->isDeleted()) { |
| 64 | Diag(Loc, diag::err_deleted_function_use); |
| 65 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 66 | return true; |
| 67 | } |
Douglas Gregor | de681d4 | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 68 | } |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 69 | |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 70 | return false; |
Chris Lattner | 4bf74fd | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Fariborz Jahanian | 027b886 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 73 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 74 | /// (and other functions in future), which have been declared with sentinel |
Fariborz Jahanian | 027b886 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 75 | /// attribute. It warns if call does not have the sentinel argument. |
| 76 | /// |
| 77 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 78 | Expr **Args, unsigned NumArgs) { |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 79 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 80 | if (!attr) |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 81 | return; |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 82 | int sentinelPos = attr->getSentinel(); |
| 83 | int nullPos = attr->getNullPos(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 84 | |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 85 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 86 | // base class. Then we won't be needing two versions of the same code. |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 87 | unsigned int i = 0; |
Fariborz Jahanian | 4a52803 | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 88 | bool warnNotEnoughArgs = false; |
| 89 | int isMethod = 0; |
| 90 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 91 | // skip over named parameters. |
| 92 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 93 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 94 | if (nullPos) |
| 95 | --nullPos; |
| 96 | else |
| 97 | ++i; |
| 98 | } |
| 99 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 100 | isMethod = 1; |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 101 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Fariborz Jahanian | 4a52803 | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 102 | // skip over named parameters. |
| 103 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 104 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 105 | if (nullPos) |
| 106 | --nullPos; |
| 107 | else |
| 108 | ++i; |
| 109 | } |
| 110 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 111 | } else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
Fariborz Jahanian | 0aa5c45 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 112 | // block or function pointer call. |
| 113 | QualType Ty = V->getType(); |
| 114 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 115 | const FunctionType *FT = Ty->isFunctionPointerType() |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 116 | ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>() |
| 117 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); |
Fariborz Jahanian | 0aa5c45 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 118 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 119 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 120 | unsigned k; |
| 121 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 122 | if (nullPos) |
| 123 | --nullPos; |
| 124 | else |
| 125 | ++i; |
| 126 | } |
| 127 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 128 | } |
| 129 | if (Ty->isBlockPointerType()) |
| 130 | isMethod = 2; |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 131 | } else |
Fariborz Jahanian | 0aa5c45 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 132 | return; |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 133 | } else |
Fariborz Jahanian | 4a52803 | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 134 | return; |
| 135 | |
| 136 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 137 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 4a52803 | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 138 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 139 | return; |
| 140 | } |
| 141 | int sentinel = i; |
| 142 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 143 | --sentinelPos; |
| 144 | ++i; |
| 145 | } |
| 146 | if (sentinelPos > 0) { |
| 147 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 4a52803 | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 148 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 149 | return; |
| 150 | } |
| 151 | while (i < NumArgs-1) { |
| 152 | ++i; |
| 153 | ++sentinel; |
| 154 | } |
| 155 | Expr *sentinelExpr = Args[sentinel]; |
Anders Carlsson | 0b11a3e | 2009-11-24 17:24:21 +0000 | [diff] [blame] | 156 | if (sentinelExpr && (!isa<GNUNullExpr>(sentinelExpr) && |
| 157 | (!sentinelExpr->getType()->isPointerType() || |
| 158 | !sentinelExpr->isNullPointerConstant(Context, |
| 159 | Expr::NPC_ValueDependentIsNull)))) { |
Fariborz Jahanian | 0aa5c45 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 160 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 4a52803 | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 161 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 9e87721 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 162 | } |
| 163 | return; |
Fariborz Jahanian | 027b886 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 164 | } |
| 165 | |
Douglas Gregor | 87f95b0 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 166 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 167 | Expr *Ex = (Expr *)E; |
| 168 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 169 | } |
| 170 | |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 171 | //===----------------------------------------------------------------------===// |
| 172 | // Standard Promotions and Conversions |
| 173 | //===----------------------------------------------------------------------===// |
| 174 | |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 175 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 176 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 177 | QualType Ty = E->getType(); |
| 178 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 179 | |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 180 | if (Ty->isFunctionType()) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 181 | ImpCastExprToType(E, Context.getPointerType(Ty), |
Anders Carlsson | 6904f64 | 2009-09-01 20:37:18 +0000 | [diff] [blame] | 182 | CastExpr::CK_FunctionToPointerDecay); |
Chris Lattner | 61f60a0 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 183 | else if (Ty->isArrayType()) { |
| 184 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 185 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 186 | // type 'array of type' is converted to an expression that has type 'pointer |
| 187 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 188 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 189 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | 9321c74 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 190 | // |
| 191 | // C++ 4.2p1: |
| 192 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 193 | // T" can be converted to an rvalue of type "pointer to T". |
| 194 | // |
| 195 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 196 | E->isLvalue(Context) == Expr::LV_Valid) |
Anders Carlsson | 8fc489d | 2009-08-07 23:48:20 +0000 | [diff] [blame] | 197 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 198 | CastExpr::CK_ArrayToPointerDecay); |
Chris Lattner | 61f60a0 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 199 | } |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 203 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 204 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 205 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 206 | /// In these instances, this routine should *not* be called. |
| 207 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 208 | QualType Ty = Expr->getType(); |
| 209 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 210 | |
Douglas Gregor | 8d9c509 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 211 | // C99 6.3.1.1p2: |
| 212 | // |
| 213 | // The following may be used in an expression wherever an int or |
| 214 | // unsigned int may be used: |
| 215 | // - an object or expression with an integer type whose integer |
| 216 | // conversion rank is less than or equal to the rank of int |
| 217 | // and unsigned int. |
| 218 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 219 | // |
| 220 | // If an int can represent all values of the original type, the |
| 221 | // value is converted to an int; otherwise, it is converted to an |
| 222 | // unsigned int. These are called the integer promotions. All |
| 223 | // other types are unchanged by the integer promotions. |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 224 | QualType PTy = Context.isPromotableBitField(Expr); |
| 225 | if (!PTy.isNull()) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 226 | ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast); |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 227 | return Expr; |
| 228 | } |
Douglas Gregor | 8d9c509 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 229 | if (Ty->isPromotableIntegerType()) { |
Eli Friedman | 5ae98ee | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 230 | QualType PT = Context.getPromotedIntegerType(Ty); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 231 | ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast); |
Douglas Gregor | 8d9c509 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 232 | return Expr; |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 233 | } |
| 234 | |
Douglas Gregor | 8d9c509 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 235 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 236 | return Expr; |
| 237 | } |
| 238 | |
Chris Lattner | 2ce500f | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 239 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 240 | /// do not have a prototype. Arguments that have type float are promoted to |
Chris Lattner | 2ce500f | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 241 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 242 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 243 | QualType Ty = Expr->getType(); |
| 244 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 245 | |
Chris Lattner | 2ce500f | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 246 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 247 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
Chris Lattner | 2ce500f | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 248 | if (BT->getKind() == BuiltinType::Float) |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 249 | return ImpCastExprToType(Expr, Context.DoubleTy, |
| 250 | CastExpr::CK_FloatingCast); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 251 | |
Chris Lattner | 2ce500f | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 252 | UsualUnaryConversions(Expr); |
| 253 | } |
| 254 | |
Chris Lattner | a8a7d0f | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 255 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 256 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 257 | /// interfaces passed by value. This returns true if the argument type is |
| 258 | /// completely illegal. |
| 259 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | a7d069d | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 260 | DefaultArgumentPromotion(Expr); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 261 | |
Douglas Gregor | da8cdbc | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 262 | if (Expr->getType()->isObjCInterfaceType() && |
| 263 | DiagRuntimeBehavior(Expr->getLocStart(), |
| 264 | PDiag(diag::err_cannot_pass_objc_interface_to_vararg) |
| 265 | << Expr->getType() << CT)) |
| 266 | return true; |
Douglas Gregor | 7ca84af | 2009-12-12 07:25:49 +0000 | [diff] [blame] | 267 | |
Douglas Gregor | da8cdbc | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 268 | if (!Expr->getType()->isPODType() && |
| 269 | DiagRuntimeBehavior(Expr->getLocStart(), |
| 270 | PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 271 | << Expr->getType() << CT)) |
| 272 | return true; |
Chris Lattner | a8a7d0f | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 273 | |
| 274 | return false; |
Anders Carlsson | a7d069d | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 278 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 279 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 280 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 281 | /// responsible for emitting appropriate error diagnostics. |
| 282 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 283 | /// GCC. |
| 284 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 285 | bool isCompAssign) { |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 286 | if (!isCompAssign) |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 287 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 288 | |
| 289 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | a11693b | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 290 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 291 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 292 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | 574dee6 | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 293 | QualType lhs = |
| 294 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 295 | QualType rhs = |
Chris Lattner | 574dee6 | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 296 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | a11693b | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 297 | |
| 298 | // If both types are identical, no conversion is needed. |
| 299 | if (lhs == rhs) |
| 300 | return lhs; |
| 301 | |
| 302 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 303 | // The caller can deal with this (e.g. pointer + int). |
| 304 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 305 | return lhs; |
| 306 | |
Douglas Gregor | d2c2d17 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 307 | // Perform bitfield promotions. |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 308 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr); |
Douglas Gregor | d2c2d17 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 309 | if (!LHSBitfieldPromoteTy.isNull()) |
| 310 | lhs = LHSBitfieldPromoteTy; |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 311 | QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr); |
Douglas Gregor | d2c2d17 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 312 | if (!RHSBitfieldPromoteTy.isNull()) |
| 313 | rhs = RHSBitfieldPromoteTy; |
| 314 | |
Eli Friedman | 5ae98ee | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 315 | QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 316 | if (!isCompAssign) |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 317 | ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown); |
| 318 | ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown); |
Douglas Gregor | a11693b | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 319 | return destType; |
| 320 | } |
| 321 | |
Chris Lattner | 513165e | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 322 | //===----------------------------------------------------------------------===// |
| 323 | // Semantic Analysis for various Expression Types |
| 324 | //===----------------------------------------------------------------------===// |
| 325 | |
| 326 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 327 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 328 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 329 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 330 | /// multiple tokens. However, the common case is that StringToks points to one |
| 331 | /// string. |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 332 | /// |
| 333 | Action::OwningExprResult |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 334 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 335 | assert(NumStringToks && "Must have at least one string!"); |
| 336 | |
Chris Lattner | 8a24e58 | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 337 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Steve Naroff | 4f88b31 | 2007-03-13 22:37:02 +0000 | [diff] [blame] | 338 | if (Literal.hadError) |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 339 | return ExprError(); |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 340 | |
Chris Lattner | 23b7eb6 | 2007-06-15 23:05:46 +0000 | [diff] [blame] | 341 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 342 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 343 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | 36fc879 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 344 | |
Chris Lattner | 36fc879 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 345 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | cbad725 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 346 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | 36fc879 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 347 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | aa1e21d | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 348 | |
| 349 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 350 | if (getLangOptions().CPlusPlus) |
| 351 | StrTy.addConst(); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 352 | |
Chris Lattner | 36fc879 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 353 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 354 | // the nul terminator character as well as the string length for pascal |
| 355 | // strings. |
| 356 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | d42c29f | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 357 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | 36fc879 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 358 | ArrayType::Normal, 0); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 359 | |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 360 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 361 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
Chris Lattner | f83b5af | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 362 | Literal.GetStringLength(), |
| 363 | Literal.AnyWide, StrTy, |
| 364 | &StringTokLocs[0], |
| 365 | StringTokLocs.size())); |
Chris Lattner | 5b183d8 | 2006-11-10 05:03:26 +0000 | [diff] [blame] | 366 | } |
| 367 | |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 368 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 369 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 370 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 371 | /// for values inside the block or for globals). |
| 372 | /// |
Chris Lattner | 497d7b0 | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 373 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 374 | /// up-to-date. |
| 375 | /// |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 376 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 377 | ValueDecl *VD) { |
| 378 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 379 | // we wanted to. |
| 380 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 381 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 382 | |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 383 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 384 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 385 | return false; |
| 386 | |
| 387 | // If this is a reference to an extern, static, or global variable, no need to |
| 388 | // snapshot it. |
| 389 | // FIXME: What about 'const' variables in C++? |
| 390 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 497d7b0 | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 391 | if (!Var->hasLocalStorage()) |
| 392 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 393 | |
Chris Lattner | 497d7b0 | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 394 | // Blocks that have these can't be constant. |
| 395 | CurBlock->hasBlockDeclRefExprs = true; |
| 396 | |
| 397 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 398 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 399 | // be defined outside all of the current blocks (in which case the blocks do |
| 400 | // all get the bit). Walk the nesting chain. |
| 401 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 402 | NextBlock = NextBlock->PrevBlockInfo) { |
| 403 | // If we found the defining block for the variable, don't mark the block as |
| 404 | // having a reference outside it. |
| 405 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 406 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 407 | |
Chris Lattner | 497d7b0 | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 408 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 409 | // a snapshot as well. |
| 410 | NextBlock->hasBlockDeclRefExprs = true; |
| 411 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 412 | |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 413 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 416 | |
| 417 | |
Douglas Gregor | 4bd90e5 | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 418 | /// BuildDeclRefExpr - Build a DeclRefExpr. |
Anders Carlsson | 946b86d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 419 | Sema::OwningExprResult |
John McCall | ce54657 | 2009-12-08 09:08:17 +0000 | [diff] [blame] | 420 | Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, SourceLocation Loc, |
Sebastian Redl | 3d3f75a | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 421 | const CXXScopeSpec *SS) { |
Anders Carlsson | 364035d1 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 422 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 423 | Diag(Loc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 424 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
Anders Carlsson | 364035d1 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 425 | << D->getDeclName(); |
| 426 | return ExprError(); |
| 427 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 428 | |
Anders Carlsson | 946b86d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 429 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 430 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 431 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 432 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 433 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
Anders Carlsson | 946b86d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 434 | << D->getIdentifier() << FD->getDeclName(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 435 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
Anders Carlsson | 946b86d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 436 | << D->getIdentifier(); |
| 437 | return ExprError(); |
| 438 | } |
| 439 | } |
| 440 | } |
| 441 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 442 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 443 | MarkDeclarationReferenced(Loc, D); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 444 | |
Douglas Gregor | 4bd90e5 | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 445 | return Owned(DeclRefExpr::Create(Context, |
| 446 | SS? (NestedNameSpecifier *)SS->getScopeRep() : 0, |
| 447 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | ed6c744 | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 448 | D, Loc, Ty)); |
Douglas Gregor | c7acfdf | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 449 | } |
| 450 | |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 451 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 452 | /// variable corresponding to the anonymous union or struct whose type |
| 453 | /// is Record. |
Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 454 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 455 | RecordDecl *Record) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 456 | assert(Record->isAnonymousStructOrUnion() && |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 457 | "Record must be an anonymous struct or union!"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 458 | |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 459 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 460 | // operation rather than a slow walk through DeclContext's vector (which |
| 461 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 462 | DeclContext *Ctx = Record->getDeclContext(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 463 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 464 | DEnd = Ctx->decls_end(); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 465 | D != DEnd; ++D) { |
| 466 | if (*D == Record) { |
| 467 | // The object for the anonymous struct/union directly |
| 468 | // follows its type in the list of declarations. |
| 469 | ++D; |
| 470 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 6e6ad60 | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 471 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 472 | return *D; |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | assert(false && "Missing object for anonymous record"); |
| 477 | return 0; |
| 478 | } |
| 479 | |
Douglas Gregor | d5846a1 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 480 | /// \brief Given a field that represents a member of an anonymous |
| 481 | /// struct/union, build the path from that field's context to the |
| 482 | /// actual member. |
| 483 | /// |
| 484 | /// Construct the sequence of field member references we'll have to |
| 485 | /// perform to get to the field in the anonymous union/struct. The |
| 486 | /// list of members is built from the field outward, so traverse it |
| 487 | /// backwards to go from an object in the current context to the field |
| 488 | /// we found. |
| 489 | /// |
| 490 | /// \returns The variable from which the field access should begin, |
| 491 | /// for an anonymous struct/union that is not a member of another |
| 492 | /// class. Otherwise, returns NULL. |
| 493 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 494 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 495 | assert(Field->getDeclContext()->isRecord() && |
| 496 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 497 | && "Field must be stored inside an anonymous struct or union"); |
| 498 | |
Douglas Gregor | d5846a1 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 499 | Path.push_back(Field); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 500 | VarDecl *BaseObject = 0; |
| 501 | DeclContext *Ctx = Field->getDeclContext(); |
| 502 | do { |
| 503 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 504 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 505 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | d5846a1 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 506 | Path.push_back(AnonField); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 507 | else { |
| 508 | BaseObject = cast<VarDecl>(AnonObject); |
| 509 | break; |
| 510 | } |
| 511 | Ctx = Ctx->getParent(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 512 | } while (Ctx->isRecord() && |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 513 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | d5846a1 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 514 | |
| 515 | return BaseObject; |
| 516 | } |
| 517 | |
| 518 | Sema::OwningExprResult |
| 519 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 520 | FieldDecl *Field, |
| 521 | Expr *BaseObjectExpr, |
| 522 | SourceLocation OpLoc) { |
| 523 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 524 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
Douglas Gregor | d5846a1 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 525 | AnonFields); |
| 526 | |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 527 | // Build the expression that refers to the base object, from |
| 528 | // which we will build a sequence of member references to each |
| 529 | // of the anonymous union objects and, eventually, the field we |
| 530 | // found via name lookup. |
| 531 | bool BaseObjectIsPointer = false; |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 532 | Qualifiers BaseQuals; |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 533 | if (BaseObject) { |
| 534 | // BaseObject is an anonymous struct/union variable (and is, |
| 535 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 5a20195 | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 536 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 537 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 538 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 539 | SourceLocation()); |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 540 | BaseQuals |
| 541 | = Context.getCanonicalType(BaseObject->getType()).getQualifiers(); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 542 | } else if (BaseObjectExpr) { |
| 543 | // The caller provided the base object expression. Determine |
| 544 | // whether its a pointer and whether it adds any qualifiers to the |
| 545 | // anonymous struct/union fields we're looking into. |
| 546 | QualType ObjectType = BaseObjectExpr->getType(); |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 547 | if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 548 | BaseObjectIsPointer = true; |
| 549 | ObjectType = ObjectPtr->getPointeeType(); |
| 550 | } |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 551 | BaseQuals |
| 552 | = Context.getCanonicalType(ObjectType).getQualifiers(); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 553 | } else { |
| 554 | // We've found a member of an anonymous struct/union that is |
| 555 | // inside a non-anonymous struct/union, so in a well-formed |
| 556 | // program our base object expression is "this". |
| 557 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 558 | if (!MD->isStatic()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 559 | QualType AnonFieldType |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 560 | = Context.getTagDeclType( |
| 561 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 562 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 563 | if ((Context.getCanonicalType(AnonFieldType) |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 564 | == Context.getCanonicalType(ThisType)) || |
| 565 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 566 | // Our base object expression is "this". |
Douglas Gregor | 4b65441 | 2009-12-24 20:23:34 +0000 | [diff] [blame] | 567 | BaseObjectExpr = new (Context) CXXThisExpr(Loc, |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 568 | MD->getThisType(Context)); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 569 | BaseObjectIsPointer = true; |
| 570 | } |
| 571 | } else { |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 572 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 573 | << Field->getDeclName()); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 574 | } |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 575 | BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers()); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 576 | } |
| 577 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 578 | if (!BaseObjectExpr) |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 579 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 580 | << Field->getDeclName()); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | // Build the implicit member references to the field of the |
| 584 | // anonymous struct/union. |
| 585 | Expr *Result = BaseObjectExpr; |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 586 | Qualifiers ResultQuals = BaseQuals; |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 587 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 588 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 589 | FI != FIEnd; ++FI) { |
| 590 | QualType MemberType = (*FI)->getType(); |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 591 | Qualifiers MemberTypeQuals = |
| 592 | Context.getCanonicalType(MemberType).getQualifiers(); |
| 593 | |
| 594 | // CVR attributes from the base are picked up by members, |
| 595 | // except that 'mutable' members don't pick up 'const'. |
| 596 | if ((*FI)->isMutable()) |
| 597 | ResultQuals.removeConst(); |
| 598 | |
| 599 | // GC attributes are never picked up by members. |
| 600 | ResultQuals.removeObjCGCAttr(); |
| 601 | |
| 602 | // TR 18037 does not allow fields to be declared with address spaces. |
| 603 | assert(!MemberTypeQuals.hasAddressSpace()); |
| 604 | |
| 605 | Qualifiers NewQuals = ResultQuals + MemberTypeQuals; |
| 606 | if (NewQuals != MemberTypeQuals) |
| 607 | MemberType = Context.getQualifiedType(MemberType, NewQuals); |
| 608 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 609 | MarkDeclarationReferenced(Loc, *FI); |
Eli Friedman | 78cde14 | 2009-12-04 07:18:51 +0000 | [diff] [blame] | 610 | PerformObjectMemberConversion(Result, *FI); |
Douglas Gregor | c190523 | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 611 | // FIXME: Might this end up being a qualified name? |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 612 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 613 | OpLoc, MemberType); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 614 | BaseObjectIsPointer = false; |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 615 | ResultQuals = NewQuals; |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 618 | return Owned(Result); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 619 | } |
| 620 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 621 | /// Decomposes the given name into a DeclarationName, its location, and |
| 622 | /// possibly a list of template arguments. |
| 623 | /// |
| 624 | /// If this produces template arguments, it is permitted to call |
| 625 | /// DecomposeTemplateName. |
| 626 | /// |
| 627 | /// This actually loses a lot of source location information for |
| 628 | /// non-standard name kinds; we should consider preserving that in |
| 629 | /// some way. |
| 630 | static void DecomposeUnqualifiedId(Sema &SemaRef, |
| 631 | const UnqualifiedId &Id, |
| 632 | TemplateArgumentListInfo &Buffer, |
| 633 | DeclarationName &Name, |
| 634 | SourceLocation &NameLoc, |
| 635 | const TemplateArgumentListInfo *&TemplateArgs) { |
| 636 | if (Id.getKind() == UnqualifiedId::IK_TemplateId) { |
| 637 | Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); |
| 638 | Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); |
| 639 | |
| 640 | ASTTemplateArgsPtr TemplateArgsPtr(SemaRef, |
| 641 | Id.TemplateId->getTemplateArgs(), |
| 642 | Id.TemplateId->NumArgs); |
| 643 | SemaRef.translateTemplateArguments(TemplateArgsPtr, Buffer); |
| 644 | TemplateArgsPtr.release(); |
| 645 | |
| 646 | TemplateName TName = |
| 647 | Sema::TemplateTy::make(Id.TemplateId->Template).getAsVal<TemplateName>(); |
| 648 | |
| 649 | Name = SemaRef.Context.getNameForTemplate(TName); |
| 650 | NameLoc = Id.TemplateId->TemplateNameLoc; |
| 651 | TemplateArgs = &Buffer; |
| 652 | } else { |
| 653 | Name = SemaRef.GetNameFromUnqualifiedId(Id); |
| 654 | NameLoc = Id.StartLocation; |
| 655 | TemplateArgs = 0; |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | /// Decompose the given template name into a list of lookup results. |
| 660 | /// |
| 661 | /// The unqualified ID must name a non-dependent template, which can |
| 662 | /// be more easily tested by checking whether DecomposeUnqualifiedId |
| 663 | /// found template arguments. |
| 664 | static void DecomposeTemplateName(LookupResult &R, const UnqualifiedId &Id) { |
| 665 | assert(Id.getKind() == UnqualifiedId::IK_TemplateId); |
| 666 | TemplateName TName = |
| 667 | Sema::TemplateTy::make(Id.TemplateId->Template).getAsVal<TemplateName>(); |
| 668 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 669 | if (TemplateDecl *TD = TName.getAsTemplateDecl()) |
| 670 | R.addDecl(TD); |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 671 | else if (OverloadedTemplateStorage *OT = TName.getAsOverloadedTemplate()) |
| 672 | for (OverloadedTemplateStorage::iterator I = OT->begin(), E = OT->end(); |
| 673 | I != E; ++I) |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 674 | R.addDecl(*I); |
John McCall | a9ee325 | 2009-11-22 02:49:43 +0000 | [diff] [blame] | 675 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 676 | R.resolveKind(); |
Douglas Gregor | a121b75 | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 677 | } |
| 678 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 679 | static bool IsFullyFormedScope(Sema &SemaRef, CXXRecordDecl *Record) { |
| 680 | for (CXXRecordDecl::base_class_iterator I = Record->bases_begin(), |
| 681 | E = Record->bases_end(); I != E; ++I) { |
| 682 | CanQualType BaseT = SemaRef.Context.getCanonicalType((*I).getType()); |
| 683 | CanQual<RecordType> BaseRT = BaseT->getAs<RecordType>(); |
| 684 | if (!BaseRT) return false; |
| 685 | |
| 686 | CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl()); |
| 687 | if (!BaseRecord->isDefinition() || |
| 688 | !IsFullyFormedScope(SemaRef, BaseRecord)) |
| 689 | return false; |
| 690 | } |
| 691 | |
| 692 | return true; |
| 693 | } |
| 694 | |
John McCall | f786fb1 | 2009-11-30 23:50:49 +0000 | [diff] [blame] | 695 | /// Determines whether we can lookup this id-expression now or whether |
| 696 | /// we have to wait until template instantiation is complete. |
| 697 | static bool IsDependentIdExpression(Sema &SemaRef, const CXXScopeSpec &SS) { |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 698 | DeclContext *DC = SemaRef.computeDeclContext(SS, false); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 699 | |
John McCall | f786fb1 | 2009-11-30 23:50:49 +0000 | [diff] [blame] | 700 | // If the qualifier scope isn't computable, it's definitely dependent. |
| 701 | if (!DC) return true; |
| 702 | |
| 703 | // If the qualifier scope doesn't name a record, we can always look into it. |
| 704 | if (!isa<CXXRecordDecl>(DC)) return false; |
| 705 | |
| 706 | // We can't look into record types unless they're fully-formed. |
| 707 | if (!IsFullyFormedScope(SemaRef, cast<CXXRecordDecl>(DC))) return true; |
| 708 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 709 | return false; |
| 710 | } |
John McCall | f786fb1 | 2009-11-30 23:50:49 +0000 | [diff] [blame] | 711 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 712 | /// Determines if the given class is provably not derived from all of |
| 713 | /// the prospective base classes. |
| 714 | static bool IsProvablyNotDerivedFrom(Sema &SemaRef, |
| 715 | CXXRecordDecl *Record, |
| 716 | const llvm::SmallPtrSet<CXXRecordDecl*, 4> &Bases) { |
John McCall | a6d407c | 2009-12-01 22:28:41 +0000 | [diff] [blame] | 717 | if (Bases.count(Record->getCanonicalDecl())) |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 718 | return false; |
| 719 | |
John McCall | a6d407c | 2009-12-01 22:28:41 +0000 | [diff] [blame] | 720 | RecordDecl *RD = Record->getDefinition(SemaRef.Context); |
| 721 | if (!RD) return false; |
| 722 | Record = cast<CXXRecordDecl>(RD); |
| 723 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 724 | for (CXXRecordDecl::base_class_iterator I = Record->bases_begin(), |
| 725 | E = Record->bases_end(); I != E; ++I) { |
| 726 | CanQualType BaseT = SemaRef.Context.getCanonicalType((*I).getType()); |
| 727 | CanQual<RecordType> BaseRT = BaseT->getAs<RecordType>(); |
| 728 | if (!BaseRT) return false; |
| 729 | |
| 730 | CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl()); |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 731 | if (!IsProvablyNotDerivedFrom(SemaRef, BaseRecord, Bases)) |
| 732 | return false; |
| 733 | } |
| 734 | |
| 735 | return true; |
| 736 | } |
| 737 | |
John McCall | 5af0450 | 2009-12-02 20:26:00 +0000 | [diff] [blame] | 738 | /// Determines if this is an instance member of a class. |
| 739 | static bool IsInstanceMember(NamedDecl *D) { |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 740 | assert(D->isCXXClassMember() && |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 741 | "checking whether non-member is instance member"); |
| 742 | |
| 743 | if (isa<FieldDecl>(D)) return true; |
| 744 | |
| 745 | if (isa<CXXMethodDecl>(D)) |
| 746 | return !cast<CXXMethodDecl>(D)->isStatic(); |
| 747 | |
| 748 | if (isa<FunctionTemplateDecl>(D)) { |
| 749 | D = cast<FunctionTemplateDecl>(D)->getTemplatedDecl(); |
| 750 | return !cast<CXXMethodDecl>(D)->isStatic(); |
| 751 | } |
| 752 | |
| 753 | return false; |
| 754 | } |
| 755 | |
| 756 | enum IMAKind { |
| 757 | /// The reference is definitely not an instance member access. |
| 758 | IMA_Static, |
| 759 | |
| 760 | /// The reference may be an implicit instance member access. |
| 761 | IMA_Mixed, |
| 762 | |
| 763 | /// The reference may be to an instance member, but it is invalid if |
| 764 | /// so, because the context is not an instance method. |
| 765 | IMA_Mixed_StaticContext, |
| 766 | |
| 767 | /// The reference may be to an instance member, but it is invalid if |
| 768 | /// so, because the context is from an unrelated class. |
| 769 | IMA_Mixed_Unrelated, |
| 770 | |
| 771 | /// The reference is definitely an implicit instance member access. |
| 772 | IMA_Instance, |
| 773 | |
| 774 | /// The reference may be to an unresolved using declaration. |
| 775 | IMA_Unresolved, |
| 776 | |
| 777 | /// The reference may be to an unresolved using declaration and the |
| 778 | /// context is not an instance method. |
| 779 | IMA_Unresolved_StaticContext, |
| 780 | |
| 781 | /// The reference is to a member of an anonymous structure in a |
| 782 | /// non-class context. |
| 783 | IMA_AnonymousMember, |
| 784 | |
| 785 | /// All possible referrents are instance members and the current |
| 786 | /// context is not an instance method. |
| 787 | IMA_Error_StaticContext, |
| 788 | |
| 789 | /// All possible referrents are instance members of an unrelated |
| 790 | /// class. |
| 791 | IMA_Error_Unrelated |
| 792 | }; |
| 793 | |
| 794 | /// The given lookup names class member(s) and is not being used for |
| 795 | /// an address-of-member expression. Classify the type of access |
| 796 | /// according to whether it's possible that this reference names an |
| 797 | /// instance member. This is best-effort; it is okay to |
| 798 | /// conservatively answer "yes", in which case some errors will simply |
| 799 | /// not be caught until template-instantiation. |
| 800 | static IMAKind ClassifyImplicitMemberAccess(Sema &SemaRef, |
| 801 | const LookupResult &R) { |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 802 | assert(!R.empty() && (*R.begin())->isCXXClassMember()); |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 803 | |
| 804 | bool isStaticContext = |
| 805 | (!isa<CXXMethodDecl>(SemaRef.CurContext) || |
| 806 | cast<CXXMethodDecl>(SemaRef.CurContext)->isStatic()); |
| 807 | |
| 808 | if (R.isUnresolvableResult()) |
| 809 | return isStaticContext ? IMA_Unresolved_StaticContext : IMA_Unresolved; |
| 810 | |
| 811 | // Collect all the declaring classes of instance members we find. |
| 812 | bool hasNonInstance = false; |
| 813 | llvm::SmallPtrSet<CXXRecordDecl*, 4> Classes; |
| 814 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
| 815 | NamedDecl *D = (*I)->getUnderlyingDecl(); |
| 816 | if (IsInstanceMember(D)) { |
| 817 | CXXRecordDecl *R = cast<CXXRecordDecl>(D->getDeclContext()); |
| 818 | |
| 819 | // If this is a member of an anonymous record, move out to the |
| 820 | // innermost non-anonymous struct or union. If there isn't one, |
| 821 | // that's a special case. |
| 822 | while (R->isAnonymousStructOrUnion()) { |
| 823 | R = dyn_cast<CXXRecordDecl>(R->getParent()); |
| 824 | if (!R) return IMA_AnonymousMember; |
| 825 | } |
| 826 | Classes.insert(R->getCanonicalDecl()); |
| 827 | } |
| 828 | else |
| 829 | hasNonInstance = true; |
| 830 | } |
| 831 | |
| 832 | // If we didn't find any instance members, it can't be an implicit |
| 833 | // member reference. |
| 834 | if (Classes.empty()) |
| 835 | return IMA_Static; |
| 836 | |
| 837 | // If the current context is not an instance method, it can't be |
| 838 | // an implicit member reference. |
| 839 | if (isStaticContext) |
| 840 | return (hasNonInstance ? IMA_Mixed_StaticContext : IMA_Error_StaticContext); |
| 841 | |
| 842 | // If we can prove that the current context is unrelated to all the |
| 843 | // declaring classes, it can't be an implicit member reference (in |
| 844 | // which case it's an error if any of those members are selected). |
| 845 | if (IsProvablyNotDerivedFrom(SemaRef, |
| 846 | cast<CXXMethodDecl>(SemaRef.CurContext)->getParent(), |
| 847 | Classes)) |
| 848 | return (hasNonInstance ? IMA_Mixed_Unrelated : IMA_Error_Unrelated); |
| 849 | |
| 850 | return (hasNonInstance ? IMA_Mixed : IMA_Instance); |
| 851 | } |
| 852 | |
| 853 | /// Diagnose a reference to a field with no object available. |
| 854 | static void DiagnoseInstanceReference(Sema &SemaRef, |
| 855 | const CXXScopeSpec &SS, |
| 856 | const LookupResult &R) { |
| 857 | SourceLocation Loc = R.getNameLoc(); |
| 858 | SourceRange Range(Loc); |
| 859 | if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); |
| 860 | |
| 861 | if (R.getAsSingle<FieldDecl>()) { |
| 862 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(SemaRef.CurContext)) { |
| 863 | if (MD->isStatic()) { |
| 864 | // "invalid use of member 'x' in static member function" |
| 865 | SemaRef.Diag(Loc, diag::err_invalid_member_use_in_static_method) |
| 866 | << Range << R.getLookupName(); |
| 867 | return; |
| 868 | } |
| 869 | } |
| 870 | |
| 871 | SemaRef.Diag(Loc, diag::err_invalid_non_static_member_use) |
| 872 | << R.getLookupName() << Range; |
| 873 | return; |
| 874 | } |
| 875 | |
| 876 | SemaRef.Diag(Loc, diag::err_member_call_without_object) << Range; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 877 | } |
| 878 | |
John McCall | d681c39 | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 879 | /// Diagnose an empty lookup. |
| 880 | /// |
| 881 | /// \return false if new lookup candidates were found |
| 882 | bool Sema::DiagnoseEmptyLookup(const CXXScopeSpec &SS, |
| 883 | LookupResult &R) { |
| 884 | DeclarationName Name = R.getLookupName(); |
| 885 | |
| 886 | // We don't know how to recover from bad qualified lookups. |
| 887 | if (!SS.isEmpty()) { |
| 888 | Diag(R.getNameLoc(), diag::err_no_member) |
| 889 | << Name << computeDeclContext(SS, false) |
| 890 | << SS.getRange(); |
| 891 | return true; |
| 892 | } |
| 893 | |
| 894 | unsigned diagnostic = diag::err_undeclared_var_use; |
| 895 | if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 896 | Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || |
| 897 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
| 898 | diagnostic = diag::err_undeclared_use; |
| 899 | |
| 900 | // Fake an unqualified lookup. This is useful when (for example) |
| 901 | // the original lookup would not have found something because it was |
| 902 | // a dependent name. |
| 903 | for (DeclContext *DC = CurContext; DC; DC = DC->getParent()) { |
| 904 | if (isa<CXXRecordDecl>(DC)) { |
| 905 | LookupQualifiedName(R, DC); |
| 906 | |
| 907 | if (!R.empty()) { |
| 908 | // Don't give errors about ambiguities in this lookup. |
| 909 | R.suppressDiagnostics(); |
| 910 | |
| 911 | CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); |
| 912 | bool isInstance = CurMethod && |
| 913 | CurMethod->isInstance() && |
| 914 | DC == CurMethod->getParent(); |
| 915 | |
| 916 | // Give a code modification hint to insert 'this->'. |
| 917 | // TODO: fixit for inserting 'Base<T>::' in the other cases. |
| 918 | // Actually quite difficult! |
| 919 | if (isInstance) |
| 920 | Diag(R.getNameLoc(), diagnostic) << Name |
| 921 | << CodeModificationHint::CreateInsertion(R.getNameLoc(), |
| 922 | "this->"); |
| 923 | else |
| 924 | Diag(R.getNameLoc(), diagnostic) << Name; |
| 925 | |
| 926 | // Do we really want to note all of these? |
| 927 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 928 | Diag((*I)->getLocation(), diag::note_dependent_var_use); |
| 929 | |
| 930 | // Tell the callee to try to recover. |
| 931 | return false; |
| 932 | } |
| 933 | } |
| 934 | } |
| 935 | |
| 936 | // Give up, we can't recover. |
| 937 | Diag(R.getNameLoc(), diagnostic) << Name; |
| 938 | return true; |
| 939 | } |
| 940 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 941 | Sema::OwningExprResult Sema::ActOnIdExpression(Scope *S, |
| 942 | const CXXScopeSpec &SS, |
| 943 | UnqualifiedId &Id, |
| 944 | bool HasTrailingLParen, |
| 945 | bool isAddressOfOperand) { |
| 946 | assert(!(isAddressOfOperand && HasTrailingLParen) && |
| 947 | "cannot be direct & operand and have a trailing lparen"); |
| 948 | |
| 949 | if (SS.isInvalid()) |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 950 | return ExprError(); |
Douglas Gregor | 90a1a65 | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 951 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 952 | TemplateArgumentListInfo TemplateArgsBuffer; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 953 | |
| 954 | // Decompose the UnqualifiedId into the following data. |
| 955 | DeclarationName Name; |
| 956 | SourceLocation NameLoc; |
| 957 | const TemplateArgumentListInfo *TemplateArgs; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 958 | DecomposeUnqualifiedId(*this, Id, TemplateArgsBuffer, |
| 959 | Name, NameLoc, TemplateArgs); |
Douglas Gregor | 90a1a65 | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 960 | |
Douglas Gregor | 4ea8043 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 961 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 962 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 963 | // C++ [temp.dep.expr]p3: |
| 964 | // An id-expression is type-dependent if it contains: |
| 965 | // -- a nested-name-specifier that contains a class-name that |
| 966 | // names a dependent type. |
| 967 | // Determine whether this is a member of an unknown specialization; |
| 968 | // we need to handle these differently. |
John McCall | f786fb1 | 2009-11-30 23:50:49 +0000 | [diff] [blame] | 969 | if (SS.isSet() && IsDependentIdExpression(*this, SS)) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 970 | return ActOnDependentIdExpression(SS, Name, NameLoc, |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 971 | isAddressOfOperand, |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 972 | TemplateArgs); |
| 973 | } |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 974 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 975 | // Perform the required lookup. |
| 976 | LookupResult R(*this, Name, NameLoc, LookupOrdinaryName); |
| 977 | if (TemplateArgs) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 978 | // Just re-use the lookup done by isTemplateName. |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 979 | DecomposeTemplateName(R, Id); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 980 | } else { |
| 981 | LookupParsedName(R, S, &SS, true); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 982 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 983 | // If this reference is in an Objective-C method, then we need to do |
| 984 | // some special Objective-C lookup, too. |
| 985 | if (!SS.isSet() && II && getCurMethodDecl()) { |
| 986 | OwningExprResult E(LookupInObjCMethod(R, S, II)); |
| 987 | if (E.isInvalid()) |
| 988 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 989 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 990 | Expr *Ex = E.takeAs<Expr>(); |
| 991 | if (Ex) return Owned(Ex); |
Steve Naroff | ebf4cb4 | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 992 | } |
Chris Lattner | 59a2594 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 993 | } |
Douglas Gregor | f15f5d3 | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 994 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 995 | if (R.isAmbiguous()) |
| 996 | return ExprError(); |
| 997 | |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 998 | // Determine whether this name might be a candidate for |
| 999 | // argument-dependent lookup. |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1000 | bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1001 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1002 | if (R.empty() && !ADL) { |
Bill Wendling | 4073ed5 | 2007-02-13 01:51:42 +0000 | [diff] [blame] | 1003 | // Otherwise, this could be an implicitly declared function reference (legal |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1004 | // in C90, extension in C99, forbidden in C++). |
| 1005 | if (HasTrailingLParen && II && !getLangOptions().CPlusPlus) { |
| 1006 | NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); |
| 1007 | if (D) R.addDecl(D); |
| 1008 | } |
| 1009 | |
| 1010 | // If this name wasn't predeclared and if this is not a function |
| 1011 | // call, diagnose the problem. |
| 1012 | if (R.empty()) { |
John McCall | d681c39 | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1013 | if (DiagnoseEmptyLookup(SS, R)) |
| 1014 | return ExprError(); |
| 1015 | |
| 1016 | assert(!R.empty() && |
| 1017 | "DiagnoseEmptyLookup returned false but added no results"); |
Steve Naroff | 92e30f8 | 2007-04-02 22:35:25 +0000 | [diff] [blame] | 1018 | } |
Chris Lattner | 17ed487 | 2006-11-20 04:58:19 +0000 | [diff] [blame] | 1019 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1020 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1021 | // This is guaranteed from this point on. |
| 1022 | assert(!R.empty() || ADL); |
| 1023 | |
| 1024 | if (VarDecl *Var = R.getAsSingle<VarDecl>()) { |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1025 | // Warn about constructs like: |
| 1026 | // if (void *X = foo()) { ... } else { X }. |
| 1027 | // In the else block, the pointer is always false. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1028 | |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1029 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 1030 | Scope *CheckS = S; |
Douglas Gregor | 13a2c03 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 1031 | while (CheckS && CheckS->getControlParent()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1032 | if (CheckS->isWithinElse() && |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1033 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1034 | ExprError(Diag(NameLoc, diag::warn_value_always_zero) |
Douglas Gregor | 13a2c03 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 1035 | << Var->getDeclName() |
| 1036 | << (Var->getType()->isPointerType()? 2 : |
| 1037 | Var->getType()->isBooleanType()? 1 : 0)); |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1038 | break; |
| 1039 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1040 | |
Douglas Gregor | 13a2c03 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 1041 | // Move to the parent of this scope. |
| 1042 | CheckS = CheckS->getParent(); |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1043 | } |
| 1044 | } |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1045 | } else if (FunctionDecl *Func = R.getAsSingle<FunctionDecl>()) { |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1046 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 1047 | // C99 DR 316 says that, if a function type comes from a |
| 1048 | // function definition (without a prototype), that type is only |
| 1049 | // used for checking compatibility. Therefore, when referencing |
| 1050 | // the function, we pretend that we don't have the full function |
| 1051 | // type. |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1052 | if (DiagnoseUseOfDecl(Func, NameLoc)) |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1053 | return ExprError(); |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1054 | |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1055 | QualType T = Func->getType(); |
| 1056 | QualType NoProtoType = T; |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1057 | if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>()) |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1058 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1059 | return BuildDeclRefExpr(Func, NoProtoType, NameLoc, &SS); |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1060 | } |
| 1061 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1062 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1063 | // Check whether this might be a C++ implicit instance member access. |
| 1064 | // C++ [expr.prim.general]p6: |
| 1065 | // Within the definition of a non-static member function, an |
| 1066 | // identifier that names a non-static member is transformed to a |
| 1067 | // class member access expression. |
| 1068 | // But note that &SomeClass::foo is grammatically distinct, even |
| 1069 | // though we don't parse it that way. |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 1070 | if (!R.empty() && (*R.begin())->isCXXClassMember()) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1071 | bool isAbstractMemberPointer = (isAddressOfOperand && !SS.isEmpty()); |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 1072 | if (!isAbstractMemberPointer) |
| 1073 | return BuildPossibleImplicitMemberExpr(SS, R, TemplateArgs); |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1074 | } |
| 1075 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1076 | if (TemplateArgs) |
| 1077 | return BuildTemplateIdExpr(SS, R, ADL, *TemplateArgs); |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1078 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1079 | return BuildDeclarationNameExpr(SS, R, ADL); |
| 1080 | } |
| 1081 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 1082 | /// Builds an expression which might be an implicit member expression. |
| 1083 | Sema::OwningExprResult |
| 1084 | Sema::BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS, |
| 1085 | LookupResult &R, |
| 1086 | const TemplateArgumentListInfo *TemplateArgs) { |
| 1087 | switch (ClassifyImplicitMemberAccess(*this, R)) { |
| 1088 | case IMA_Instance: |
| 1089 | return BuildImplicitMemberExpr(SS, R, TemplateArgs, true); |
| 1090 | |
| 1091 | case IMA_AnonymousMember: |
| 1092 | assert(R.isSingleResult()); |
| 1093 | return BuildAnonymousStructUnionMemberReference(R.getNameLoc(), |
| 1094 | R.getAsSingle<FieldDecl>()); |
| 1095 | |
| 1096 | case IMA_Mixed: |
| 1097 | case IMA_Mixed_Unrelated: |
| 1098 | case IMA_Unresolved: |
| 1099 | return BuildImplicitMemberExpr(SS, R, TemplateArgs, false); |
| 1100 | |
| 1101 | case IMA_Static: |
| 1102 | case IMA_Mixed_StaticContext: |
| 1103 | case IMA_Unresolved_StaticContext: |
| 1104 | if (TemplateArgs) |
| 1105 | return BuildTemplateIdExpr(SS, R, false, *TemplateArgs); |
| 1106 | return BuildDeclarationNameExpr(SS, R, false); |
| 1107 | |
| 1108 | case IMA_Error_StaticContext: |
| 1109 | case IMA_Error_Unrelated: |
| 1110 | DiagnoseInstanceReference(*this, SS, R); |
| 1111 | return ExprError(); |
| 1112 | } |
| 1113 | |
| 1114 | llvm_unreachable("unexpected instance member access kind"); |
| 1115 | return ExprError(); |
| 1116 | } |
| 1117 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1118 | /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified |
| 1119 | /// declaration name, generally during template instantiation. |
| 1120 | /// There's a large number of things which don't need to be done along |
| 1121 | /// this path. |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1122 | Sema::OwningExprResult |
| 1123 | Sema::BuildQualifiedDeclarationNameExpr(const CXXScopeSpec &SS, |
| 1124 | DeclarationName Name, |
| 1125 | SourceLocation NameLoc) { |
| 1126 | DeclContext *DC; |
| 1127 | if (!(DC = computeDeclContext(SS, false)) || |
| 1128 | DC->isDependentContext() || |
| 1129 | RequireCompleteDeclContext(SS)) |
| 1130 | return BuildDependentDeclRefExpr(SS, Name, NameLoc, 0); |
| 1131 | |
| 1132 | LookupResult R(*this, Name, NameLoc, LookupOrdinaryName); |
| 1133 | LookupQualifiedName(R, DC); |
| 1134 | |
| 1135 | if (R.isAmbiguous()) |
| 1136 | return ExprError(); |
| 1137 | |
| 1138 | if (R.empty()) { |
| 1139 | Diag(NameLoc, diag::err_no_member) << Name << DC << SS.getRange(); |
| 1140 | return ExprError(); |
| 1141 | } |
| 1142 | |
| 1143 | return BuildDeclarationNameExpr(SS, R, /*ADL*/ false); |
| 1144 | } |
| 1145 | |
| 1146 | /// LookupInObjCMethod - The parser has read a name in, and Sema has |
| 1147 | /// detected that we're currently inside an ObjC method. Perform some |
| 1148 | /// additional lookup. |
| 1149 | /// |
| 1150 | /// Ideally, most of this would be done by lookup, but there's |
| 1151 | /// actually quite a lot of extra work involved. |
| 1152 | /// |
| 1153 | /// Returns a null sentinel to indicate trivial success. |
| 1154 | Sema::OwningExprResult |
| 1155 | Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, |
| 1156 | IdentifierInfo *II) { |
| 1157 | SourceLocation Loc = Lookup.getNameLoc(); |
| 1158 | |
| 1159 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 1160 | // in which case we should look for an ivar. 2) scoped lookup could have |
| 1161 | // found a decl, but that decl is outside the current instance method (i.e. |
| 1162 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 1163 | // this name, if the lookup sucedes, we replace it our current decl. |
| 1164 | |
| 1165 | // If we're in a class method, we don't normally want to look for |
| 1166 | // ivars. But if we don't find anything else, and there's an |
| 1167 | // ivar, that's an error. |
| 1168 | bool IsClassMethod = getCurMethodDecl()->isClassMethod(); |
| 1169 | |
| 1170 | bool LookForIvars; |
| 1171 | if (Lookup.empty()) |
| 1172 | LookForIvars = true; |
| 1173 | else if (IsClassMethod) |
| 1174 | LookForIvars = false; |
| 1175 | else |
| 1176 | LookForIvars = (Lookup.isSingleResult() && |
| 1177 | Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); |
| 1178 | |
| 1179 | if (LookForIvars) { |
| 1180 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
| 1181 | ObjCInterfaceDecl *ClassDeclared; |
| 1182 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
| 1183 | // Diagnose using an ivar in a class method. |
| 1184 | if (IsClassMethod) |
| 1185 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 1186 | << IV->getDeclName()); |
| 1187 | |
| 1188 | // If we're referencing an invalid decl, just return this as a silent |
| 1189 | // error node. The error diagnostic was already emitted on the decl. |
| 1190 | if (IV->isInvalidDecl()) |
| 1191 | return ExprError(); |
| 1192 | |
| 1193 | // Check if referencing a field with __attribute__((deprecated)). |
| 1194 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 1195 | return ExprError(); |
| 1196 | |
| 1197 | // Diagnose the use of an ivar outside of the declaring class. |
| 1198 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 1199 | ClassDeclared != IFace) |
| 1200 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 1201 | |
| 1202 | // FIXME: This should use a new expr for a direct reference, don't |
| 1203 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
| 1204 | IdentifierInfo &II = Context.Idents.get("self"); |
| 1205 | UnqualifiedId SelfName; |
| 1206 | SelfName.setIdentifier(&II, SourceLocation()); |
| 1207 | CXXScopeSpec SelfScopeSpec; |
| 1208 | OwningExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, |
| 1209 | SelfName, false, false); |
| 1210 | MarkDeclarationReferenced(Loc, IV); |
| 1211 | return Owned(new (Context) |
| 1212 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
| 1213 | SelfExpr.takeAs<Expr>(), true, true)); |
| 1214 | } |
| 1215 | } else if (getCurMethodDecl()->isInstanceMethod()) { |
| 1216 | // We should warn if a local variable hides an ivar. |
| 1217 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
| 1218 | ObjCInterfaceDecl *ClassDeclared; |
| 1219 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
| 1220 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 1221 | IFace == ClassDeclared) |
| 1222 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
| 1223 | } |
| 1224 | } |
| 1225 | |
| 1226 | // Needed to implement property "super.method" notation. |
| 1227 | if (Lookup.empty() && II->isStr("super")) { |
| 1228 | QualType T; |
| 1229 | |
| 1230 | if (getCurMethodDecl()->isInstanceMethod()) |
| 1231 | T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( |
| 1232 | getCurMethodDecl()->getClassInterface())); |
| 1233 | else |
| 1234 | T = Context.getObjCClassType(); |
| 1235 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
| 1236 | } |
| 1237 | |
| 1238 | // Sentinel value saying that we didn't do anything special. |
| 1239 | return Owned((Expr*) 0); |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1240 | } |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1241 | |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1242 | /// \brief Cast member's object to its own class if necessary. |
Fariborz Jahanian | 3f15083 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 1243 | bool |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1244 | Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { |
| 1245 | if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1246 | if (CXXRecordDecl *RD = |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1247 | dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1248 | QualType DestType = |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1249 | Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Fariborz Jahanian | 4b12ed1 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 1250 | if (DestType->isDependentType() || From->getType()->isDependentType()) |
| 1251 | return false; |
| 1252 | QualType FromRecordType = From->getType(); |
| 1253 | QualType DestRecordType = DestType; |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1254 | if (FromRecordType->getAs<PointerType>()) { |
Fariborz Jahanian | 4b12ed1 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 1255 | DestType = Context.getPointerType(DestType); |
| 1256 | FromRecordType = FromRecordType->getPointeeType(); |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1257 | } |
Fariborz Jahanian | 4b12ed1 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 1258 | if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && |
| 1259 | CheckDerivedToBaseConversion(FromRecordType, |
| 1260 | DestRecordType, |
| 1261 | From->getSourceRange().getBegin(), |
| 1262 | From->getSourceRange())) |
| 1263 | return true; |
Anders Carlsson | a076d14 | 2009-07-31 01:23:52 +0000 | [diff] [blame] | 1264 | ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase, |
| 1265 | /*isLvalue=*/true); |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1266 | } |
Fariborz Jahanian | 3f15083 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 1267 | return false; |
Fariborz Jahanian | bb67b82 | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1268 | } |
Douglas Gregor | 3256d04 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1269 | |
Douglas Gregor | f405d7e | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 1270 | /// \brief Build a MemberExpr AST node. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1271 | static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow, |
Eli Friedman | 2cfcef6 | 2009-12-04 06:40:45 +0000 | [diff] [blame] | 1272 | const CXXScopeSpec &SS, ValueDecl *Member, |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1273 | SourceLocation Loc, QualType Ty, |
| 1274 | const TemplateArgumentListInfo *TemplateArgs = 0) { |
| 1275 | NestedNameSpecifier *Qualifier = 0; |
| 1276 | SourceRange QualifierRange; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1277 | if (SS.isSet()) { |
| 1278 | Qualifier = (NestedNameSpecifier *) SS.getScopeRep(); |
| 1279 | QualifierRange = SS.getRange(); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1280 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1281 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1282 | return MemberExpr::Create(C, Base, isArrow, Qualifier, QualifierRange, |
| 1283 | Member, Loc, TemplateArgs, Ty); |
Douglas Gregor | c190523 | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 1284 | } |
| 1285 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1286 | /// Builds an implicit member access expression. The current context |
| 1287 | /// is known to be an instance method, and the given unqualified lookup |
| 1288 | /// set is known to contain only instance members, at least one of which |
| 1289 | /// is from an appropriate type. |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1290 | Sema::OwningExprResult |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1291 | Sema::BuildImplicitMemberExpr(const CXXScopeSpec &SS, |
| 1292 | LookupResult &R, |
| 1293 | const TemplateArgumentListInfo *TemplateArgs, |
| 1294 | bool IsKnownInstance) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1295 | assert(!R.empty() && !R.isAmbiguous()); |
| 1296 | |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1297 | SourceLocation Loc = R.getNameLoc(); |
Sebastian Redl | 3d3f75a | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1298 | |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1299 | // We may have found a field within an anonymous union or struct |
| 1300 | // (C++ [class.union]). |
Douglas Gregor | 6493d9c | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 1301 | // FIXME: This needs to happen post-isImplicitMemberReference? |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1302 | // FIXME: template-ids inside anonymous structs? |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1303 | if (FieldDecl *FD = R.getAsSingle<FieldDecl>()) |
Douglas Gregor | 9ac7a07 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1304 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1305 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1306 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1307 | // If this is known to be an instance access, go ahead and build a |
| 1308 | // 'this' expression now. |
| 1309 | QualType ThisType = cast<CXXMethodDecl>(CurContext)->getThisType(Context); |
| 1310 | Expr *This = 0; // null signifies implicit access |
| 1311 | if (IsKnownInstance) { |
| 1312 | This = new (Context) CXXThisExpr(SourceLocation(), ThisType); |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1313 | } |
| 1314 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1315 | return BuildMemberReferenceExpr(ExprArg(*this, This), ThisType, |
| 1316 | /*OpLoc*/ SourceLocation(), |
| 1317 | /*IsArrow*/ true, |
| 1318 | SS, R, TemplateArgs); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1319 | } |
| 1320 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1321 | bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1322 | const LookupResult &R, |
| 1323 | bool HasTrailingLParen) { |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1324 | // Only when used directly as the postfix-expression of a call. |
| 1325 | if (!HasTrailingLParen) |
| 1326 | return false; |
| 1327 | |
| 1328 | // Never if a scope specifier was provided. |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1329 | if (SS.isSet()) |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1330 | return false; |
| 1331 | |
| 1332 | // Only in C++ or ObjC++. |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1333 | if (!getLangOptions().CPlusPlus) |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1334 | return false; |
| 1335 | |
| 1336 | // Turn off ADL when we find certain kinds of declarations during |
| 1337 | // normal lookup: |
| 1338 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
| 1339 | NamedDecl *D = *I; |
| 1340 | |
| 1341 | // C++0x [basic.lookup.argdep]p3: |
| 1342 | // -- a declaration of a class member |
| 1343 | // Since using decls preserve this property, we check this on the |
| 1344 | // original decl. |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 1345 | if (D->isCXXClassMember()) |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1346 | return false; |
| 1347 | |
| 1348 | // C++0x [basic.lookup.argdep]p3: |
| 1349 | // -- a block-scope function declaration that is not a |
| 1350 | // using-declaration |
| 1351 | // NOTE: we also trigger this for function templates (in fact, we |
| 1352 | // don't check the decl type at all, since all other decl types |
| 1353 | // turn off ADL anyway). |
| 1354 | if (isa<UsingShadowDecl>(D)) |
| 1355 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
| 1356 | else if (D->getDeclContext()->isFunctionOrMethod()) |
| 1357 | return false; |
| 1358 | |
| 1359 | // C++0x [basic.lookup.argdep]p3: |
| 1360 | // -- a declaration that is neither a function or a function |
| 1361 | // template |
| 1362 | // And also for builtin functions. |
| 1363 | if (isa<FunctionDecl>(D)) { |
| 1364 | FunctionDecl *FDecl = cast<FunctionDecl>(D); |
| 1365 | |
| 1366 | // But also builtin functions. |
| 1367 | if (FDecl->getBuiltinID() && FDecl->isImplicit()) |
| 1368 | return false; |
| 1369 | } else if (!isa<FunctionTemplateDecl>(D)) |
| 1370 | return false; |
| 1371 | } |
| 1372 | |
| 1373 | return true; |
| 1374 | } |
| 1375 | |
| 1376 | |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1377 | /// Diagnoses obvious problems with the use of the given declaration |
| 1378 | /// as an expression. This is only actually called for lookups that |
| 1379 | /// were not overloaded, and it doesn't promise that the declaration |
| 1380 | /// will in fact be used. |
| 1381 | static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { |
| 1382 | if (isa<TypedefDecl>(D)) { |
| 1383 | S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); |
| 1384 | return true; |
| 1385 | } |
| 1386 | |
| 1387 | if (isa<ObjCInterfaceDecl>(D)) { |
| 1388 | S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); |
| 1389 | return true; |
| 1390 | } |
| 1391 | |
| 1392 | if (isa<NamespaceDecl>(D)) { |
| 1393 | S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); |
| 1394 | return true; |
| 1395 | } |
| 1396 | |
| 1397 | return false; |
| 1398 | } |
| 1399 | |
| 1400 | Sema::OwningExprResult |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1401 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1402 | LookupResult &R, |
| 1403 | bool NeedsADL) { |
John McCall | 3a60c87 | 2009-12-08 22:45:53 +0000 | [diff] [blame] | 1404 | // If this is a single, fully-resolved result and we don't need ADL, |
| 1405 | // just build an ordinary singleton decl ref. |
| 1406 | if (!NeedsADL && R.isSingleResult()) |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1407 | return BuildDeclarationNameExpr(SS, R.getNameLoc(), R.getFoundDecl()); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1408 | |
| 1409 | // We only need to check the declaration if there's exactly one |
| 1410 | // result, because in the overloaded case the results can only be |
| 1411 | // functions and function templates. |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1412 | if (R.isSingleResult() && |
| 1413 | CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1414 | return ExprError(); |
| 1415 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1416 | bool Dependent |
| 1417 | = UnresolvedLookupExpr::ComputeDependence(R.begin(), R.end(), 0); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1418 | UnresolvedLookupExpr *ULE |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1419 | = UnresolvedLookupExpr::Create(Context, Dependent, |
| 1420 | (NestedNameSpecifier*) SS.getScopeRep(), |
| 1421 | SS.getRange(), |
John McCall | b53bbd4 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1422 | R.getLookupName(), R.getNameLoc(), |
| 1423 | NeedsADL, R.isOverloadedResult()); |
| 1424 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 1425 | ULE->addDecl(*I); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1426 | |
| 1427 | return Owned(ULE); |
| 1428 | } |
| 1429 | |
| 1430 | |
| 1431 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 1432 | Sema::OwningExprResult |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1433 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1434 | SourceLocation Loc, NamedDecl *D) { |
| 1435 | assert(D && "Cannot refer to a NULL declaration"); |
John McCall | 283b901 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 1436 | assert(!isa<FunctionTemplateDecl>(D) && |
| 1437 | "Cannot refer unambiguously to a function template"); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1438 | |
| 1439 | if (CheckDeclInExpr(*this, Loc, D)) |
| 1440 | return ExprError(); |
Steve Naroff | f1e5369 | 2007-03-23 22:27:02 +0000 | [diff] [blame] | 1441 | |
Douglas Gregor | e7488b9 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 1442 | if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { |
| 1443 | // Specifically diagnose references to class templates that are missing |
| 1444 | // a template argument list. |
| 1445 | Diag(Loc, diag::err_template_decl_ref) |
| 1446 | << Template << SS.getRange(); |
| 1447 | Diag(Template->getLocation(), diag::note_template_decl_here); |
| 1448 | return ExprError(); |
| 1449 | } |
| 1450 | |
| 1451 | // Make sure that we're referring to a value. |
| 1452 | ValueDecl *VD = dyn_cast<ValueDecl>(D); |
| 1453 | if (!VD) { |
| 1454 | Diag(Loc, diag::err_ref_non_value) |
| 1455 | << D << SS.getRange(); |
John McCall | b48971d | 2009-12-18 18:35:10 +0000 | [diff] [blame] | 1456 | Diag(D->getLocation(), diag::note_declared_at); |
Douglas Gregor | e7488b9 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 1457 | return ExprError(); |
| 1458 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1459 | |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1460 | // Check whether this declaration can be used. Note that we suppress |
| 1461 | // this check when we're going to perform argument-dependent lookup |
| 1462 | // on this function name, because this might not be the function |
| 1463 | // that overload resolution actually selects. |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1464 | if (DiagnoseUseOfDecl(VD, Loc)) |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1465 | return ExprError(); |
| 1466 | |
Steve Naroff | 8de9c3a | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1467 | // Only create DeclRefExpr's for valid Decl's. |
| 1468 | if (VD->isInvalidDecl()) |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1469 | return ExprError(); |
| 1470 | |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1471 | // If the identifier reference is inside a block, and it refers to a value |
| 1472 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1473 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1474 | // the block is formed. |
Steve Naroff | 8de9c3a | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1475 | // |
Chris Lattner | 2a9d989 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1476 | // We do not do this for things like enum constants, global variables, etc, |
| 1477 | // as they do not get snapshotted. |
| 1478 | // |
| 1479 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1480 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 7fa3faa | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1481 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1482 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1483 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 7fa3faa | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1484 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 3fd7310 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1485 | // This is to record that a 'const' was actually synthesize and added. |
| 1486 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1487 | // Variable will be bound by-copy, make it const within the closure. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1488 | |
Eli Friedman | 7fa3faa | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1489 | ExprTy.addConst(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1490 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
Fariborz Jahanian | 3fd7310 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1491 | constAdded)); |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1492 | } |
| 1493 | // If this reference is not in a block or if the referenced variable is |
| 1494 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1495 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1496 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, &SS); |
Chris Lattner | 17ed487 | 2006-11-20 04:58:19 +0000 | [diff] [blame] | 1497 | } |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1498 | |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1499 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1500 | tok::TokenKind Kind) { |
Chris Lattner | 6307f19 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1501 | PredefinedExpr::IdentType IT; |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1502 | |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1503 | switch (Kind) { |
Chris Lattner | 317e6ba | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1504 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | 6307f19 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1505 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1506 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1507 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1508 | } |
Chris Lattner | 317e6ba | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1509 | |
Chris Lattner | a81a027 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1510 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1511 | // string. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1512 | |
Anders Carlsson | 2fb0824 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1513 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
| 1514 | if (!currentDecl) { |
Chris Lattner | f45c5ec | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1515 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 2fb0824 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1516 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | f45c5ec | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1517 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1518 | |
Anders Carlsson | 0b209a8 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1519 | QualType ResTy; |
| 1520 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 1521 | ResTy = Context.DependentTy; |
| 1522 | } else { |
| 1523 | unsigned Length = |
| 1524 | PredefinedExpr::ComputeName(Context, IT, currentDecl).length(); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1525 | |
Anders Carlsson | 0b209a8 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1526 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1527 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 0b209a8 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1528 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 1529 | } |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1530 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1531 | } |
| 1532 | |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1533 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Chris Lattner | 23b7eb6 | 2007-06-15 23:05:46 +0000 | [diff] [blame] | 1534 | llvm::SmallString<16> CharBuffer; |
Steve Naroff | ae4143e | 2007-04-26 20:39:23 +0000 | [diff] [blame] | 1535 | CharBuffer.resize(Tok.getLength()); |
| 1536 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1537 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1538 | |
Steve Naroff | ae4143e | 2007-04-26 20:39:23 +0000 | [diff] [blame] | 1539 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1540 | Tok.getLocation(), PP); |
| 1541 | if (Literal.hadError()) |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1542 | return ExprError(); |
Chris Lattner | ef24b38 | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1543 | |
Chris Lattner | c3847ba | 2009-12-30 21:19:39 +0000 | [diff] [blame] | 1544 | QualType Ty; |
| 1545 | if (!getLangOptions().CPlusPlus) |
| 1546 | Ty = Context.IntTy; // 'x' and L'x' -> int in C. |
| 1547 | else if (Literal.isWide()) |
| 1548 | Ty = Context.WCharTy; // L'x' -> wchar_t in C++. |
| 1549 | else |
| 1550 | Ty = Context.CharTy; // 'x' -> char in C++ |
Chris Lattner | ef24b38 | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1551 | |
Sebastian Redl | 20614a7 | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1552 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1553 | Literal.isWide(), |
Chris Lattner | c3847ba | 2009-12-30 21:19:39 +0000 | [diff] [blame] | 1554 | Ty, Tok.getLocation())); |
Steve Naroff | ae4143e | 2007-04-26 20:39:23 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1557 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1558 | // Fast path for a single digit (which is quite common). A single digit |
Steve Naroff | f2fb89e | 2007-03-13 20:29:44 +0000 | [diff] [blame] | 1559 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1560 | if (Tok.getLength() == 1) { |
Chris Lattner | 9240b3e | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1561 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | c4c1819 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1562 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1563 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 5faaef7 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1564 | Context.IntTy, Tok.getLocation())); |
Steve Naroff | f2fb89e | 2007-03-13 20:29:44 +0000 | [diff] [blame] | 1565 | } |
Ted Kremenek | e981418 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1566 | |
Chris Lattner | 23b7eb6 | 2007-06-15 23:05:46 +0000 | [diff] [blame] | 1567 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | a1cf5f9 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1568 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1569 | IntegerBuffer.resize(Tok.getLength()+1); |
Steve Naroff | 8160ea2 | 2007-03-06 01:09:46 +0000 | [diff] [blame] | 1570 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1571 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1572 | // Get the spelling of the token, which eliminates trigraphs, etc. |
Steve Naroff | 8160ea2 | 2007-03-06 01:09:46 +0000 | [diff] [blame] | 1573 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1574 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1575 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
Steve Naroff | 451d8f16 | 2007-03-12 23:22:38 +0000 | [diff] [blame] | 1576 | Tok.getLocation(), PP); |
Steve Naroff | f2fb89e | 2007-03-13 20:29:44 +0000 | [diff] [blame] | 1577 | if (Literal.hadError) |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1578 | return ExprError(); |
| 1579 | |
Chris Lattner | 1c20a17 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1580 | Expr *Res; |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1581 | |
Chris Lattner | 1c20a17 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1582 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | ec0a6d9 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1583 | QualType Ty; |
Chris Lattner | 9a8d1d9 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1584 | if (Literal.isFloat) |
Chris Lattner | ec0a6d9 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1585 | Ty = Context.FloatTy; |
Chris Lattner | 9a8d1d9 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1586 | else if (!Literal.isLong) |
Chris Lattner | ec0a6d9 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1587 | Ty = Context.DoubleTy; |
Chris Lattner | 9a8d1d9 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1588 | else |
Chris Lattner | 7570e9c | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1589 | Ty = Context.LongDoubleTy; |
Chris Lattner | 9a8d1d9 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1590 | |
| 1591 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1592 | |
John McCall | 53b93a0 | 2009-12-24 09:08:04 +0000 | [diff] [blame] | 1593 | using llvm::APFloat; |
| 1594 | APFloat Val(Format); |
| 1595 | |
| 1596 | APFloat::opStatus result = Literal.GetFloatValue(Val); |
John McCall | 122c831 | 2009-12-24 11:09:08 +0000 | [diff] [blame] | 1597 | |
| 1598 | // Overflow is always an error, but underflow is only an error if |
| 1599 | // we underflowed to zero (APFloat reports denormals as underflow). |
| 1600 | if ((result & APFloat::opOverflow) || |
| 1601 | ((result & APFloat::opUnderflow) && Val.isZero())) { |
John McCall | 53b93a0 | 2009-12-24 09:08:04 +0000 | [diff] [blame] | 1602 | unsigned diagnostic; |
| 1603 | llvm::SmallVector<char, 20> buffer; |
| 1604 | if (result & APFloat::opOverflow) { |
| 1605 | diagnostic = diag::err_float_overflow; |
| 1606 | APFloat::getLargest(Format).toString(buffer); |
| 1607 | } else { |
| 1608 | diagnostic = diag::err_float_underflow; |
| 1609 | APFloat::getSmallest(Format).toString(buffer); |
| 1610 | } |
| 1611 | |
| 1612 | Diag(Tok.getLocation(), diagnostic) |
| 1613 | << Ty |
| 1614 | << llvm::StringRef(buffer.data(), buffer.size()); |
| 1615 | } |
| 1616 | |
| 1617 | bool isExact = (result == APFloat::opOK); |
Chris Lattner | e4edb8e | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1618 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1619 | |
Chris Lattner | 1c20a17 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1620 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1621 | return ExprError(); |
Chris Lattner | 1c20a17 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1622 | } else { |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1623 | QualType Ty; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1624 | |
Neil Booth | ac582c5 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1625 | // long long is a C99 feature. |
| 1626 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 4a1ee05 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1627 | Literal.isLongLong) |
Neil Booth | ac582c5 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1628 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1629 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1630 | // Get the value in the widest-possible width. |
Chris Lattner | 37e0587 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1631 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1632 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1633 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1634 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1635 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1636 | Ty = Context.UnsignedLongLongTy; |
| 1637 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 37e0587 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1638 | "long long is not intmax_t?"); |
Steve Naroff | 09ef474 | 2007-03-09 23:16:33 +0000 | [diff] [blame] | 1639 | } else { |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1640 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1641 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1642 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1643 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1644 | // be an unsigned int. |
| 1645 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1646 | |
| 1647 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1648 | unsigned Width = 0; |
Chris Lattner | 7b939cf | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1649 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1650 | // Are int/unsigned possibilities? |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1651 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1652 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1653 | // Does it fit in a unsigned int? |
| 1654 | if (ResultVal.isIntN(IntSize)) { |
| 1655 | // Does it fit in a signed int? |
| 1656 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1657 | Ty = Context.IntTy; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1658 | else if (AllowUnsigned) |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1659 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1660 | Width = IntSize; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1661 | } |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1662 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1663 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1664 | // Are long/unsigned long possibilities? |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1665 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1666 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1667 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1668 | // Does it fit in a unsigned long? |
| 1669 | if (ResultVal.isIntN(LongSize)) { |
| 1670 | // Does it fit in a signed long? |
| 1671 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1672 | Ty = Context.LongTy; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1673 | else if (AllowUnsigned) |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1674 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1675 | Width = LongSize; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1676 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1677 | } |
| 1678 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1679 | // Finally, check long long if needed. |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1680 | if (Ty.isNull()) { |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1681 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1682 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1683 | // Does it fit in a unsigned long long? |
| 1684 | if (ResultVal.isIntN(LongLongSize)) { |
| 1685 | // Does it fit in a signed long long? |
| 1686 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1687 | Ty = Context.LongLongTy; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1688 | else if (AllowUnsigned) |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1689 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1690 | Width = LongLongSize; |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1691 | } |
| 1692 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1693 | |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1694 | // If we still couldn't decide a type, we probably have something that |
| 1695 | // does not fit in a signed long long, but has no U suffix. |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1696 | if (Ty.isNull()) { |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1697 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1698 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1699 | Width = Context.Target.getLongLongWidth(); |
Chris Lattner | 67ca925 | 2007-05-21 01:08:44 +0000 | [diff] [blame] | 1700 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1701 | |
Chris Lattner | 55258cf | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1702 | if (ResultVal.getBitWidth() != Width) |
| 1703 | ResultVal.trunc(Width); |
Steve Naroff | 09ef474 | 2007-03-09 23:16:33 +0000 | [diff] [blame] | 1704 | } |
Sebastian Redl | 20614a7 | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1705 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Steve Naroff | 09ef474 | 2007-03-09 23:16:33 +0000 | [diff] [blame] | 1706 | } |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1707 | |
Chris Lattner | 1c20a17 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1708 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1709 | if (Literal.isImaginary) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1710 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1711 | Context.getComplexType(Res->getType())); |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1712 | |
| 1713 | return Owned(Res); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1714 | } |
| 1715 | |
Sebastian Redl | ffbcf96 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1716 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1717 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | b781bcd | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1718 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1719 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1720 | return Owned(new (Context) ParenExpr(L, R, E)); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1721 | } |
| 1722 | |
Steve Naroff | 71b59a9 | 2007-06-04 22:22:31 +0000 | [diff] [blame] | 1723 | /// The UsualUnaryConversions() function is *not* called by this routine. |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 1724 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1725 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1726 | SourceLocation OpLoc, |
| 1727 | const SourceRange &ExprRange, |
| 1728 | bool isSizeof) { |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1729 | if (exprType->isDependentType()) |
| 1730 | return false; |
| 1731 | |
Sebastian Redl | 22e2e5c | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 1732 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 1733 | // the result is the size of the referenced type." |
| 1734 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 1735 | // result shall be the alignment of the referenced type." |
| 1736 | if (const ReferenceType *Ref = exprType->getAs<ReferenceType>()) |
| 1737 | exprType = Ref->getPointeeType(); |
| 1738 | |
Steve Naroff | 043d45d | 2007-05-15 02:32:35 +0000 | [diff] [blame] | 1739 | // C99 6.5.3.4p1: |
John McCall | 4c98fd8 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1740 | if (exprType->isFunctionType()) { |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1741 | // alignof(function) is allowed as an extension. |
Chris Lattner | b1355b1 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1742 | if (isSizeof) |
| 1743 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1744 | return false; |
| 1745 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1746 | |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1747 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | b1355b1 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1748 | if (exprType->isVoidType()) { |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1749 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1750 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | b1355b1 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1751 | return false; |
| 1752 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1753 | |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1754 | if (RequireCompleteType(OpLoc, exprType, |
Douglas Gregor | 906db8a | 2009-12-15 16:44:32 +0000 | [diff] [blame] | 1755 | PDiag(diag::err_sizeof_alignof_incomplete_type) |
| 1756 | << int(!isSizeof) << ExprRange)) |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1757 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1758 | |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1759 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | 1dcb322 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1760 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1761 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | cd2a8c5 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1762 | << exprType << isSizeof << ExprRange; |
| 1763 | return true; |
Chris Lattner | 37920f5 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1764 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1765 | |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1766 | return false; |
Steve Naroff | 043d45d | 2007-05-15 02:32:35 +0000 | [diff] [blame] | 1767 | } |
| 1768 | |
Chris Lattner | 8dff017 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1769 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1770 | const SourceRange &ExprRange) { |
| 1771 | E = E->IgnoreParens(); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1772 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1773 | // alignof decl is always ok. |
Chris Lattner | 8dff017 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1774 | if (isa<DeclRefExpr>(E)) |
| 1775 | return false; |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1776 | |
| 1777 | // Cannot know anything else if the expression is dependent. |
| 1778 | if (E->isTypeDependent()) |
| 1779 | return false; |
| 1780 | |
Douglas Gregor | 71235ec | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1781 | if (E->getBitField()) { |
| 1782 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1783 | return true; |
Chris Lattner | 8dff017 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1784 | } |
Douglas Gregor | 71235ec | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1785 | |
| 1786 | // Alignment of a field access is always okay, so long as it isn't a |
| 1787 | // bit-field. |
| 1788 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 212005c | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 1789 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 71235ec | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1790 | return false; |
| 1791 | |
Chris Lattner | 8dff017 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1792 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1793 | } |
| 1794 | |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1795 | /// \brief Build a sizeof or alignof expression given a type operand. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1796 | Action::OwningExprResult |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1797 | Sema::CreateSizeOfAlignOfExpr(TypeSourceInfo *TInfo, |
John McCall | 4c98fd8 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1798 | SourceLocation OpLoc, |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1799 | bool isSizeOf, SourceRange R) { |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1800 | if (!TInfo) |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1801 | return ExprError(); |
| 1802 | |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1803 | QualType T = TInfo->getType(); |
John McCall | 4c98fd8 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1804 | |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1805 | if (!T->isDependentType() && |
| 1806 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1807 | return ExprError(); |
| 1808 | |
| 1809 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1810 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, TInfo, |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1811 | Context.getSizeType(), OpLoc, |
| 1812 | R.getEnd())); |
| 1813 | } |
| 1814 | |
| 1815 | /// \brief Build a sizeof or alignof expression given an expression |
| 1816 | /// operand. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1817 | Action::OwningExprResult |
| 1818 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1819 | bool isSizeOf, SourceRange R) { |
| 1820 | // Verify that the operand is valid. |
| 1821 | bool isInvalid = false; |
| 1822 | if (E->isTypeDependent()) { |
| 1823 | // Delay type-checking for type-dependent expressions. |
| 1824 | } else if (!isSizeOf) { |
| 1825 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 71235ec | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1826 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1827 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1828 | isInvalid = true; |
| 1829 | } else { |
| 1830 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1831 | } |
| 1832 | |
| 1833 | if (isInvalid) |
| 1834 | return ExprError(); |
| 1835 | |
| 1836 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1837 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1838 | Context.getSizeType(), OpLoc, |
| 1839 | R.getEnd())); |
| 1840 | } |
| 1841 | |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1842 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1843 | /// the same for @c alignof and @c __alignof |
| 1844 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1845 | Action::OwningExprResult |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1846 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1847 | void *TyOrEx, const SourceRange &ArgRange) { |
Chris Lattner | 0d8b1a1 | 2006-11-20 04:34:45 +0000 | [diff] [blame] | 1848 | // If error parsing type, ignore. |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1849 | if (TyOrEx == 0) return ExprError(); |
Steve Naroff | 043d45d | 2007-05-15 02:32:35 +0000 | [diff] [blame] | 1850 | |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1851 | if (isType) { |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1852 | TypeSourceInfo *TInfo; |
| 1853 | (void) GetTypeFromParser(TyOrEx, &TInfo); |
| 1854 | return CreateSizeOfAlignOfExpr(TInfo, OpLoc, isSizeof, ArgRange); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1855 | } |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1856 | |
Douglas Gregor | 0950e41 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1857 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1858 | Action::OwningExprResult Result |
| 1859 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1860 | |
| 1861 | if (Result.isInvalid()) |
| 1862 | DeleteExpr(ArgEx); |
| 1863 | |
| 1864 | return move(Result); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1865 | } |
| 1866 | |
Chris Lattner | 709322b | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1867 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1868 | if (V->isTypeDependent()) |
| 1869 | return Context.DependentTy; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1870 | |
Chris Lattner | e267f5d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1871 | // These operators return the element type of a complex type. |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1872 | if (const ComplexType *CT = V->getType()->getAs<ComplexType>()) |
Chris Lattner | 30b5dd0 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1873 | return CT->getElementType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1874 | |
Chris Lattner | e267f5d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1875 | // Otherwise they pass through real integer and floating point types here. |
| 1876 | if (V->getType()->isArithmeticType()) |
| 1877 | return V->getType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1878 | |
Chris Lattner | e267f5d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1879 | // Reject anything else. |
Chris Lattner | 709322b | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1880 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1881 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | e267f5d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1882 | return QualType(); |
Chris Lattner | 30b5dd0 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1883 | } |
| 1884 | |
| 1885 | |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1886 | |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1887 | Action::OwningExprResult |
| 1888 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1889 | tok::TokenKind Kind, ExprArg Input) { |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1890 | UnaryOperator::Opcode Opc; |
| 1891 | switch (Kind) { |
| 1892 | default: assert(0 && "Unknown unary op!"); |
| 1893 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1894 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1895 | } |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1896 | |
Eli Friedman | cfdd40c | 2009-11-18 03:38:04 +0000 | [diff] [blame] | 1897 | return BuildUnaryOp(S, OpLoc, Opc, move(Input)); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 1898 | } |
| 1899 | |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1900 | Action::OwningExprResult |
| 1901 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1902 | ExprArg Idx, SourceLocation RLoc) { |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1903 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1904 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1905 | |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1906 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1907 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1908 | |
Douglas Gregor | 40412ac | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1909 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 7a77a6b | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1910 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1911 | Base.release(); |
| 1912 | Idx.release(); |
| 1913 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1914 | Context.DependentTy, RLoc)); |
| 1915 | } |
| 1916 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1917 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1918 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 254a1a2 | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1919 | LHSExp->getType()->isEnumeralType() || |
| 1920 | RHSExp->getType()->isRecordType() || |
| 1921 | RHSExp->getType()->isEnumeralType())) { |
Sebastian Redl | adba46e | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1922 | return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, move(Base),move(Idx)); |
Douglas Gregor | 40412ac | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1923 | } |
| 1924 | |
Sebastian Redl | adba46e | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1925 | return CreateBuiltinArraySubscriptExpr(move(Base), LLoc, move(Idx), RLoc); |
| 1926 | } |
| 1927 | |
| 1928 | |
| 1929 | Action::OwningExprResult |
| 1930 | Sema::CreateBuiltinArraySubscriptExpr(ExprArg Base, SourceLocation LLoc, |
| 1931 | ExprArg Idx, SourceLocation RLoc) { |
| 1932 | Expr *LHSExp = static_cast<Expr*>(Base.get()); |
| 1933 | Expr *RHSExp = static_cast<Expr*>(Idx.get()); |
| 1934 | |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1935 | // Perform default conversions. |
| 1936 | DefaultFunctionArrayConversion(LHSExp); |
| 1937 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1938 | |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1939 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Steve Naroff | f1e5369 | 2007-03-23 22:27:02 +0000 | [diff] [blame] | 1940 | |
Steve Naroff | c1aadb1 | 2007-03-28 21:49:40 +0000 | [diff] [blame] | 1941 | // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1942 | // to the expression *((e1)+(e2)). This means the array "Base" may actually be |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1943 | // in the subscript position. As a result, we need to derive the array base |
Steve Naroff | f1e5369 | 2007-03-23 22:27:02 +0000 | [diff] [blame] | 1944 | // and index from the expression types. |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1945 | Expr *BaseExpr, *IndexExpr; |
| 1946 | QualType ResultType; |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1947 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1948 | BaseExpr = LHSExp; |
| 1949 | IndexExpr = RHSExp; |
| 1950 | ResultType = Context.DependentTy; |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1951 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1952 | BaseExpr = LHSExp; |
| 1953 | IndexExpr = RHSExp; |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1954 | ResultType = PTy->getPointeeType(); |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1955 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
Chris Lattner | aee0cfd | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1956 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1957 | BaseExpr = RHSExp; |
| 1958 | IndexExpr = LHSExp; |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1959 | ResultType = PTy->getPointeeType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1960 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1961 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1962 | BaseExpr = LHSExp; |
| 1963 | IndexExpr = RHSExp; |
| 1964 | ResultType = PTy->getPointeeType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1965 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1966 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1967 | // Handle the uncommon case of "123[Ptr]". |
| 1968 | BaseExpr = RHSExp; |
| 1969 | IndexExpr = LHSExp; |
| 1970 | ResultType = PTy->getPointeeType(); |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1971 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | 4197796 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1972 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1973 | IndexExpr = RHSExp; |
Nate Begeman | c1bf061 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1974 | |
Chris Lattner | 36d572b | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1975 | // FIXME: need to deal with const... |
| 1976 | ResultType = VTy->getElementType(); |
Eli Friedman | ab2784f | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1977 | } else if (LHSTy->isArrayType()) { |
| 1978 | // If we see an array that wasn't promoted by |
| 1979 | // DefaultFunctionArrayConversion, it must be an array that |
| 1980 | // wasn't promoted because of the C90 rule that doesn't |
| 1981 | // allow promoting non-lvalue arrays. Warn, then |
| 1982 | // force the promotion here. |
| 1983 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1984 | LHSExp->getSourceRange(); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1985 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), |
| 1986 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | ab2784f | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1987 | LHSTy = LHSExp->getType(); |
| 1988 | |
| 1989 | BaseExpr = LHSExp; |
| 1990 | IndexExpr = RHSExp; |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1991 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | ab2784f | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1992 | } else if (RHSTy->isArrayType()) { |
| 1993 | // Same as previous, except for 123[f().a] case |
| 1994 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1995 | RHSExp->getSourceRange(); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1996 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), |
| 1997 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | ab2784f | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1998 | RHSTy = RHSExp->getType(); |
| 1999 | |
| 2000 | BaseExpr = RHSExp; |
| 2001 | IndexExpr = LHSExp; |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2002 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | b309644 | 2007-06-09 03:47:53 +0000 | [diff] [blame] | 2003 | } else { |
Chris Lattner | 003af24 | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 2004 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 2005 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2006 | } |
Steve Naroff | c1aadb1 | 2007-03-28 21:49:40 +0000 | [diff] [blame] | 2007 | // C99 6.5.2.1p1 |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2008 | if (!(IndexExpr->getType()->isIntegerType() && |
| 2009 | IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent()) |
Chris Lattner | 003af24 | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 2010 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 2011 | << IndexExpr->getSourceRange()); |
Steve Naroff | b29cdd5 | 2007-07-10 18:23:31 +0000 | [diff] [blame] | 2012 | |
Daniel Dunbar | 4782a6e | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 2013 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | b7608d7 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 2014 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 2015 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 914244e | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 2016 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 2017 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 2018 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2019 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 2020 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 2021 | // incomplete types are not object types. |
| 2022 | if (ResultType->isFunctionType()) { |
| 2023 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 2024 | << ResultType << BaseExpr->getSourceRange(); |
| 2025 | return ExprError(); |
| 2026 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2027 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 2028 | if (!ResultType->isDependentType() && |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2029 | RequireCompleteType(LLoc, ResultType, |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2030 | PDiag(diag::err_subscript_incomplete_type) |
| 2031 | << BaseExpr->getSourceRange())) |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 2032 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2033 | |
Chris Lattner | 62975a7 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 2034 | // Diagnose bad cases where we step over interface counts. |
| 2035 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 2036 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 2037 | << ResultType << BaseExpr->getSourceRange(); |
| 2038 | return ExprError(); |
| 2039 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2040 | |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2041 | Base.release(); |
| 2042 | Idx.release(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2043 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2044 | ResultType, RLoc)); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 2045 | } |
| 2046 | |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2047 | QualType Sema:: |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2048 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2049 | const IdentifierInfo *CompName, |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2050 | SourceLocation CompLoc) { |
Daniel Dunbar | c042940 | 2009-10-18 02:09:38 +0000 | [diff] [blame] | 2051 | // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements, |
| 2052 | // see FIXME there. |
| 2053 | // |
| 2054 | // FIXME: This logic can be greatly simplified by splitting it along |
| 2055 | // halving/not halving and reworking the component checking. |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2056 | const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); |
Nate Begeman | f322eab | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2057 | |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2058 | // The vector accessor can't exceed the number of elements. |
Daniel Dunbar | 2c422dc9 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 2059 | const char *compStr = CompName->getNameStart(); |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2060 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2061 | // This flag determines whether or not the component is one of the four |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2062 | // special names that indicate a subset of exactly half the elements are |
| 2063 | // to be selected. |
| 2064 | bool HalvingSwizzle = false; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2065 | |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2066 | // This flag determines whether or not CompName has an 's' char prefix, |
| 2067 | // indicating that it is a string of hex values to be used as vector indices. |
Nate Begeman | 0359e12 | 2009-06-25 21:06:09 +0000 | [diff] [blame] | 2068 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | f322eab | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2069 | |
| 2070 | // Check that we've found one of the special components, or that the component |
| 2071 | // names must come from the same set. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2072 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2073 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 2074 | HalvingSwizzle = true; |
Nate Begeman | f322eab | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2075 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 7e152db | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 2076 | do |
| 2077 | compStr++; |
| 2078 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2079 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 7e152db | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 2080 | do |
| 2081 | compStr++; |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2082 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 7e152db | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 2083 | } |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2084 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2085 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2086 | // We didn't get to the end of the string. This means the component names |
| 2087 | // didn't come from the same set *or* we encountered an illegal name. |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2088 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 2089 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2090 | return QualType(); |
| 2091 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2092 | |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2093 | // Ensure no component accessor exceeds the width of the vector type it |
| 2094 | // operates on. |
| 2095 | if (!HalvingSwizzle) { |
Daniel Dunbar | 2c422dc9 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 2096 | compStr = CompName->getNameStart(); |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2097 | |
| 2098 | if (HexSwizzle) |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2099 | compStr++; |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2100 | |
| 2101 | while (*compStr) { |
| 2102 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 2103 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 2104 | << baseType << SourceRange(CompLoc); |
| 2105 | return QualType(); |
| 2106 | } |
| 2107 | } |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2108 | } |
Nate Begeman | f322eab | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2109 | |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2110 | // The component accessor looks fine - now we need to compute the actual type. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2111 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2112 | // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc. |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2113 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | f322eab | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2114 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | ac8183a | 2009-12-15 18:13:04 +0000 | [diff] [blame] | 2115 | unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2 |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2116 | : CompName->getLength(); |
Nate Begeman | bb70bf6 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2117 | if (HexSwizzle) |
| 2118 | CompSize--; |
| 2119 | |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2120 | if (CompSize == 1) |
| 2121 | return vecType->getElementType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2122 | |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2123 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2124 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2125 | // diagostics look bad. We want extended vector types to appear built-in. |
| 2126 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 2127 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 2128 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | ddf5a1d | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2129 | } |
| 2130 | return VT; // should never get here (a typedef type should always be found). |
Steve Naroff | f8fd09e | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2131 | } |
| 2132 | |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2133 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2134 | IdentifierInfo *Member, |
Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2135 | const Selector &Sel, |
| 2136 | ASTContext &Context) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2137 | |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2138 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member)) |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2139 | return PD; |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2140 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2141 | return OMD; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2142 | |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2143 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 2144 | E = PDecl->protocol_end(); I != E; ++I) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2145 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2146 | Context)) |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2147 | return D; |
| 2148 | } |
| 2149 | return 0; |
| 2150 | } |
| 2151 | |
Steve Naroff | fb4330f | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2152 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2153 | IdentifierInfo *Member, |
Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2154 | const Selector &Sel, |
| 2155 | ASTContext &Context) { |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2156 | // Check protocols on qualified interfaces. |
| 2157 | Decl *GDecl = 0; |
Steve Naroff | fb4330f | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2158 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2159 | E = QIdTy->qual_end(); I != E; ++I) { |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2160 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2161 | GDecl = PD; |
| 2162 | break; |
| 2163 | } |
| 2164 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2165 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2166 | GDecl = OMD; |
| 2167 | break; |
| 2168 | } |
| 2169 | } |
| 2170 | if (!GDecl) { |
Steve Naroff | fb4330f | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2171 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2172 | E = QIdTy->qual_end(); I != E; ++I) { |
| 2173 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2174 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | d302bbd0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2175 | if (GDecl) |
| 2176 | return GDecl; |
| 2177 | } |
| 2178 | } |
| 2179 | return GDecl; |
| 2180 | } |
Chris Lattner | 4bf74fd | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 2181 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2182 | Sema::OwningExprResult |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2183 | Sema::ActOnDependentMemberExpr(ExprArg Base, QualType BaseType, |
| 2184 | bool IsArrow, SourceLocation OpLoc, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2185 | const CXXScopeSpec &SS, |
| 2186 | NamedDecl *FirstQualifierInScope, |
| 2187 | DeclarationName Name, SourceLocation NameLoc, |
| 2188 | const TemplateArgumentListInfo *TemplateArgs) { |
| 2189 | Expr *BaseExpr = Base.takeAs<Expr>(); |
| 2190 | |
| 2191 | // Even in dependent contexts, try to diagnose base expressions with |
| 2192 | // obviously wrong types, e.g.: |
| 2193 | // |
| 2194 | // T* t; |
| 2195 | // t.f; |
| 2196 | // |
| 2197 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2198 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2199 | // allows this, while still reporting an error if T is a struct pointer. |
| 2200 | if (!IsArrow) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2201 | const PointerType *PT = BaseType->getAs<PointerType>(); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2202 | if (PT && (!getLangOptions().ObjC1 || |
| 2203 | PT->getPointeeType()->isRecordType())) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2204 | assert(BaseExpr && "cannot happen with implicit member accesses"); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2205 | Diag(NameLoc, diag::err_typecheck_member_reference_struct_union) |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2206 | << BaseType << BaseExpr->getSourceRange(); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2207 | return ExprError(); |
| 2208 | } |
| 2209 | } |
| 2210 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2211 | assert(BaseType->isDependentType()); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2212 | |
| 2213 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2214 | // must have pointer type, and the accessed type is the pointee. |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2215 | return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2216 | IsArrow, OpLoc, |
| 2217 | static_cast<NestedNameSpecifier*>(SS.getScopeRep()), |
| 2218 | SS.getRange(), |
| 2219 | FirstQualifierInScope, |
| 2220 | Name, NameLoc, |
| 2221 | TemplateArgs)); |
| 2222 | } |
| 2223 | |
| 2224 | /// We know that the given qualified member reference points only to |
| 2225 | /// declarations which do not belong to the static type of the base |
| 2226 | /// expression. Diagnose the problem. |
| 2227 | static void DiagnoseQualifiedMemberReference(Sema &SemaRef, |
| 2228 | Expr *BaseExpr, |
| 2229 | QualType BaseType, |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2230 | const CXXScopeSpec &SS, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2231 | const LookupResult &R) { |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2232 | // If this is an implicit member access, use a different set of |
| 2233 | // diagnostics. |
| 2234 | if (!BaseExpr) |
| 2235 | return DiagnoseInstanceReference(SemaRef, SS, R); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2236 | |
| 2237 | // FIXME: this is an exceedingly lame diagnostic for some of the more |
| 2238 | // complicated cases here. |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2239 | DeclContext *DC = R.getRepresentativeDecl()->getDeclContext(); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2240 | SemaRef.Diag(R.getNameLoc(), diag::err_not_direct_base_or_virtual) |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2241 | << SS.getRange() << DC << BaseType; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2242 | } |
| 2243 | |
| 2244 | // Check whether the declarations we found through a nested-name |
| 2245 | // specifier in a member expression are actually members of the base |
| 2246 | // type. The restriction here is: |
| 2247 | // |
| 2248 | // C++ [expr.ref]p2: |
| 2249 | // ... In these cases, the id-expression shall name a |
| 2250 | // member of the class or of one of its base classes. |
| 2251 | // |
| 2252 | // So it's perfectly legitimate for the nested-name specifier to name |
| 2253 | // an unrelated class, and for us to find an overload set including |
| 2254 | // decls from classes which are not superclasses, as long as the decl |
| 2255 | // we actually pick through overload resolution is from a superclass. |
| 2256 | bool Sema::CheckQualifiedMemberReference(Expr *BaseExpr, |
| 2257 | QualType BaseType, |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2258 | const CXXScopeSpec &SS, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2259 | const LookupResult &R) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2260 | const RecordType *BaseRT = BaseType->getAs<RecordType>(); |
| 2261 | if (!BaseRT) { |
| 2262 | // We can't check this yet because the base type is still |
| 2263 | // dependent. |
| 2264 | assert(BaseType->isDependentType()); |
| 2265 | return false; |
| 2266 | } |
| 2267 | CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl()); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2268 | |
| 2269 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2270 | // If this is an implicit member reference and we find a |
| 2271 | // non-instance member, it's not an error. |
| 2272 | if (!BaseExpr && !IsInstanceMember((*I)->getUnderlyingDecl())) |
| 2273 | return false; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2274 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2275 | // Note that we use the DC of the decl, not the underlying decl. |
| 2276 | CXXRecordDecl *RecordD = cast<CXXRecordDecl>((*I)->getDeclContext()); |
| 2277 | while (RecordD->isAnonymousStructOrUnion()) |
| 2278 | RecordD = cast<CXXRecordDecl>(RecordD->getParent()); |
| 2279 | |
| 2280 | llvm::SmallPtrSet<CXXRecordDecl*,4> MemberRecord; |
| 2281 | MemberRecord.insert(RecordD->getCanonicalDecl()); |
| 2282 | |
| 2283 | if (!IsProvablyNotDerivedFrom(*this, BaseRecord, MemberRecord)) |
| 2284 | return false; |
| 2285 | } |
| 2286 | |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2287 | DiagnoseQualifiedMemberReference(*this, BaseExpr, BaseType, SS, R); |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2288 | return true; |
| 2289 | } |
| 2290 | |
| 2291 | static bool |
| 2292 | LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, |
| 2293 | SourceRange BaseRange, const RecordType *RTy, |
| 2294 | SourceLocation OpLoc, const CXXScopeSpec &SS) { |
| 2295 | RecordDecl *RDecl = RTy->getDecl(); |
| 2296 | if (SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0), |
| 2297 | PDiag(diag::err_typecheck_incomplete_tag) |
| 2298 | << BaseRange)) |
| 2299 | return true; |
| 2300 | |
| 2301 | DeclContext *DC = RDecl; |
| 2302 | if (SS.isSet()) { |
| 2303 | // If the member name was a qualified-id, look into the |
| 2304 | // nested-name-specifier. |
| 2305 | DC = SemaRef.computeDeclContext(SS, false); |
| 2306 | |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2307 | if (SemaRef.RequireCompleteDeclContext(SS)) { |
| 2308 | SemaRef.Diag(SS.getRange().getEnd(), diag::err_typecheck_incomplete_tag) |
| 2309 | << SS.getRange() << DC; |
| 2310 | return true; |
| 2311 | } |
| 2312 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2313 | assert(DC && "Cannot handle non-computable dependent contexts in lookup"); |
| 2314 | |
| 2315 | if (!isa<TypeDecl>(DC)) { |
| 2316 | SemaRef.Diag(R.getNameLoc(), diag::err_qualified_member_nonclass) |
| 2317 | << DC << SS.getRange(); |
| 2318 | return true; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2319 | } |
| 2320 | } |
| 2321 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2322 | // The record definition is complete, now look up the member. |
| 2323 | SemaRef.LookupQualifiedName(R, DC); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2324 | |
| 2325 | return false; |
| 2326 | } |
| 2327 | |
| 2328 | Sema::OwningExprResult |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2329 | Sema::BuildMemberReferenceExpr(ExprArg BaseArg, QualType BaseType, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2330 | SourceLocation OpLoc, bool IsArrow, |
| 2331 | const CXXScopeSpec &SS, |
| 2332 | NamedDecl *FirstQualifierInScope, |
| 2333 | DeclarationName Name, SourceLocation NameLoc, |
| 2334 | const TemplateArgumentListInfo *TemplateArgs) { |
| 2335 | Expr *Base = BaseArg.takeAs<Expr>(); |
| 2336 | |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2337 | if (BaseType->isDependentType() || |
| 2338 | (SS.isSet() && isDependentScopeSpecifier(SS))) |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2339 | return ActOnDependentMemberExpr(ExprArg(*this, Base), BaseType, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2340 | IsArrow, OpLoc, |
| 2341 | SS, FirstQualifierInScope, |
| 2342 | Name, NameLoc, |
| 2343 | TemplateArgs); |
| 2344 | |
| 2345 | LookupResult R(*this, Name, NameLoc, LookupMemberName); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2346 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2347 | // Implicit member accesses. |
| 2348 | if (!Base) { |
| 2349 | QualType RecordTy = BaseType; |
| 2350 | if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType(); |
| 2351 | if (LookupMemberExprInRecord(*this, R, SourceRange(), |
| 2352 | RecordTy->getAs<RecordType>(), |
| 2353 | OpLoc, SS)) |
| 2354 | return ExprError(); |
| 2355 | |
| 2356 | // Explicit member accesses. |
| 2357 | } else { |
| 2358 | OwningExprResult Result = |
| 2359 | LookupMemberExpr(R, Base, IsArrow, OpLoc, |
| 2360 | SS, FirstQualifierInScope, |
| 2361 | /*ObjCImpDecl*/ DeclPtrTy()); |
| 2362 | |
| 2363 | if (Result.isInvalid()) { |
| 2364 | Owned(Base); |
| 2365 | return ExprError(); |
| 2366 | } |
| 2367 | |
| 2368 | if (Result.get()) |
| 2369 | return move(Result); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2370 | } |
| 2371 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2372 | return BuildMemberReferenceExpr(ExprArg(*this, Base), BaseType, |
| 2373 | OpLoc, IsArrow, SS, R, TemplateArgs); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2374 | } |
| 2375 | |
| 2376 | Sema::OwningExprResult |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2377 | Sema::BuildMemberReferenceExpr(ExprArg Base, QualType BaseExprType, |
| 2378 | SourceLocation OpLoc, bool IsArrow, |
| 2379 | const CXXScopeSpec &SS, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2380 | LookupResult &R, |
| 2381 | const TemplateArgumentListInfo *TemplateArgs) { |
| 2382 | Expr *BaseExpr = Base.takeAs<Expr>(); |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2383 | QualType BaseType = BaseExprType; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2384 | if (IsArrow) { |
| 2385 | assert(BaseType->isPointerType()); |
| 2386 | BaseType = BaseType->getAs<PointerType>()->getPointeeType(); |
| 2387 | } |
| 2388 | |
| 2389 | NestedNameSpecifier *Qualifier = |
| 2390 | static_cast<NestedNameSpecifier*>(SS.getScopeRep()); |
| 2391 | DeclarationName MemberName = R.getLookupName(); |
| 2392 | SourceLocation MemberLoc = R.getNameLoc(); |
| 2393 | |
| 2394 | if (R.isAmbiguous()) |
Douglas Gregor | d806156 | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2395 | return ExprError(); |
| 2396 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2397 | if (R.empty()) { |
| 2398 | // Rederive where we looked up. |
| 2399 | DeclContext *DC = (SS.isSet() |
| 2400 | ? computeDeclContext(SS, false) |
| 2401 | : BaseType->getAs<RecordType>()->getDecl()); |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2402 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2403 | Diag(R.getNameLoc(), diag::err_no_member) |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2404 | << MemberName << DC |
| 2405 | << (BaseExpr ? BaseExpr->getSourceRange() : SourceRange()); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2406 | return ExprError(); |
| 2407 | } |
| 2408 | |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 2409 | // Diagnose qualified lookups that find only declarations from a |
| 2410 | // non-base type. Note that it's okay for lookup to find |
| 2411 | // declarations from a non-base type as long as those aren't the |
| 2412 | // ones picked by overload resolution. |
| 2413 | if (SS.isSet() && CheckQualifiedMemberReference(BaseExpr, BaseType, SS, R)) |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2414 | return ExprError(); |
| 2415 | |
| 2416 | // Construct an unresolved result if we in fact got an unresolved |
| 2417 | // result. |
| 2418 | if (R.isOverloadedResult() || R.isUnresolvableResult()) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2419 | bool Dependent = |
John McCall | 7173903 | 2009-12-19 02:05:44 +0000 | [diff] [blame] | 2420 | BaseExprType->isDependentType() || |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2421 | R.isUnresolvableResult() || |
| 2422 | UnresolvedLookupExpr::ComputeDependence(R.begin(), R.end(), TemplateArgs); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2423 | |
| 2424 | UnresolvedMemberExpr *MemExpr |
| 2425 | = UnresolvedMemberExpr::Create(Context, Dependent, |
| 2426 | R.isUnresolvableResult(), |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2427 | BaseExpr, BaseExprType, |
| 2428 | IsArrow, OpLoc, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2429 | Qualifier, SS.getRange(), |
| 2430 | MemberName, MemberLoc, |
| 2431 | TemplateArgs); |
| 2432 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 2433 | MemExpr->addDecl(*I); |
| 2434 | |
| 2435 | return Owned(MemExpr); |
| 2436 | } |
| 2437 | |
| 2438 | assert(R.isSingleResult()); |
| 2439 | NamedDecl *MemberDecl = R.getFoundDecl(); |
| 2440 | |
| 2441 | // FIXME: diagnose the presence of template arguments now. |
| 2442 | |
| 2443 | // If the decl being referenced had an error, return an error for this |
| 2444 | // sub-expr without emitting another error, in order to avoid cascading |
| 2445 | // error cases. |
| 2446 | if (MemberDecl->isInvalidDecl()) |
| 2447 | return ExprError(); |
| 2448 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2449 | // Handle the implicit-member-access case. |
| 2450 | if (!BaseExpr) { |
| 2451 | // If this is not an instance member, convert to a non-member access. |
| 2452 | if (!IsInstanceMember(MemberDecl)) |
| 2453 | return BuildDeclarationNameExpr(SS, R.getNameLoc(), MemberDecl); |
| 2454 | |
| 2455 | BaseExpr = new (Context) CXXThisExpr(SourceLocation(), BaseExprType); |
| 2456 | } |
| 2457 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2458 | bool ShouldCheckUse = true; |
| 2459 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) { |
| 2460 | // Don't diagnose the use of a virtual member function unless it's |
| 2461 | // explicitly qualified. |
| 2462 | if (MD->isVirtual() && !SS.isSet()) |
| 2463 | ShouldCheckUse = false; |
| 2464 | } |
| 2465 | |
| 2466 | // Check the use of this member. |
| 2467 | if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) { |
| 2468 | Owned(BaseExpr); |
| 2469 | return ExprError(); |
| 2470 | } |
| 2471 | |
| 2472 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
| 2473 | // We may have found a field within an anonymous union or struct |
| 2474 | // (C++ [class.union]). |
Eli Friedman | 78cde14 | 2009-12-04 07:18:51 +0000 | [diff] [blame] | 2475 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion() && |
| 2476 | !BaseType->getAs<RecordType>()->getDecl()->isAnonymousStructOrUnion()) |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2477 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
| 2478 | BaseExpr, OpLoc); |
| 2479 | |
| 2480 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 2481 | QualType MemberType = FD->getType(); |
| 2482 | if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) |
| 2483 | MemberType = Ref->getPointeeType(); |
| 2484 | else { |
| 2485 | Qualifiers BaseQuals = BaseType.getQualifiers(); |
| 2486 | BaseQuals.removeObjCGCAttr(); |
| 2487 | if (FD->isMutable()) BaseQuals.removeConst(); |
| 2488 | |
| 2489 | Qualifiers MemberQuals |
| 2490 | = Context.getCanonicalType(MemberType).getQualifiers(); |
| 2491 | |
| 2492 | Qualifiers Combined = BaseQuals + MemberQuals; |
| 2493 | if (Combined != MemberQuals) |
| 2494 | MemberType = Context.getQualifiedType(MemberType, Combined); |
| 2495 | } |
| 2496 | |
| 2497 | MarkDeclarationReferenced(MemberLoc, FD); |
| 2498 | if (PerformObjectMemberConversion(BaseExpr, FD)) |
| 2499 | return ExprError(); |
| 2500 | return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS, |
| 2501 | FD, MemberLoc, MemberType)); |
| 2502 | } |
| 2503 | |
| 2504 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2505 | MarkDeclarationReferenced(MemberLoc, Var); |
| 2506 | return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS, |
| 2507 | Var, MemberLoc, |
| 2508 | Var->getType().getNonReferenceType())); |
| 2509 | } |
| 2510 | |
| 2511 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2512 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
| 2513 | return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS, |
| 2514 | MemberFn, MemberLoc, |
| 2515 | MemberFn->getType())); |
| 2516 | } |
| 2517 | |
| 2518 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2519 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
| 2520 | return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS, |
| 2521 | Enum, MemberLoc, Enum->getType())); |
| 2522 | } |
| 2523 | |
| 2524 | Owned(BaseExpr); |
| 2525 | |
| 2526 | if (isa<TypeDecl>(MemberDecl)) |
| 2527 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 2528 | << MemberName << int(IsArrow)); |
| 2529 | |
| 2530 | // We found a declaration kind that we didn't expect. This is a |
| 2531 | // generic error message that tells the user that she can't refer |
| 2532 | // to this member with '.' or '->'. |
| 2533 | return ExprError(Diag(MemberLoc, |
| 2534 | diag::err_typecheck_member_reference_unknown) |
| 2535 | << MemberName << int(IsArrow)); |
| 2536 | } |
| 2537 | |
| 2538 | /// Look up the given member of the given non-type-dependent |
| 2539 | /// expression. This can return in one of two ways: |
| 2540 | /// * If it returns a sentinel null-but-valid result, the caller will |
| 2541 | /// assume that lookup was performed and the results written into |
| 2542 | /// the provided structure. It will take over from there. |
| 2543 | /// * Otherwise, the returned expression will be produced in place of |
| 2544 | /// an ordinary member expression. |
| 2545 | /// |
| 2546 | /// The ObjCImpDecl bit is a gross hack that will need to be properly |
| 2547 | /// fixed for ObjC++. |
| 2548 | Sema::OwningExprResult |
| 2549 | Sema::LookupMemberExpr(LookupResult &R, Expr *&BaseExpr, |
John McCall | a928c65 | 2009-12-07 22:46:59 +0000 | [diff] [blame] | 2550 | bool &IsArrow, SourceLocation OpLoc, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2551 | const CXXScopeSpec &SS, |
| 2552 | NamedDecl *FirstQualifierInScope, |
| 2553 | DeclPtrTy ObjCImpDecl) { |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2554 | assert(BaseExpr && "no base expression"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2555 | |
Steve Naroff | eaaae46 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 2556 | // Perform default conversions. |
| 2557 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2558 | |
Steve Naroff | 185616f | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2559 | QualType BaseType = BaseExpr->getType(); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2560 | assert(!BaseType->isDependentType()); |
| 2561 | |
| 2562 | DeclarationName MemberName = R.getLookupName(); |
| 2563 | SourceLocation MemberLoc = R.getNameLoc(); |
Douglas Gregor | d82ae38 | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 2564 | |
| 2565 | // If the user is trying to apply -> or . to a function pointer |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2566 | // type, it's probably because they forgot parentheses to call that |
Douglas Gregor | d82ae38 | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 2567 | // function. Suggest the addition of those parentheses, build the |
| 2568 | // call, and continue on. |
| 2569 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { |
| 2570 | if (const FunctionProtoType *Fun |
| 2571 | = Ptr->getPointeeType()->getAs<FunctionProtoType>()) { |
| 2572 | QualType ResultTy = Fun->getResultType(); |
| 2573 | if (Fun->getNumArgs() == 0 && |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2574 | ((!IsArrow && ResultTy->isRecordType()) || |
| 2575 | (IsArrow && ResultTy->isPointerType() && |
Douglas Gregor | d82ae38 | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 2576 | ResultTy->getAs<PointerType>()->getPointeeType() |
| 2577 | ->isRecordType()))) { |
| 2578 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2579 | Diag(Loc, diag::err_member_reference_needs_call) |
| 2580 | << QualType(Fun, 0) |
| 2581 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2582 | |
| 2583 | OwningExprResult NewBase |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2584 | = ActOnCallExpr(0, ExprArg(*this, BaseExpr), Loc, |
Douglas Gregor | d82ae38 | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 2585 | MultiExprArg(*this, 0, 0), 0, Loc); |
| 2586 | if (NewBase.isInvalid()) |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2587 | return ExprError(); |
Douglas Gregor | d82ae38 | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 2588 | |
| 2589 | BaseExpr = NewBase.takeAs<Expr>(); |
| 2590 | DefaultFunctionArrayConversion(BaseExpr); |
| 2591 | BaseType = BaseExpr->getType(); |
| 2592 | } |
| 2593 | } |
| 2594 | } |
| 2595 | |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 2596 | // If this is an Objective-C pseudo-builtin and a definition is provided then |
| 2597 | // use that. |
| 2598 | if (BaseType->isObjCIdType()) { |
Fariborz Jahanian | c2949f9 | 2009-12-07 20:09:25 +0000 | [diff] [blame] | 2599 | if (IsArrow) { |
| 2600 | // Handle the following exceptional case PObj->isa. |
| 2601 | if (const ObjCObjectPointerType *OPT = |
| 2602 | BaseType->getAs<ObjCObjectPointerType>()) { |
| 2603 | if (OPT->getPointeeType()->isSpecificBuiltinType(BuiltinType::ObjCId) && |
| 2604 | MemberName.getAsIdentifierInfo()->isStr("isa")) |
Fariborz Jahanian | a5fee26 | 2009-12-09 19:05:56 +0000 | [diff] [blame] | 2605 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, true, MemberLoc, |
| 2606 | Context.getObjCClassType())); |
Fariborz Jahanian | c2949f9 | 2009-12-07 20:09:25 +0000 | [diff] [blame] | 2607 | } |
| 2608 | } |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 2609 | // We have an 'id' type. Rather than fall through, we check if this |
| 2610 | // is a reference to 'isa'. |
| 2611 | if (BaseType != Context.ObjCIdRedefinitionType) { |
| 2612 | BaseType = Context.ObjCIdRedefinitionType; |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2613 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 2614 | } |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 2615 | } |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2616 | |
Fariborz Jahanian | 04b258c | 2009-11-25 23:07:42 +0000 | [diff] [blame] | 2617 | // If this is an Objective-C pseudo-builtin and a definition is provided then |
| 2618 | // use that. |
| 2619 | if (Context.isObjCSelType(BaseType)) { |
| 2620 | // We have an 'SEL' type. Rather than fall through, we check if this |
| 2621 | // is a reference to 'sel_id'. |
| 2622 | if (BaseType != Context.ObjCSelRedefinitionType) { |
| 2623 | BaseType = Context.ObjCSelRedefinitionType; |
| 2624 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
| 2625 | } |
| 2626 | } |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2627 | |
Steve Naroff | 185616f | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2628 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2629 | |
Fariborz Jahanian | e983d17 | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2630 | // Handle properties on ObjC 'Class' types. |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2631 | if (!IsArrow && BaseType->isObjCClassType()) { |
Fariborz Jahanian | e983d17 | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2632 | // Also must look for a getter name which uses property syntax. |
| 2633 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2634 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 2635 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
| 2636 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2637 | ObjCMethodDecl *Getter; |
| 2638 | // FIXME: need to also look locally in the implementation. |
| 2639 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
| 2640 | // Check the use of this method. |
| 2641 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2642 | return ExprError(); |
| 2643 | } |
| 2644 | // If we found a getter then this may be a valid dot-reference, we |
| 2645 | // will look for the matching setter, in case it is needed. |
| 2646 | Selector SetterSel = |
| 2647 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2648 | PP.getSelectorTable(), Member); |
| 2649 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 2650 | if (!Setter) { |
| 2651 | // If this reference is in an @implementation, also check for 'private' |
| 2652 | // methods. |
Steve Naroff | bb69c94 | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2653 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Fariborz Jahanian | e983d17 | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2654 | } |
| 2655 | // Look through local category implementations associated with the class. |
| 2656 | if (!Setter) |
| 2657 | Setter = IFace->getCategoryClassMethod(SetterSel); |
| 2658 | |
| 2659 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2660 | return ExprError(); |
| 2661 | |
| 2662 | if (Getter || Setter) { |
| 2663 | QualType PType; |
| 2664 | |
| 2665 | if (Getter) |
| 2666 | PType = Getter->getResultType(); |
| 2667 | else |
| 2668 | // Get the expression type from Setter's incoming parameter. |
| 2669 | PType = (*(Setter->param_end() -1))->getType(); |
| 2670 | // FIXME: we must check that the setter has property type. |
| 2671 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, |
| 2672 | PType, |
| 2673 | Setter, MemberLoc, BaseExpr)); |
| 2674 | } |
| 2675 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2676 | << MemberName << BaseType); |
| 2677 | } |
| 2678 | } |
| 2679 | |
| 2680 | if (BaseType->isObjCClassType() && |
| 2681 | BaseType != Context.ObjCClassRedefinitionType) { |
| 2682 | BaseType = Context.ObjCClassRedefinitionType; |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2683 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
Fariborz Jahanian | e983d17 | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2684 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2685 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2686 | if (IsArrow) { |
| 2687 | if (const PointerType *PT = BaseType->getAs<PointerType>()) |
Steve Naroff | 185616f | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2688 | BaseType = PT->getPointeeType(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2689 | else if (BaseType->isObjCObjectPointerType()) |
| 2690 | ; |
John McCall | a928c65 | 2009-12-07 22:46:59 +0000 | [diff] [blame] | 2691 | else if (BaseType->isRecordType()) { |
| 2692 | // Recover from arrow accesses to records, e.g.: |
| 2693 | // struct MyRecord foo; |
| 2694 | // foo->bar |
| 2695 | // This is actually well-formed in C++ if MyRecord has an |
| 2696 | // overloaded operator->, but that should have been dealt with |
| 2697 | // by now. |
| 2698 | Diag(OpLoc, diag::err_typecheck_member_reference_suggestion) |
| 2699 | << BaseType << int(IsArrow) << BaseExpr->getSourceRange() |
| 2700 | << CodeModificationHint::CreateReplacement(OpLoc, "."); |
| 2701 | IsArrow = false; |
| 2702 | } else { |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2703 | Diag(MemberLoc, diag::err_typecheck_member_reference_arrow) |
| 2704 | << BaseType << BaseExpr->getSourceRange(); |
| 2705 | return ExprError(); |
Anders Carlsson | 524d5a4 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2706 | } |
John McCall | a928c65 | 2009-12-07 22:46:59 +0000 | [diff] [blame] | 2707 | } else { |
| 2708 | // Recover from dot accesses to pointers, e.g.: |
| 2709 | // type *foo; |
| 2710 | // foo.bar |
| 2711 | // This is actually well-formed in two cases: |
| 2712 | // - 'type' is an Objective C type |
| 2713 | // - 'bar' is a pseudo-destructor name which happens to refer to |
| 2714 | // the appropriate pointer type |
| 2715 | if (MemberName.getNameKind() != DeclarationName::CXXDestructorName) { |
| 2716 | const PointerType *PT = BaseType->getAs<PointerType>(); |
| 2717 | if (PT && PT->getPointeeType()->isRecordType()) { |
| 2718 | Diag(OpLoc, diag::err_typecheck_member_reference_suggestion) |
| 2719 | << BaseType << int(IsArrow) << BaseExpr->getSourceRange() |
| 2720 | << CodeModificationHint::CreateReplacement(OpLoc, "->"); |
| 2721 | BaseType = PT->getPointeeType(); |
| 2722 | IsArrow = true; |
| 2723 | } |
| 2724 | } |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2725 | } |
John McCall | a928c65 | 2009-12-07 22:46:59 +0000 | [diff] [blame] | 2726 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2727 | // Handle field access to simple records. This also handles access |
| 2728 | // to fields of the ObjC 'id' struct. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2729 | if (const RecordType *RTy = BaseType->getAs<RecordType>()) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 2730 | if (LookupMemberExprInRecord(*this, R, BaseExpr->getSourceRange(), |
| 2731 | RTy, OpLoc, SS)) |
Douglas Gregor | dd430f7 | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2732 | return ExprError(); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2733 | return Owned((Expr*) 0); |
Chris Lattner | b63a745 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2734 | } |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2735 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2736 | // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring |
| 2737 | // into a record type was handled above, any destructor we see here is a |
| 2738 | // pseudo-destructor. |
| 2739 | if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) { |
| 2740 | // C++ [expr.pseudo]p2: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2741 | // The left hand side of the dot operator shall be of scalar type. The |
| 2742 | // left hand side of the arrow operator shall be of pointer to scalar |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2743 | // type. |
| 2744 | if (!BaseType->isScalarType()) |
| 2745 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) |
| 2746 | << BaseType << BaseExpr->getSourceRange()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2747 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2748 | // [...] The type designated by the pseudo-destructor-name shall be the |
| 2749 | // same as the object type. |
| 2750 | if (!MemberName.getCXXNameType()->isDependentType() && |
| 2751 | !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType())) |
| 2752 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch) |
| 2753 | << BaseType << MemberName.getCXXNameType() |
| 2754 | << BaseExpr->getSourceRange() << SourceRange(MemberLoc)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2755 | |
| 2756 | // [...] Furthermore, the two type-names in a pseudo-destructor-name of |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2757 | // the form |
| 2758 | // |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2759 | // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name |
| 2760 | // |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2761 | // shall designate the same scalar type. |
| 2762 | // |
| 2763 | // FIXME: DPG can't see any way to trigger this particular clause, so it |
| 2764 | // isn't checked here. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2765 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2766 | // FIXME: We've lost the precise spelling of the type by going through |
| 2767 | // DeclarationName. Can we do better? |
| 2768 | return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2769 | IsArrow, OpLoc, |
| 2770 | (NestedNameSpecifier *) SS.getScopeRep(), |
| 2771 | SS.getRange(), |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2772 | MemberName.getCXXNameType(), |
| 2773 | MemberLoc)); |
| 2774 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2775 | |
Chris Lattner | dc420f4 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2776 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2777 | // (*Obj).ivar. |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2778 | if ((IsArrow && BaseType->isObjCObjectPointerType()) || |
| 2779 | (!IsArrow && BaseType->isObjCInterfaceType())) { |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2780 | const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2781 | const ObjCInterfaceType *IFaceT = |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2782 | OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>(); |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2783 | if (IFaceT) { |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2784 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2785 | |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2786 | ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); |
| 2787 | ObjCInterfaceDecl *ClassDeclared; |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2788 | ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2789 | |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2790 | if (IV) { |
| 2791 | // If the decl being referenced had an error, return an error for this |
| 2792 | // sub-expr without emitting another error, in order to avoid cascading |
| 2793 | // error cases. |
| 2794 | if (IV->isInvalidDecl()) |
| 2795 | return ExprError(); |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2796 | |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2797 | // Check whether we can reference this field. |
| 2798 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2799 | return ExprError(); |
| 2800 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2801 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
| 2802 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2803 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2804 | ClassOfMethodDecl = MD->getClassInterface(); |
| 2805 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2806 | // Case of a c-function declared inside an objc implementation. |
| 2807 | // FIXME: For a c-style function nested inside an objc implementation |
| 2808 | // class, there is no implementation context available, so we pass |
| 2809 | // down the context as argument to this routine. Ideally, this context |
| 2810 | // need be passed down in the AST node and somehow calculated from the |
| 2811 | // AST for a function decl. |
| 2812 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2813 | if (ObjCImplementationDecl *IMPD = |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2814 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2815 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2816 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2817 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2818 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
| 2819 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2820 | |
| 2821 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
| 2822 | if (ClassDeclared != IDecl || |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2823 | ClassOfMethodDecl != ClassDeclared) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2824 | Diag(MemberLoc, diag::error_private_ivar_access) |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2825 | << IV->getDeclName(); |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2826 | } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) |
| 2827 | // @protected |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2828 | Diag(MemberLoc, diag::error_protected_ivar_access) |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2829 | << IV->getDeclName(); |
Steve Naroff | d1b64be | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2830 | } |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2831 | |
| 2832 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2833 | MemberLoc, BaseExpr, |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2834 | IsArrow)); |
Fariborz Jahanian | a458c4f | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2835 | } |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2836 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2837 | << IDecl->getDeclName() << MemberName |
Steve Naroff | a057ba9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2838 | << BaseExpr->getSourceRange()); |
Fariborz Jahanian | b1378f9 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2839 | } |
Chris Lattner | b63a745 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2840 | } |
Steve Naroff | 1329fa0 | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2841 | // Handle properties on 'id' and qualified "id". |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2842 | if (!IsArrow && (BaseType->isObjCIdType() || |
| 2843 | BaseType->isObjCQualifiedIdType())) { |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2844 | const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>(); |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2845 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2846 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2847 | // Check protocols on qualified interfaces. |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2848 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2849 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
| 2850 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
| 2851 | // Check the use of this declaration |
| 2852 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2853 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2854 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2855 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2856 | MemberLoc, BaseExpr)); |
| 2857 | } |
| 2858 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
| 2859 | // Check the use of this method. |
| 2860 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2861 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2862 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2863 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2864 | OMD->getResultType(), |
| 2865 | OMD, OpLoc, MemberLoc, |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2866 | NULL, 0)); |
| 2867 | } |
| 2868 | } |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2869 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2870 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2871 | << MemberName << BaseType); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2872 | } |
Chris Lattner | dc420f4 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2873 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2874 | // pointer to a (potentially qualified) interface type. |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2875 | const ObjCObjectPointerType *OPT; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2876 | if (!IsArrow && (OPT = BaseType->getAsObjCInterfacePointerType())) { |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2877 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 2878 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2879 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2880 | |
Daniel Dunbar | ef89086c | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2881 | // Search for a declared property first. |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2882 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2883 | // Check whether we can reference this property. |
| 2884 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2885 | return ExprError(); |
Fariborz Jahanian | b2ab73d | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2886 | QualType ResTy = PD->getType(); |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2887 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2888 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | fe9e394 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2889 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2890 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | b2ab73d | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2891 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 43df556 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2892 | MemberLoc, BaseExpr)); |
| 2893 | } |
Daniel Dunbar | ef89086c | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2894 | // Check protocols on qualified interfaces. |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 2895 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2896 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2897 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2898 | // Check whether we can reference this property. |
| 2899 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2900 | return ExprError(); |
Chris Lattner | 43df556 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2901 | |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2902 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 43df556 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2903 | MemberLoc, BaseExpr)); |
| 2904 | } |
Daniel Dunbar | ef89086c | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2905 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2906 | // selector is implemented. |
| 2907 | |
| 2908 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2909 | // shared with the code in ActOnInstanceMessage. |
| 2910 | |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2911 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2912 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2913 | |
Daniel Dunbar | ef89086c | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2914 | // If this reference is in an @implementation, check for 'private' methods. |
| 2915 | if (!Getter) |
Steve Naroff | bb69c94 | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2916 | Getter = IFace->lookupPrivateInstanceMethod(Sel); |
Daniel Dunbar | ef89086c | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2917 | |
Steve Naroff | 1df6269 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2918 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2919 | if (!Getter) |
| 2920 | Getter = IFace->getCategoryInstanceMethod(Sel); |
Daniel Dunbar | ef89086c | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2921 | if (Getter) { |
Douglas Gregor | 171c45a | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2922 | // Check if we can reference this property. |
| 2923 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2924 | return ExprError(); |
Steve Naroff | 1d984fe | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2925 | } |
| 2926 | // If we found a getter then this may be a valid dot-reference, we |
| 2927 | // will look for the matching setter, in case it is needed. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2928 | Selector SetterSel = |
| 2929 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2930 | PP.getSelectorTable(), Member); |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2931 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1d984fe | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2932 | if (!Setter) { |
| 2933 | // If this reference is in an @implementation, also check for 'private' |
| 2934 | // methods. |
Steve Naroff | bb69c94 | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2935 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Steve Naroff | 1d984fe | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2936 | } |
| 2937 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2938 | if (!Setter) |
| 2939 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2940 | |
Steve Naroff | 1d984fe | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2941 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2942 | return ExprError(); |
| 2943 | |
| 2944 | if (Getter || Setter) { |
| 2945 | QualType PType; |
| 2946 | |
| 2947 | if (Getter) |
| 2948 | PType = Getter->getResultType(); |
Fariborz Jahanian | 88cc234 | 2009-08-18 20:50:23 +0000 | [diff] [blame] | 2949 | else |
| 2950 | // Get the expression type from Setter's incoming parameter. |
| 2951 | PType = (*(Setter->param_end() -1))->getType(); |
Steve Naroff | 1d984fe | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2952 | // FIXME: we must check that the setter has property type. |
Fariborz Jahanian | 9a84665 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 2953 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType, |
Steve Naroff | 1d984fe | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2954 | Setter, MemberLoc, BaseExpr)); |
| 2955 | } |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2956 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2957 | << MemberName << BaseType); |
Fariborz Jahanian | 21f54ee | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2958 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2959 | |
Steve Naroff | e87026a | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2960 | // Handle the following exceptional case (*Obj).isa. |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2961 | if (!IsArrow && |
Steve Naroff | e87026a | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2962 | BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2963 | MemberName.getAsIdentifierInfo()->isStr("isa")) |
Steve Naroff | e87026a | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2964 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, |
Fariborz Jahanian | a5fee26 | 2009-12-09 19:05:56 +0000 | [diff] [blame] | 2965 | Context.getObjCClassType())); |
Steve Naroff | e87026a | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2966 | |
Chris Lattner | b63a745 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2967 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 6c7ce10 | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2968 | if (BaseType->isExtVectorType()) { |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2969 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Chris Lattner | b63a745 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2970 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2971 | if (ret.isNull()) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2972 | return ExprError(); |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2973 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member, |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2974 | MemberLoc)); |
Chris Lattner | b63a745 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2975 | } |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2976 | |
Douglas Gregor | 0b08ba4 | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2977 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2978 | << BaseType << BaseExpr->getSourceRange(); |
| 2979 | |
Douglas Gregor | 0b08ba4 | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2980 | return ExprError(); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 2981 | } |
| 2982 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2983 | static Sema::OwningExprResult DiagnoseDtorReference(Sema &SemaRef, |
| 2984 | SourceLocation NameLoc, |
| 2985 | Sema::ExprArg MemExpr) { |
| 2986 | Expr *E = (Expr *) MemExpr.get(); |
| 2987 | SourceLocation ExpectedLParenLoc = SemaRef.PP.getLocForEndOfToken(NameLoc); |
| 2988 | SemaRef.Diag(E->getLocStart(), diag::err_dtor_expr_without_call) |
Douglas Gregor | 30d60cb | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2989 | << isa<CXXPseudoDestructorExpr>(E) |
| 2990 | << CodeModificationHint::CreateInsertion(ExpectedLParenLoc, "()"); |
| 2991 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 2992 | return SemaRef.ActOnCallExpr(/*Scope*/ 0, |
| 2993 | move(MemExpr), |
| 2994 | /*LPLoc*/ ExpectedLParenLoc, |
| 2995 | Sema::MultiExprArg(SemaRef, 0, 0), |
| 2996 | /*CommaLocs*/ 0, |
| 2997 | /*RPLoc*/ ExpectedLParenLoc); |
| 2998 | } |
| 2999 | |
| 3000 | /// The main callback when the parser finds something like |
| 3001 | /// expression . [nested-name-specifier] identifier |
| 3002 | /// expression -> [nested-name-specifier] identifier |
| 3003 | /// where 'identifier' encompasses a fairly broad spectrum of |
| 3004 | /// possibilities, including destructor and operator references. |
| 3005 | /// |
| 3006 | /// \param OpKind either tok::arrow or tok::period |
| 3007 | /// \param HasTrailingLParen whether the next token is '(', which |
| 3008 | /// is used to diagnose mis-uses of special members that can |
| 3009 | /// only be called |
| 3010 | /// \param ObjCImpDecl the current ObjC @implementation decl; |
| 3011 | /// this is an ugly hack around the fact that ObjC @implementations |
| 3012 | /// aren't properly put in the context chain |
| 3013 | Sema::OwningExprResult Sema::ActOnMemberAccessExpr(Scope *S, ExprArg BaseArg, |
| 3014 | SourceLocation OpLoc, |
| 3015 | tok::TokenKind OpKind, |
| 3016 | const CXXScopeSpec &SS, |
| 3017 | UnqualifiedId &Id, |
| 3018 | DeclPtrTy ObjCImpDecl, |
| 3019 | bool HasTrailingLParen) { |
| 3020 | if (SS.isSet() && SS.isInvalid()) |
| 3021 | return ExprError(); |
| 3022 | |
| 3023 | TemplateArgumentListInfo TemplateArgsBuffer; |
| 3024 | |
| 3025 | // Decompose the name into its component parts. |
| 3026 | DeclarationName Name; |
| 3027 | SourceLocation NameLoc; |
| 3028 | const TemplateArgumentListInfo *TemplateArgs; |
| 3029 | DecomposeUnqualifiedId(*this, Id, TemplateArgsBuffer, |
| 3030 | Name, NameLoc, TemplateArgs); |
| 3031 | |
| 3032 | bool IsArrow = (OpKind == tok::arrow); |
| 3033 | |
| 3034 | NamedDecl *FirstQualifierInScope |
| 3035 | = (!SS.isSet() ? 0 : FindFirstQualifierInScope(S, |
| 3036 | static_cast<NestedNameSpecifier*>(SS.getScopeRep()))); |
| 3037 | |
| 3038 | // This is a postfix expression, so get rid of ParenListExprs. |
| 3039 | BaseArg = MaybeConvertParenListExprToParenExpr(S, move(BaseArg)); |
| 3040 | |
| 3041 | Expr *Base = BaseArg.takeAs<Expr>(); |
| 3042 | OwningExprResult Result(*this); |
| 3043 | if (Base->getType()->isDependentType()) { |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3044 | Result = ActOnDependentMemberExpr(ExprArg(*this, Base), Base->getType(), |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3045 | IsArrow, OpLoc, |
| 3046 | SS, FirstQualifierInScope, |
| 3047 | Name, NameLoc, |
| 3048 | TemplateArgs); |
| 3049 | } else { |
| 3050 | LookupResult R(*this, Name, NameLoc, LookupMemberName); |
| 3051 | if (TemplateArgs) { |
| 3052 | // Re-use the lookup done for the template name. |
| 3053 | DecomposeTemplateName(R, Id); |
| 3054 | } else { |
| 3055 | Result = LookupMemberExpr(R, Base, IsArrow, OpLoc, |
| 3056 | SS, FirstQualifierInScope, |
| 3057 | ObjCImpDecl); |
| 3058 | |
| 3059 | if (Result.isInvalid()) { |
| 3060 | Owned(Base); |
| 3061 | return ExprError(); |
| 3062 | } |
| 3063 | |
| 3064 | if (Result.get()) { |
| 3065 | // The only way a reference to a destructor can be used is to |
| 3066 | // immediately call it, which falls into this case. If the |
| 3067 | // next token is not a '(', produce a diagnostic and build the |
| 3068 | // call now. |
| 3069 | if (!HasTrailingLParen && |
| 3070 | Id.getKind() == UnqualifiedId::IK_DestructorName) |
| 3071 | return DiagnoseDtorReference(*this, NameLoc, move(Result)); |
| 3072 | |
| 3073 | return move(Result); |
| 3074 | } |
| 3075 | } |
| 3076 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3077 | Result = BuildMemberReferenceExpr(ExprArg(*this, Base), Base->getType(), |
| 3078 | OpLoc, IsArrow, SS, R, TemplateArgs); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3079 | } |
| 3080 | |
| 3081 | return move(Result); |
Anders Carlsson | f571c11 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 3082 | } |
| 3083 | |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3084 | Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
| 3085 | FunctionDecl *FD, |
| 3086 | ParmVarDecl *Param) { |
| 3087 | if (Param->hasUnparsedDefaultArg()) { |
| 3088 | Diag (CallLoc, |
| 3089 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 3090 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3091 | Diag(UnparsedDefaultArgLocs[Param], |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3092 | diag::note_default_argument_declared_here); |
| 3093 | } else { |
| 3094 | if (Param->hasUninstantiatedDefaultArg()) { |
| 3095 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
| 3096 | |
| 3097 | // Instantiate the expression. |
Douglas Gregor | 01afeef | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3098 | MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD); |
Anders Carlsson | 657bad4 | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 3099 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3100 | InstantiatingTemplate Inst(*this, CallLoc, Param, |
| 3101 | ArgList.getInnermost().getFlatArgumentList(), |
Douglas Gregor | 01afeef | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 3102 | ArgList.getInnermost().flat_size()); |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3103 | |
John McCall | 76d824f | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 3104 | OwningExprResult Result = SubstExpr(UninstExpr, ArgList); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3105 | if (Result.isInvalid()) |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3106 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3107 | |
Douglas Gregor | 25ab25f | 2009-12-23 18:19:08 +0000 | [diff] [blame] | 3108 | // Check the expression as an initializer for the parameter. |
| 3109 | InitializedEntity Entity |
| 3110 | = InitializedEntity::InitializeParameter(Param); |
| 3111 | InitializationKind Kind |
| 3112 | = InitializationKind::CreateCopy(Param->getLocation(), |
| 3113 | /*FIXME:EqualLoc*/UninstExpr->getSourceRange().getBegin()); |
| 3114 | Expr *ResultE = Result.takeAs<Expr>(); |
| 3115 | |
| 3116 | InitializationSequence InitSeq(*this, Entity, Kind, &ResultE, 1); |
| 3117 | Result = InitSeq.Perform(*this, Entity, Kind, |
| 3118 | MultiExprArg(*this, (void**)&ResultE, 1)); |
| 3119 | if (Result.isInvalid()) |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3120 | return ExprError(); |
Douglas Gregor | 25ab25f | 2009-12-23 18:19:08 +0000 | [diff] [blame] | 3121 | |
| 3122 | // Build the default argument expression. |
Douglas Gregor | 033f675 | 2009-12-23 23:03:06 +0000 | [diff] [blame] | 3123 | return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param, |
Douglas Gregor | 25ab25f | 2009-12-23 18:19:08 +0000 | [diff] [blame] | 3124 | Result.takeAs<Expr>())); |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3125 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3126 | |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3127 | // If the default expression creates temporaries, we need to |
| 3128 | // push them to the current stack of expression temporaries so they'll |
| 3129 | // be properly destroyed. |
Douglas Gregor | 25ab25f | 2009-12-23 18:19:08 +0000 | [diff] [blame] | 3130 | // FIXME: We should really be rebuilding the default argument with new |
| 3131 | // bound temporaries; see the comment in PR5810. |
Anders Carlsson | 714d096 | 2009-12-15 19:16:31 +0000 | [diff] [blame] | 3132 | for (unsigned i = 0, e = Param->getNumDefaultArgTemporaries(); i != e; ++i) |
| 3133 | ExprTemporaries.push_back(Param->getDefaultArgTemporary(i)); |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3134 | } |
| 3135 | |
| 3136 | // We already type-checked the argument, so we know it works. |
Douglas Gregor | 033f675 | 2009-12-23 23:03:06 +0000 | [diff] [blame] | 3137 | return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param)); |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3138 | } |
| 3139 | |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3140 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 3141 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 3142 | /// function prototype Proto. Call is the call expression itself, and |
| 3143 | /// Fn is the function expression. For a C++ member function, this |
| 3144 | /// routine does not attempt to convert the object argument. Returns |
| 3145 | /// true if the call is ill-formed. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3146 | bool |
| 3147 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3148 | FunctionDecl *FDecl, |
Douglas Gregor | deaad8c | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3149 | const FunctionProtoType *Proto, |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3150 | Expr **Args, unsigned NumArgs, |
| 3151 | SourceLocation RParenLoc) { |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3152 | // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3153 | // assignment, to the types of the corresponding parameter, ... |
| 3154 | unsigned NumArgsInProto = Proto->getNumArgs(); |
Douglas Gregor | b6b9961 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 3155 | bool Invalid = false; |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3156 | |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3157 | // If too few arguments are available (and we don't have default |
| 3158 | // arguments for the remaining parameters), don't make the call. |
| 3159 | if (NumArgs < NumArgsInProto) { |
| 3160 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 3161 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 3162 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
Ted Kremenek | 5a20195 | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3163 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3164 | } |
| 3165 | |
| 3166 | // If too many are passed and not variadic, error on the extras and drop |
| 3167 | // them. |
| 3168 | if (NumArgs > NumArgsInProto) { |
| 3169 | if (!Proto->isVariadic()) { |
| 3170 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 3171 | diag::err_typecheck_call_too_many_args) |
| 3172 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 3173 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 3174 | Args[NumArgs-1]->getLocEnd()); |
| 3175 | // This deletes the extra arguments. |
Ted Kremenek | 5a20195 | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3176 | Call->setNumArgs(Context, NumArgsInProto); |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3177 | return true; |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3178 | } |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3179 | } |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3180 | llvm::SmallVector<Expr *, 8> AllArgs; |
Fariborz Jahanian | 6f2d25e | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 3181 | VariadicCallType CallType = |
| 3182 | Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply; |
| 3183 | if (Fn->getType()->isBlockPointerType()) |
| 3184 | CallType = VariadicBlock; // Block |
| 3185 | else if (isa<MemberExpr>(Fn)) |
| 3186 | CallType = VariadicMethod; |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3187 | Invalid = GatherArgumentsForCall(Call->getSourceRange().getBegin(), FDecl, |
Fariborz Jahanian | 4fa66ce | 2009-11-24 21:37:28 +0000 | [diff] [blame] | 3188 | Proto, 0, Args, NumArgs, AllArgs, CallType); |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3189 | if (Invalid) |
| 3190 | return true; |
| 3191 | unsigned TotalNumArgs = AllArgs.size(); |
| 3192 | for (unsigned i = 0; i < TotalNumArgs; ++i) |
| 3193 | Call->setArg(i, AllArgs[i]); |
| 3194 | |
| 3195 | return false; |
| 3196 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3197 | |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3198 | bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, |
| 3199 | FunctionDecl *FDecl, |
| 3200 | const FunctionProtoType *Proto, |
| 3201 | unsigned FirstProtoArg, |
| 3202 | Expr **Args, unsigned NumArgs, |
| 3203 | llvm::SmallVector<Expr *, 8> &AllArgs, |
Fariborz Jahanian | 6f2d25e | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 3204 | VariadicCallType CallType) { |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3205 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 3206 | unsigned NumArgsToCheck = NumArgs; |
| 3207 | bool Invalid = false; |
| 3208 | if (NumArgs != NumArgsInProto) |
| 3209 | // Use default arguments for missing arguments |
| 3210 | NumArgsToCheck = NumArgsInProto; |
| 3211 | unsigned ArgIx = 0; |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3212 | // Continue to check argument types (even if we have too few/many args). |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3213 | for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) { |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3214 | QualType ProtoArgType = Proto->getArgType(i); |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3215 | |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3216 | Expr *Arg; |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3217 | if (ArgIx < NumArgs) { |
| 3218 | Arg = Args[ArgIx++]; |
| 3219 | |
Eli Friedman | 3164fb1 | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3220 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 3221 | ProtoArgType, |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3222 | PDiag(diag::err_call_incomplete_argument) |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3223 | << Arg->getSourceRange())) |
Eli Friedman | 3164fb1 | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3224 | return true; |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3225 | |
Douglas Gregor | bbeb5c3 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3226 | // Pass the argument |
| 3227 | ParmVarDecl *Param = 0; |
| 3228 | if (FDecl && i < FDecl->getNumParams()) |
| 3229 | Param = FDecl->getParamDecl(i); |
Douglas Gregor | 96596c9 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 3230 | |
Douglas Gregor | bbeb5c3 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3231 | |
| 3232 | InitializedEntity Entity = |
| 3233 | Param? InitializedEntity::InitializeParameter(Param) |
| 3234 | : InitializedEntity::InitializeParameter(ProtoArgType); |
| 3235 | OwningExprResult ArgE = PerformCopyInitialization(Entity, |
| 3236 | SourceLocation(), |
| 3237 | Owned(Arg)); |
| 3238 | if (ArgE.isInvalid()) |
| 3239 | return true; |
| 3240 | |
| 3241 | Arg = ArgE.takeAs<Expr>(); |
Anders Carlsson | 84613c4 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 3242 | } else { |
Anders Carlsson | c80a127 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 3243 | ParmVarDecl *Param = FDecl->getParamDecl(i); |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3244 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3245 | OwningExprResult ArgExpr = |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3246 | BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3247 | if (ArgExpr.isInvalid()) |
| 3248 | return true; |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3249 | |
Anders Carlsson | 355933d | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3250 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 84613c4 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 3251 | } |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3252 | AllArgs.push_back(Arg); |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3253 | } |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3254 | |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3255 | // If this is a variadic call, handle args passed through "...". |
Fariborz Jahanian | 6f2d25e | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 3256 | if (CallType != VariadicDoesNotApply) { |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3257 | // Promote the arguments (C99 6.5.2.2p7). |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3258 | for (unsigned i = ArgIx; i < NumArgs; i++) { |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3259 | Expr *Arg = Args[i]; |
Chris Lattner | a8a7d0f | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 3260 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Fariborz Jahanian | 835026e | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3261 | AllArgs.push_back(Arg); |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3262 | } |
| 3263 | } |
Douglas Gregor | b6b9961 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 3264 | return Invalid; |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3265 | } |
| 3266 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3267 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 3268 | /// This provides the location of the left/right parens and a list of comma |
| 3269 | /// locations. |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3270 | Action::OwningExprResult |
| 3271 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 3272 | MultiExprArg args, |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3273 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3274 | unsigned NumArgs = args.size(); |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3275 | |
| 3276 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 3277 | fn = MaybeConvertParenListExprToParenExpr(S, move(fn)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3278 | |
Anders Carlsson | 3cbc859 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 3279 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3280 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 38dbdb2 | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 3281 | assert(Fn && "no function call expression"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3282 | |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3283 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3284 | // If this is a pseudo-destructor expression, build the call immediately. |
| 3285 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
| 3286 | if (NumArgs > 0) { |
| 3287 | // Pseudo-destructor calls should not have any arguments. |
| 3288 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
| 3289 | << CodeModificationHint::CreateRemoval( |
| 3290 | SourceRange(Args[0]->getLocStart(), |
| 3291 | Args[NumArgs-1]->getLocEnd())); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3292 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3293 | for (unsigned I = 0; I != NumArgs; ++I) |
| 3294 | Args[I]->Destroy(Context); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3295 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3296 | NumArgs = 0; |
| 3297 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3298 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3299 | return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, |
| 3300 | RParenLoc)); |
| 3301 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3302 | |
Douglas Gregor | b8a9a41 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3303 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3304 | // in which case we won't do any semantic analysis now. |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3305 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 3306 | // Fn. |
Douglas Gregor | b8a9a41 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3307 | bool Dependent = false; |
| 3308 | if (Fn->isTypeDependent()) |
| 3309 | Dependent = true; |
| 3310 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 3311 | Dependent = true; |
| 3312 | |
| 3313 | if (Dependent) |
Ted Kremenek | d7b4f40 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 3314 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | b8a9a41 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3315 | Context.DependentTy, RParenLoc)); |
| 3316 | |
| 3317 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 3318 | if (Fn->getType()->isRecordType()) |
| 3319 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 3320 | CommaLocs, RParenLoc)); |
| 3321 | |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3322 | Expr *NakedFn = Fn->IgnoreParens(); |
| 3323 | |
| 3324 | // Determine whether this is a call to an unresolved member function. |
| 3325 | if (UnresolvedMemberExpr *MemE = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { |
| 3326 | // If lookup was unresolved but not dependent (i.e. didn't find |
| 3327 | // an unresolved using declaration), it has to be an overloaded |
| 3328 | // function set, which means it must contain either multiple |
| 3329 | // declarations (all methods or method templates) or a single |
| 3330 | // method template. |
| 3331 | assert((MemE->getNumDecls() > 1) || |
| 3332 | isa<FunctionTemplateDecl>(*MemE->decls_begin())); |
Douglas Gregor | 8f184a3 | 2009-12-01 03:34:29 +0000 | [diff] [blame] | 3333 | (void)MemE; |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3334 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3335 | return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 3336 | CommaLocs, RParenLoc); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3337 | } |
| 3338 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 3339 | // Determine whether this is a call to a member function. |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3340 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(NakedFn)) { |
Douglas Gregor | ad3f2fc | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 3341 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3342 | if (isa<CXXMethodDecl>(MemDecl)) |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3343 | return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 3344 | CommaLocs, RParenLoc); |
Douglas Gregor | ad3f2fc | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 3345 | } |
Anders Carlsson | 61914b5 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3346 | |
| 3347 | // Determine whether this is a call to a pointer-to-member function. |
John McCall | 10eae18 | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3348 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(NakedFn)) { |
Anders Carlsson | 61914b5 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3349 | if (BO->getOpcode() == BinaryOperator::PtrMemD || |
| 3350 | BO->getOpcode() == BinaryOperator::PtrMemI) { |
Fariborz Jahanian | 42f6663 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 3351 | if (const FunctionProtoType *FPT = |
| 3352 | dyn_cast<FunctionProtoType>(BO->getType())) { |
| 3353 | QualType ResultTy = FPT->getResultType().getNonReferenceType(); |
Anders Carlsson | 61914b5 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3354 | |
Fariborz Jahanian | 42f6663 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 3355 | ExprOwningPtr<CXXMemberCallExpr> |
| 3356 | TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args, |
| 3357 | NumArgs, ResultTy, |
| 3358 | RParenLoc)); |
Anders Carlsson | 61914b5 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3359 | |
Fariborz Jahanian | 42f6663 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 3360 | if (CheckCallReturnType(FPT->getResultType(), |
| 3361 | BO->getRHS()->getSourceRange().getBegin(), |
| 3362 | TheCall.get(), 0)) |
| 3363 | return ExprError(); |
Anders Carlsson | 63dce02 | 2009-10-15 00:41:48 +0000 | [diff] [blame] | 3364 | |
Fariborz Jahanian | 42f6663 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 3365 | if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs, |
| 3366 | RParenLoc)) |
| 3367 | return ExprError(); |
Anders Carlsson | 61914b5 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3368 | |
Fariborz Jahanian | 42f6663 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 3369 | return Owned(MaybeBindToTemporary(TheCall.release()).release()); |
| 3370 | } |
| 3371 | return ExprError(Diag(Fn->getLocStart(), |
| 3372 | diag::err_typecheck_call_not_function) |
| 3373 | << Fn->getType() << Fn->getSourceRange()); |
Anders Carlsson | 61914b5 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3374 | } |
| 3375 | } |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3376 | } |
| 3377 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 3378 | // If we're directly calling a function, get the appropriate declaration. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3379 | // Also, in C++, keep track of whether we should perform argument-dependent |
Douglas Gregor | 89026b5 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 3380 | // lookup and whether there were any explicitly-specified template arguments. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3381 | |
Eli Friedman | e14b199 | 2009-12-26 03:35:45 +0000 | [diff] [blame] | 3382 | Expr *NakedFn = Fn->IgnoreParens(); |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3383 | if (isa<UnresolvedLookupExpr>(NakedFn)) { |
| 3384 | UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(NakedFn); |
| 3385 | return BuildOverloadedCallExpr(Fn, ULE, LParenLoc, Args, NumArgs, |
| 3386 | CommaLocs, RParenLoc); |
Douglas Gregor | 5251f1b | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3387 | } |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 3388 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3389 | NamedDecl *NDecl = 0; |
| 3390 | if (isa<DeclRefExpr>(NakedFn)) |
| 3391 | NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); |
| 3392 | |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3393 | return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc); |
| 3394 | } |
| 3395 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3396 | /// BuildResolvedCallExpr - Build a call to a resolved expression, |
| 3397 | /// i.e. an expression not of \p OverloadTy. The expression should |
John McCall | 2d74de9 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3398 | /// unary-convert to an expression of function-pointer or |
| 3399 | /// block-pointer type. |
| 3400 | /// |
| 3401 | /// \param NDecl the declaration being called, if available |
| 3402 | Sema::OwningExprResult |
| 3403 | Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, |
| 3404 | SourceLocation LParenLoc, |
| 3405 | Expr **Args, unsigned NumArgs, |
| 3406 | SourceLocation RParenLoc) { |
| 3407 | FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); |
| 3408 | |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 3409 | // Promote the function operand. |
| 3410 | UsualUnaryConversions(Fn); |
| 3411 | |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3412 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 3413 | // of arguments and function on error. |
Ted Kremenek | d7b4f40 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 3414 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 3415 | Args, NumArgs, |
| 3416 | Context.BoolTy, |
| 3417 | RParenLoc)); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3418 | |
Steve Naroff | 8de9c3a | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3419 | const FunctionType *FuncT; |
| 3420 | if (!Fn->getType()->isBlockPointerType()) { |
| 3421 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 3422 | // have type pointer to function". |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3423 | const PointerType *PT = Fn->getType()->getAs<PointerType>(); |
Steve Naroff | 8de9c3a | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3424 | if (PT == 0) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3425 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 3426 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3427 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | 8de9c3a | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3428 | } else { // This is a block call. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3429 | FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3430 | getAs<FunctionType>(); |
Steve Naroff | 8de9c3a | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3431 | } |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3432 | if (FuncT == 0) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3433 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 3434 | << Fn->getType() << Fn->getSourceRange()); |
| 3435 | |
Eli Friedman | 3164fb1 | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3436 | // Check for a valid return type |
Anders Carlsson | 7f84ed9 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 3437 | if (CheckCallReturnType(FuncT->getResultType(), |
| 3438 | Fn->getSourceRange().getBegin(), TheCall.get(), |
| 3439 | FDecl)) |
Eli Friedman | 3164fb1 | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3440 | return ExprError(); |
| 3441 | |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3442 | // We know the result type of the call, set it. |
Douglas Gregor | 786ab21 | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 3443 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3444 | |
Douglas Gregor | deaad8c | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3445 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3446 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3447 | RParenLoc)) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3448 | return ExprError(); |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3449 | } else { |
Douglas Gregor | deaad8c | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3450 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3451 | |
Douglas Gregor | d8e97de | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 3452 | if (FDecl) { |
| 3453 | // Check if we have too few/too many template arguments, based |
| 3454 | // on our knowledge of the function definition. |
| 3455 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | ddcd132 | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 3456 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | fcbf7d2 | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 3457 | const FunctionProtoType *Proto = |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3458 | Def->getType()->getAs<FunctionProtoType>(); |
Eli Friedman | fcbf7d2 | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 3459 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 3460 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 3461 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 3462 | } |
| 3463 | } |
Douglas Gregor | d8e97de | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 3464 | } |
| 3465 | |
Steve Naroff | 0b66158 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3466 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3467 | for (unsigned i = 0; i != NumArgs; i++) { |
| 3468 | Expr *Arg = Args[i]; |
| 3469 | DefaultArgumentPromotion(Arg); |
Eli Friedman | 3164fb1 | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3470 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 3471 | Arg->getType(), |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3472 | PDiag(diag::err_call_incomplete_argument) |
| 3473 | << Arg->getSourceRange())) |
Eli Friedman | 3164fb1 | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3474 | return ExprError(); |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3475 | TheCall->setArg(i, Arg); |
Steve Naroff | 0b66158 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3476 | } |
Steve Naroff | ae4143e | 2007-04-26 20:39:23 +0000 | [diff] [blame] | 3477 | } |
Chris Lattner | 0846494 | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3478 | |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3479 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 3480 | if (!Method->isStatic()) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3481 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 3482 | << Fn->getSourceRange()); |
Douglas Gregor | 97fd6e2 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3483 | |
Fariborz Jahanian | 0aa5c45 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 3484 | // Check for sentinels |
| 3485 | if (NDecl) |
| 3486 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3487 | |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3488 | // Do special checking on direct calls to functions. |
Anders Carlsson | bc4c107 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3489 | if (FDecl) { |
| 3490 | if (CheckFunctionCall(FDecl, TheCall.get())) |
| 3491 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3492 | |
Douglas Gregor | 15fc956 | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 3493 | if (unsigned BuiltinID = FDecl->getBuiltinID()) |
Anders Carlsson | bc4c107 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3494 | return CheckBuiltinFunctionCall(BuiltinID, TheCall.take()); |
| 3495 | } else if (NDecl) { |
| 3496 | if (CheckBlockCall(NDecl, TheCall.get())) |
| 3497 | return ExprError(); |
| 3498 | } |
Chris Lattner | b87b1b3 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3499 | |
Anders Carlsson | f898401 | 2009-08-16 03:06:32 +0000 | [diff] [blame] | 3500 | return MaybeBindToTemporary(TheCall.take()); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 3501 | } |
| 3502 | |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3503 | Action::OwningExprResult |
| 3504 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 3505 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3506 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Douglas Gregor | 85dabae | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3507 | |
Douglas Gregor | 1b30393 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3508 | QualType literalType = GetTypeFromParser(Ty); |
Douglas Gregor | 85dabae | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3509 | |
Steve Naroff | 57eb2c5 | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 3510 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3511 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3512 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | 2c1ec6d | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 3513 | |
Eli Friedman | 37a186d | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3514 | if (literalType->isArrayType()) { |
Chris Lattner | 7adf076 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 3515 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3516 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 3517 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 1c37d9e | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 3518 | } else if (!literalType->isDependentType() && |
| 3519 | RequireCompleteType(LParenLoc, literalType, |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3520 | PDiag(diag::err_typecheck_decl_incomplete_type) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3521 | << SourceRange(LParenLoc, |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3522 | literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3523 | return ExprError(); |
Eli Friedman | 37a186d | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3524 | |
Douglas Gregor | 85dabae | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3525 | InitializedEntity Entity |
Douglas Gregor | 1b30393 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3526 | = InitializedEntity::InitializeTemporary(literalType); |
Douglas Gregor | 85dabae | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3527 | InitializationKind Kind |
| 3528 | = InitializationKind::CreateCast(SourceRange(LParenLoc, RParenLoc), |
| 3529 | /*IsCStyleCast=*/true); |
Eli Friedman | a553d4a | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 3530 | InitializationSequence InitSeq(*this, Entity, Kind, &literalExpr, 1); |
| 3531 | OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, |
| 3532 | MultiExprArg(*this, (void**)&literalExpr, 1), |
| 3533 | &literalType); |
| 3534 | if (Result.isInvalid()) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3535 | return ExprError(); |
Eli Friedman | a553d4a | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 3536 | InitExpr.release(); |
| 3537 | literalExpr = static_cast<Expr*>(Result.get()); |
Steve Naroff | d32419d | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3538 | |
Chris Lattner | 7941395 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 3539 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | d32419d | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3540 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | 98f7203 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3541 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3542 | return ExprError(); |
Steve Naroff | 98f7203 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3543 | } |
Eli Friedman | a553d4a | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 3544 | |
| 3545 | Result.release(); |
Douglas Gregor | 85dabae | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3546 | |
| 3547 | // FIXME: Store the TInfo to preserve type information better. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3548 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3549 | literalExpr, isFileScope)); |
Steve Naroff | fbd0983 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3550 | } |
| 3551 | |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3552 | Action::OwningExprResult |
| 3553 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3554 | SourceLocation RBraceLoc) { |
| 3555 | unsigned NumInit = initlist.size(); |
| 3556 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 4692db0 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 3557 | |
Steve Naroff | 30d242c | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3558 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3559 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3560 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3561 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 347f7ea | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 3562 | RBraceLoc); |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3563 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3564 | return Owned(E); |
Steve Naroff | fbd0983 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3565 | } |
| 3566 | |
Anders Carlsson | 094c459 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3567 | static CastExpr::CastKind getScalarCastKind(ASTContext &Context, |
| 3568 | QualType SrcTy, QualType DestTy) { |
Douglas Gregor | 1b8fe5b7 | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3569 | if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) |
Anders Carlsson | 094c459 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3570 | return CastExpr::CK_NoOp; |
| 3571 | |
| 3572 | if (SrcTy->hasPointerRepresentation()) { |
| 3573 | if (DestTy->hasPointerRepresentation()) |
Fariborz Jahanian | 2b9fc83 | 2009-12-15 21:34:52 +0000 | [diff] [blame] | 3574 | return DestTy->isObjCObjectPointerType() ? |
| 3575 | CastExpr::CK_AnyPointerToObjCPointerCast : |
| 3576 | CastExpr::CK_BitCast; |
Anders Carlsson | 094c459 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3577 | if (DestTy->isIntegerType()) |
| 3578 | return CastExpr::CK_PointerToIntegral; |
| 3579 | } |
| 3580 | |
| 3581 | if (SrcTy->isIntegerType()) { |
| 3582 | if (DestTy->isIntegerType()) |
| 3583 | return CastExpr::CK_IntegralCast; |
| 3584 | if (DestTy->hasPointerRepresentation()) |
| 3585 | return CastExpr::CK_IntegralToPointer; |
| 3586 | if (DestTy->isRealFloatingType()) |
| 3587 | return CastExpr::CK_IntegralToFloating; |
| 3588 | } |
| 3589 | |
| 3590 | if (SrcTy->isRealFloatingType()) { |
| 3591 | if (DestTy->isRealFloatingType()) |
| 3592 | return CastExpr::CK_FloatingCast; |
| 3593 | if (DestTy->isIntegerType()) |
| 3594 | return CastExpr::CK_FloatingToIntegral; |
| 3595 | } |
| 3596 | |
| 3597 | // FIXME: Assert here. |
| 3598 | // assert(false && "Unhandled cast combination!"); |
| 3599 | return CastExpr::CK_Unknown; |
| 3600 | } |
| 3601 | |
Argyrios Kyrtzidis | 2ade390 | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3602 | /// CheckCastTypes - Check type constraints for casting between types. |
Sebastian Redl | 955a067 | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3603 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3604 | CastExpr::CastKind& Kind, |
Fariborz Jahanian | 1cec0c4 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3605 | CXXMethodDecl *& ConversionDecl, |
| 3606 | bool FunctionalStyle) { |
Sebastian Redl | 9f831db | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3607 | if (getLangOptions().CPlusPlus) |
Fariborz Jahanian | 1cec0c4 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3608 | return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle, |
| 3609 | ConversionDecl); |
Sebastian Redl | 9f831db | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3610 | |
Eli Friedman | da8d4de | 2009-08-15 19:02:19 +0000 | [diff] [blame] | 3611 | DefaultFunctionArrayConversion(castExpr); |
Argyrios Kyrtzidis | 2ade390 | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3612 | |
| 3613 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 3614 | // type needs to be scalar. |
| 3615 | if (castType->isVoidType()) { |
| 3616 | // Cast to void allows any expr type. |
Anders Carlsson | ef918ac | 2009-10-16 02:35:04 +0000 | [diff] [blame] | 3617 | Kind = CastExpr::CK_ToVoid; |
| 3618 | return false; |
| 3619 | } |
| 3620 | |
| 3621 | if (!castType->isScalarType() && !castType->isVectorType()) { |
Douglas Gregor | 1b8fe5b7 | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3622 | if (Context.hasSameUnqualifiedType(castType, castExpr->getType()) && |
Seo Sanghyeon | 39a3ebf | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3623 | (castType->isStructureType() || castType->isUnionType())) { |
| 3624 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3625 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | 39a3ebf | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3626 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 3627 | << castType << castExpr->getSourceRange(); |
Anders Carlsson | ec14377 | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3628 | Kind = CastExpr::CK_NoOp; |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3629 | return false; |
| 3630 | } |
| 3631 | |
| 3632 | if (castType->isUnionType()) { |
Seo Sanghyeon | 39a3ebf | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3633 | // GCC cast to union extension |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3634 | RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); |
Seo Sanghyeon | 39a3ebf | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3635 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3636 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | 39a3ebf | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3637 | Field != FieldEnd; ++Field) { |
Douglas Gregor | 1b8fe5b7 | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3638 | if (Context.hasSameUnqualifiedType(Field->getType(), |
| 3639 | castExpr->getType())) { |
Seo Sanghyeon | 39a3ebf | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3640 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 3641 | << castExpr->getSourceRange(); |
| 3642 | break; |
| 3643 | } |
| 3644 | } |
| 3645 | if (Field == FieldEnd) |
| 3646 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 3647 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | ec14377 | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3648 | Kind = CastExpr::CK_ToUnion; |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3649 | return false; |
Argyrios Kyrtzidis | 2ade390 | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3650 | } |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3651 | |
| 3652 | // Reject any other conversions to non-scalar types. |
| 3653 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
| 3654 | << castType << castExpr->getSourceRange(); |
| 3655 | } |
| 3656 | |
| 3657 | if (!castExpr->getType()->isScalarType() && |
| 3658 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3659 | return Diag(castExpr->getLocStart(), |
| 3660 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3661 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3662 | } |
| 3663 | |
Anders Carlsson | 43d70f8 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3664 | if (castType->isExtVectorType()) |
| 3665 | return CheckExtVectorCast(TyR, castType, castExpr, Kind); |
| 3666 | |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3667 | if (castType->isVectorType()) |
| 3668 | return CheckVectorCast(TyR, castType, castExpr->getType(), Kind); |
| 3669 | if (castExpr->getType()->isVectorType()) |
| 3670 | return CheckVectorCast(TyR, castExpr->getType(), castType, Kind); |
| 3671 | |
| 3672 | if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) |
Steve Naroff | b47acdb | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 3673 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3674 | |
Anders Carlsson | 43d70f8 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3675 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 3676 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
| 3677 | |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3678 | if (!castType->isArithmeticType()) { |
Eli Friedman | f4e3ad6 | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 3679 | QualType castExprType = castExpr->getType(); |
| 3680 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 3681 | return Diag(castExpr->getLocStart(), |
| 3682 | diag::err_cast_pointer_from_non_pointer_int) |
| 3683 | << castExprType << castExpr->getSourceRange(); |
| 3684 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 3685 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 3686 | return Diag(castExpr->getLocStart(), |
| 3687 | diag::err_cast_pointer_to_non_pointer_int) |
| 3688 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 2ade390 | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3689 | } |
Anders Carlsson | 094c459 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3690 | |
| 3691 | Kind = getScalarCastKind(Context, castExpr->getType(), castType); |
Argyrios Kyrtzidis | 2ade390 | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3692 | return false; |
| 3693 | } |
| 3694 | |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3695 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
| 3696 | CastExpr::CastKind &Kind) { |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3697 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3698 | |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3699 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 37e0587 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3700 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3701 | return Diag(R.getBegin(), |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3702 | Ty->isVectorType() ? |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3703 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3704 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3705 | << VectorTy << Ty << R; |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3706 | } else |
| 3707 | return Diag(R.getBegin(), |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3708 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3709 | << VectorTy << Ty << R; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3710 | |
Anders Carlsson | 525b76b | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3711 | Kind = CastExpr::CK_BitCast; |
Anders Carlsson | de71adf | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3712 | return false; |
| 3713 | } |
| 3714 | |
Anders Carlsson | 43d70f8 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3715 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr, |
| 3716 | CastExpr::CastKind &Kind) { |
Nate Begeman | c69b740 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3717 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Anders Carlsson | 43d70f8 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3718 | |
| 3719 | QualType SrcTy = CastExpr->getType(); |
| 3720 | |
Nate Begeman | c8961a4 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 3721 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 3722 | // an ExtVectorType. |
Nate Begeman | c69b740 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3723 | if (SrcTy->isVectorType()) { |
| 3724 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 3725 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 3726 | << DestTy << SrcTy << R; |
Anders Carlsson | 43d70f8 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3727 | Kind = CastExpr::CK_BitCast; |
Nate Begeman | c69b740 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3728 | return false; |
| 3729 | } |
| 3730 | |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3731 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | c69b740 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3732 | // conversion will take place first from scalar to elt type, and then |
| 3733 | // splat from elt type to vector. |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3734 | if (SrcTy->isPointerType()) |
| 3735 | return Diag(R.getBegin(), |
| 3736 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 3737 | << DestTy << SrcTy << R; |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3738 | |
| 3739 | QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); |
| 3740 | ImpCastExprToType(CastExpr, DestElemTy, |
| 3741 | getScalarCastKind(Context, SrcTy, DestElemTy)); |
Anders Carlsson | 43d70f8 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3742 | |
| 3743 | Kind = CastExpr::CK_VectorSplat; |
Nate Begeman | c69b740 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3744 | return false; |
| 3745 | } |
| 3746 | |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3747 | Action::OwningExprResult |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3748 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty, |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3749 | SourceLocation RParenLoc, ExprArg Op) { |
Anders Carlsson | f10e414 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3750 | CastExpr::CastKind Kind = CastExpr::CK_Unknown; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3751 | |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3752 | assert((Ty != 0) && (Op.get() != 0) && |
| 3753 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 1a2cf6b | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3754 | |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3755 | Expr *castExpr = (Expr *)Op.get(); |
Argyrios Kyrtzidis | c7148c9 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3756 | //FIXME: Preserve type source info. |
| 3757 | QualType castType = GetTypeFromParser(Ty); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3758 | |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3759 | // If the Expr being casted is a ParenListExpr, handle it specially. |
| 3760 | if (isa<ParenListExpr>(castExpr)) |
| 3761 | return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType); |
Anders Carlsson | e9766d5 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3762 | CXXMethodDecl *Method = 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3763 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr, |
Anders Carlsson | e9766d5 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3764 | Kind, Method)) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3765 | return ExprError(); |
Anders Carlsson | e9766d5 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3766 | |
| 3767 | if (Method) { |
Daniel Dunbar | 4782a6e | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3768 | OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind, |
Anders Carlsson | e9766d5 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3769 | Method, move(Op)); |
Daniel Dunbar | 4782a6e | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3770 | |
Anders Carlsson | e9766d5 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3771 | if (CastArg.isInvalid()) |
| 3772 | return ExprError(); |
Daniel Dunbar | 4782a6e | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3773 | |
Anders Carlsson | e9766d5 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3774 | castExpr = CastArg.takeAs<Expr>(); |
| 3775 | } else { |
| 3776 | Op.release(); |
Fariborz Jahanian | 3df8767 | 2009-08-29 19:15:16 +0000 | [diff] [blame] | 3777 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3778 | |
Sebastian Redl | 9f831db | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3779 | return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3780 | Kind, castExpr, castType, |
Anders Carlsson | f10e414 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3781 | LParenLoc, RParenLoc)); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 3782 | } |
| 3783 | |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3784 | /// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence |
| 3785 | /// of comma binary operators. |
| 3786 | Action::OwningExprResult |
| 3787 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) { |
| 3788 | Expr *expr = EA.takeAs<Expr>(); |
| 3789 | ParenListExpr *E = dyn_cast<ParenListExpr>(expr); |
| 3790 | if (!E) |
| 3791 | return Owned(expr); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3792 | |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3793 | OwningExprResult Result(*this, E->getExpr(0)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3794 | |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3795 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
| 3796 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result), |
| 3797 | Owned(E->getExpr(i))); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3798 | |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3799 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result)); |
| 3800 | } |
| 3801 | |
| 3802 | Action::OwningExprResult |
| 3803 | Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc, |
| 3804 | SourceLocation RParenLoc, ExprArg Op, |
| 3805 | QualType Ty) { |
| 3806 | ParenListExpr *PE = (ParenListExpr *)Op.get(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3807 | |
| 3808 | // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')' |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3809 | // then handle it as such. |
| 3810 | if (getLangOptions().AltiVec && Ty->isVectorType()) { |
| 3811 | if (PE->getNumExprs() == 0) { |
| 3812 | Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 3813 | return ExprError(); |
| 3814 | } |
| 3815 | |
| 3816 | llvm::SmallVector<Expr *, 8> initExprs; |
| 3817 | for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i) |
| 3818 | initExprs.push_back(PE->getExpr(i)); |
| 3819 | |
| 3820 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 3821 | // braces instead of the original commas. |
| 3822 | Op.release(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3823 | InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0], |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3824 | initExprs.size(), RParenLoc); |
| 3825 | E->setType(Ty); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3826 | return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc, |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3827 | Owned(E)); |
| 3828 | } else { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3829 | // This is not an AltiVec-style cast, so turn the ParenListExpr into a |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3830 | // sequence of BinOp comma operators. |
| 3831 | Op = MaybeConvertParenListExprToParenExpr(S, move(Op)); |
| 3832 | return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op)); |
| 3833 | } |
| 3834 | } |
| 3835 | |
Fariborz Jahanian | 906d871 | 2009-11-25 01:26:41 +0000 | [diff] [blame] | 3836 | Action::OwningExprResult Sema::ActOnParenOrParenListExpr(SourceLocation L, |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3837 | SourceLocation R, |
Fariborz Jahanian | 906d871 | 2009-11-25 01:26:41 +0000 | [diff] [blame] | 3838 | MultiExprArg Val, |
| 3839 | TypeTy *TypeOfCast) { |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3840 | unsigned nexprs = Val.size(); |
| 3841 | Expr **exprs = reinterpret_cast<Expr**>(Val.release()); |
Fariborz Jahanian | 906d871 | 2009-11-25 01:26:41 +0000 | [diff] [blame] | 3842 | assert((exprs != 0) && "ActOnParenOrParenListExpr() missing expr list"); |
| 3843 | Expr *expr; |
| 3844 | if (nexprs == 1 && TypeOfCast && !TypeIsVectorType(TypeOfCast)) |
| 3845 | expr = new (Context) ParenExpr(L, R, exprs[0]); |
| 3846 | else |
| 3847 | expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R); |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3848 | return Owned(expr); |
| 3849 | } |
| 3850 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3851 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 3852 | /// In that case, lhs = cond. |
Chris Lattner | 2c48660 | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 3853 | /// C99 6.5.15 |
| 3854 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 3855 | SourceLocation QuestionLoc) { |
Sebastian Redl | 1a99f44 | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3856 | // C++ is sufficiently different to merit its own checker. |
| 3857 | if (getLangOptions().CPlusPlus) |
| 3858 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 3859 | |
John McCall | 1fa36b7 | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 3860 | CheckSignCompare(LHS, RHS, QuestionLoc, diag::warn_mixed_sign_conditional); |
| 3861 | |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3862 | UsualUnaryConversions(Cond); |
| 3863 | UsualUnaryConversions(LHS); |
| 3864 | UsualUnaryConversions(RHS); |
| 3865 | QualType CondTy = Cond->getType(); |
| 3866 | QualType LHSTy = LHS->getType(); |
| 3867 | QualType RHSTy = RHS->getType(); |
Steve Naroff | 3109001 | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3868 | |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 3869 | // first, check the condition. |
Sebastian Redl | 1a99f44 | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3870 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 3871 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 3872 | << CondTy; |
| 3873 | return QualType(); |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 3874 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3875 | |
Chris Lattner | e2949f4 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3876 | // Now check the two expressions. |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3877 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
| 3878 | return CheckVectorOperands(QuestionLoc, LHS, RHS); |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3879 | |
Chris Lattner | e2949f4 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3880 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3881 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3882 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3883 | UsualArithmeticConversions(LHS, RHS); |
| 3884 | return LHS->getType(); |
Steve Naroff | dbd9e89 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3885 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3886 | |
Chris Lattner | e2949f4 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3887 | // If both operands are the same structure or union type, the result is that |
| 3888 | // type. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3889 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 3890 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | 2ab40a6 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3891 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3892 | // "If both the operands have structure or union type, the result has |
Chris Lattner | e2949f4 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3893 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3894 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3895 | // FIXME: Type of conditional expression must be complete in C mode. |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 3896 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3897 | |
Chris Lattner | e2949f4 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3898 | // C99 6.5.15p5: "If both operands have void type, the result has void type." |
Steve Naroff | bf1516c | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3899 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3900 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3901 | if (!LHSTy->isVoidType()) |
| 3902 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3903 | << RHS->getSourceRange(); |
| 3904 | if (!RHSTy->isVoidType()) |
| 3905 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3906 | << LHS->getSourceRange(); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3907 | ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid); |
| 3908 | ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid); |
Eli Friedman | 3e1852f | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3909 | return Context.VoidTy; |
Steve Naroff | bf1516c | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3910 | } |
Steve Naroff | 039ad3c | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3911 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3912 | // the type of the other operand." |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3913 | if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3914 | RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3915 | // promote the null to a pointer. |
| 3916 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown); |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3917 | return LHSTy; |
Steve Naroff | 039ad3c | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3918 | } |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3919 | if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3920 | LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3921 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown); |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3922 | return RHSTy; |
Steve Naroff | 039ad3c | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3923 | } |
Fariborz Jahanian | a430f71 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 3924 | |
| 3925 | // All objective-c pointer type analysis is done here. |
| 3926 | QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, |
| 3927 | QuestionLoc); |
| 3928 | if (!compositeType.isNull()) |
| 3929 | return compositeType; |
| 3930 | |
| 3931 | |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3932 | // Handle block pointer types. |
| 3933 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { |
| 3934 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 3935 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 3936 | QualType destType = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3937 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
| 3938 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3939 | return destType; |
| 3940 | } |
| 3941 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
Fariborz Jahanian | a430f71 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 3942 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3943 | return QualType(); |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3944 | } |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3945 | // We have 2 block pointer types. |
| 3946 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3947 | // Two identical block pointer types are always compatible. |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3948 | return LHSTy; |
| 3949 | } |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3950 | // The block pointer types aren't identical, continue checking. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3951 | QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); |
| 3952 | QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); |
Fariborz Jahanian | a430f71 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 3953 | |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3954 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3955 | rhptee.getUnqualifiedType())) { |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3956 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
Fariborz Jahanian | a430f71 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 3957 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3958 | // In this situation, we assume void* type. No especially good |
| 3959 | // reason, but this is what gcc does, and we do have to pick |
| 3960 | // to get a consistent AST. |
| 3961 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3962 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3963 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3964 | return incompatTy; |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 3965 | } |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3966 | // The block pointer types are compatible. |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3967 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3968 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | ea4c780 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3969 | return LHSTy; |
| 3970 | } |
Fariborz Jahanian | a430f71 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 3971 | |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3972 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
| 3973 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
| 3974 | // get the "pointed to" types |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3975 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 3976 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3977 | |
| 3978 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3979 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 3980 | // Figure out necessary qualifiers (C99 6.5.15p6) |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3981 | QualType destPointee |
| 3982 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3983 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3984 | // Add qualifiers if necessary. |
| 3985 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3986 | // Promote to void*. |
| 3987 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3988 | return destType; |
| 3989 | } |
| 3990 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3991 | QualType destPointee |
| 3992 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3993 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3994 | // Add qualifiers if necessary. |
Eli Friedman | b0bc559 | 2009-11-17 01:22:05 +0000 | [diff] [blame] | 3995 | ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3996 | // Promote to void*. |
Eli Friedman | b0bc559 | 2009-11-17 01:22:05 +0000 | [diff] [blame] | 3997 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3998 | return destType; |
| 3999 | } |
| 4000 | |
| 4001 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 4002 | // Two identical pointer types are always compatible. |
| 4003 | return LHSTy; |
| 4004 | } |
| 4005 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 4006 | rhptee.getUnqualifiedType())) { |
| 4007 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 4008 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 4009 | // In this situation, we assume void* type. No especially good |
| 4010 | // reason, but this is what gcc does, and we do have to pick |
| 4011 | // to get a consistent AST. |
| 4012 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4013 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 4014 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4015 | return incompatTy; |
| 4016 | } |
| 4017 | // The pointer types are compatible. |
| 4018 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 4019 | // differently qualified versions of compatible types, the result type is |
| 4020 | // a pointer to an appropriately qualified version of the *composite* |
| 4021 | // type. |
| 4022 | // FIXME: Need to calculate the composite type. |
| 4023 | // FIXME: Need to add qualifiers |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4024 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 4025 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4026 | return LHSTy; |
| 4027 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4028 | |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4029 | // GCC compatibility: soften pointer/integer mismatch. |
| 4030 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 4031 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 4032 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4033 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4034 | return RHSTy; |
| 4035 | } |
| 4036 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 4037 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 4038 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4039 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 05efa97 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4040 | return LHSTy; |
| 4041 | } |
Daniel Dunbar | 484603b | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 4042 | |
Chris Lattner | e2949f4 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4043 | // Otherwise, the operands are not compatible. |
Chris Lattner | 432cff5 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 4044 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 4045 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 4046 | return QualType(); |
Steve Naroff | f8a28c5 | 2007-05-15 20:29:32 +0000 | [diff] [blame] | 4047 | } |
| 4048 | |
Fariborz Jahanian | a430f71 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4049 | /// FindCompositeObjCPointerType - Helper method to find composite type of |
| 4050 | /// two objective-c pointer types of the two input expressions. |
| 4051 | QualType Sema::FindCompositeObjCPointerType(Expr *&LHS, Expr *&RHS, |
| 4052 | SourceLocation QuestionLoc) { |
| 4053 | QualType LHSTy = LHS->getType(); |
| 4054 | QualType RHSTy = RHS->getType(); |
| 4055 | |
| 4056 | // Handle things like Class and struct objc_class*. Here we case the result |
| 4057 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 4058 | // redefinition type if an attempt is made to access its fields. |
| 4059 | if (LHSTy->isObjCClassType() && |
| 4060 | (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
| 4061 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
| 4062 | return LHSTy; |
| 4063 | } |
| 4064 | if (RHSTy->isObjCClassType() && |
| 4065 | (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
| 4066 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
| 4067 | return RHSTy; |
| 4068 | } |
| 4069 | // And the same for struct objc_object* / id |
| 4070 | if (LHSTy->isObjCIdType() && |
| 4071 | (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
| 4072 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
| 4073 | return LHSTy; |
| 4074 | } |
| 4075 | if (RHSTy->isObjCIdType() && |
| 4076 | (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
| 4077 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
| 4078 | return RHSTy; |
| 4079 | } |
| 4080 | // And the same for struct objc_selector* / SEL |
| 4081 | if (Context.isObjCSelType(LHSTy) && |
| 4082 | (RHSTy.getDesugaredType() == Context.ObjCSelRedefinitionType)) { |
| 4083 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
| 4084 | return LHSTy; |
| 4085 | } |
| 4086 | if (Context.isObjCSelType(RHSTy) && |
| 4087 | (LHSTy.getDesugaredType() == Context.ObjCSelRedefinitionType)) { |
| 4088 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
| 4089 | return RHSTy; |
| 4090 | } |
| 4091 | // Check constraints for Objective-C object pointers types. |
| 4092 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
| 4093 | |
| 4094 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 4095 | // Two identical object pointer types are always compatible. |
| 4096 | return LHSTy; |
| 4097 | } |
| 4098 | const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>(); |
| 4099 | const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>(); |
| 4100 | QualType compositeType = LHSTy; |
| 4101 | |
| 4102 | // If both operands are interfaces and either operand can be |
| 4103 | // assigned to the other, use that type as the composite |
| 4104 | // type. This allows |
| 4105 | // xxx ? (A*) a : (B*) b |
| 4106 | // where B is a subclass of A. |
| 4107 | // |
| 4108 | // Additionally, as for assignment, if either type is 'id' |
| 4109 | // allow silent coercion. Finally, if the types are |
| 4110 | // incompatible then make sure to use 'id' as the composite |
| 4111 | // type so the result is acceptable for sending messages to. |
| 4112 | |
| 4113 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 4114 | // It could return the composite type. |
| 4115 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
| 4116 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
| 4117 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
| 4118 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
| 4119 | } else if ((LHSTy->isObjCQualifiedIdType() || |
| 4120 | RHSTy->isObjCQualifiedIdType()) && |
| 4121 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
| 4122 | // Need to handle "id<xx>" explicitly. |
| 4123 | // GCC allows qualified id and any Objective-C type to devolve to |
| 4124 | // id. Currently localizing to here until clear this should be |
| 4125 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 4126 | compositeType = Context.getObjCIdType(); |
| 4127 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
| 4128 | compositeType = Context.getObjCIdType(); |
| 4129 | } else if (!(compositeType = |
| 4130 | Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) |
| 4131 | ; |
| 4132 | else { |
| 4133 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 4134 | << LHSTy << RHSTy |
| 4135 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 4136 | QualType incompatTy = Context.getObjCIdType(); |
| 4137 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 4138 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
| 4139 | return incompatTy; |
| 4140 | } |
| 4141 | // The object pointer types are compatible. |
| 4142 | ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast); |
| 4143 | ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast); |
| 4144 | return compositeType; |
| 4145 | } |
| 4146 | // Check Objective-C object pointer types and 'void *' |
| 4147 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
| 4148 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 4149 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 4150 | QualType destPointee |
| 4151 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
| 4152 | QualType destType = Context.getPointerType(destPointee); |
| 4153 | // Add qualifiers if necessary. |
| 4154 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 4155 | // Promote to void*. |
| 4156 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
| 4157 | return destType; |
| 4158 | } |
| 4159 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
| 4160 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 4161 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
| 4162 | QualType destPointee |
| 4163 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
| 4164 | QualType destType = Context.getPointerType(destPointee); |
| 4165 | // Add qualifiers if necessary. |
| 4166 | ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp); |
| 4167 | // Promote to void*. |
| 4168 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
| 4169 | return destType; |
| 4170 | } |
| 4171 | return QualType(); |
| 4172 | } |
| 4173 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4174 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 4175 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4176 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 4177 | SourceLocation ColonLoc, |
| 4178 | ExprArg Cond, ExprArg LHS, |
| 4179 | ExprArg RHS) { |
| 4180 | Expr *CondExpr = (Expr *) Cond.get(); |
| 4181 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | 2ab40a6 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 4182 | |
| 4183 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 4184 | // was the condition. |
| 4185 | bool isLHSNull = LHSExpr == 0; |
| 4186 | if (isLHSNull) |
| 4187 | LHSExpr = CondExpr; |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4188 | |
| 4189 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | daaa9f2 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 4190 | RHSExpr, QuestionLoc); |
Steve Naroff | f8a28c5 | 2007-05-15 20:29:32 +0000 | [diff] [blame] | 4191 | if (result.isNull()) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4192 | return ExprError(); |
| 4193 | |
| 4194 | Cond.release(); |
| 4195 | LHS.release(); |
| 4196 | RHS.release(); |
Douglas Gregor | 7e112b0 | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 4197 | return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc, |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4198 | isLHSNull ? 0 : LHSExpr, |
Douglas Gregor | 7e112b0 | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 4199 | ColonLoc, RHSExpr, result)); |
Chris Lattner | e168f76 | 2006-11-10 05:29:30 +0000 | [diff] [blame] | 4200 | } |
| 4201 | |
Steve Naroff | 3f59729 | 2007-05-11 22:18:03 +0000 | [diff] [blame] | 4202 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4203 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Steve Naroff | 3f59729 | 2007-05-11 22:18:03 +0000 | [diff] [blame] | 4204 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 4205 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 4206 | // FIXME: add a couple examples in this comment. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4207 | Sema::AssignConvertType |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4208 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
Steve Naroff | 3f59729 | 2007-05-11 22:18:03 +0000 | [diff] [blame] | 4209 | QualType lhptee, rhptee; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4210 | |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 4211 | if ((lhsType->isObjCClassType() && |
| 4212 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 4213 | (rhsType->isObjCClassType() && |
| 4214 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 4215 | return Compatible; |
| 4216 | } |
| 4217 | |
Steve Naroff | 1f4d727 | 2007-05-11 04:00:31 +0000 | [diff] [blame] | 4218 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4219 | lhptee = lhsType->getAs<PointerType>()->getPointeeType(); |
| 4220 | rhptee = rhsType->getAs<PointerType>()->getPointeeType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4221 | |
Steve Naroff | 1f4d727 | 2007-05-11 04:00:31 +0000 | [diff] [blame] | 4222 | // make sure we operate on the canonical type |
Chris Lattner | 574dee6 | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4223 | lhptee = Context.getCanonicalType(lhptee); |
| 4224 | rhptee = Context.getCanonicalType(rhptee); |
Steve Naroff | 1f4d727 | 2007-05-11 04:00:31 +0000 | [diff] [blame] | 4225 | |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4226 | AssignConvertType ConvTy = Compatible; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4227 | |
| 4228 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 4229 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 4230 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | ece8582 | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 4231 | // FIXME: Handle ExtQualType |
Douglas Gregor | 9a65793 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4232 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4233 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Steve Naroff | 3f59729 | 2007-05-11 22:18:03 +0000 | [diff] [blame] | 4234 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4235 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 4236 | // incomplete type and the other is a pointer to a qualified or unqualified |
Steve Naroff | 3f59729 | 2007-05-11 22:18:03 +0000 | [diff] [blame] | 4237 | // version of void... |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 4238 | if (lhptee->isVoidType()) { |
Chris Lattner | b3a176d | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 4239 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4240 | return ConvTy; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4241 | |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 4242 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | b3a176d | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 4243 | assert(rhptee->isFunctionType()); |
| 4244 | return FunctionVoidPointer; |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 4245 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4246 | |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 4247 | if (rhptee->isVoidType()) { |
Chris Lattner | b3a176d | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 4248 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4249 | return ConvTy; |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 4250 | |
| 4251 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | b3a176d | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 4252 | assert(lhptee->isFunctionType()); |
| 4253 | return FunctionVoidPointer; |
Chris Lattner | 0a78843 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 4254 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4255 | // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or |
Steve Naroff | 3f59729 | 2007-05-11 22:18:03 +0000 | [diff] [blame] | 4256 | // unqualified versions of compatible types, ... |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4257 | lhptee = lhptee.getUnqualifiedType(); |
| 4258 | rhptee = rhptee.getUnqualifiedType(); |
| 4259 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 4260 | // Check if the pointee types are compatible ignoring the sign. |
| 4261 | // We explicitly check for char so that we catch "char" vs |
| 4262 | // "unsigned char" on systems where "char" is unsigned. |
Chris Lattner | ec3a156 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 4263 | if (lhptee->isCharType()) |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4264 | lhptee = Context.UnsignedCharTy; |
Chris Lattner | ec3a156 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 4265 | else if (lhptee->isSignedIntegerType()) |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4266 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
Chris Lattner | ec3a156 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 4267 | |
| 4268 | if (rhptee->isCharType()) |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4269 | rhptee = Context.UnsignedCharTy; |
Chris Lattner | ec3a156 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 4270 | else if (rhptee->isSignedIntegerType()) |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4271 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
Chris Lattner | ec3a156 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 4272 | |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4273 | if (lhptee == rhptee) { |
| 4274 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 4275 | // takes priority over sign incompatibility because the sign |
| 4276 | // warning can be disabled. |
| 4277 | if (ConvTy != Compatible) |
| 4278 | return ConvTy; |
| 4279 | return IncompatiblePointerSign; |
| 4280 | } |
Fariborz Jahanian | d7aa9d8 | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 4281 | |
| 4282 | // If we are a multi-level pointer, it's possible that our issue is simply |
| 4283 | // one of qualification - e.g. char ** -> const char ** is not allowed. If |
| 4284 | // the eventual target type is the same and the pointers have the same |
| 4285 | // level of indirection, this must be the issue. |
| 4286 | if (lhptee->isPointerType() && rhptee->isPointerType()) { |
| 4287 | do { |
| 4288 | lhptee = lhptee->getAs<PointerType>()->getPointeeType(); |
| 4289 | rhptee = rhptee->getAs<PointerType>()->getPointeeType(); |
| 4290 | |
| 4291 | lhptee = Context.getCanonicalType(lhptee); |
| 4292 | rhptee = Context.getCanonicalType(rhptee); |
| 4293 | } while (lhptee->isPointerType() && rhptee->isPointerType()); |
| 4294 | |
Douglas Gregor | 1b8fe5b7 | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 4295 | if (Context.hasSameUnqualifiedType(lhptee, rhptee)) |
Alexis Hunt | 6f3de50 | 2009-11-08 07:46:34 +0000 | [diff] [blame] | 4296 | return IncompatibleNestedPointerQualifiers; |
Fariborz Jahanian | d7aa9d8 | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 4297 | } |
| 4298 | |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4299 | // General pointer incompatibility takes priority over qualifiers. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4300 | return IncompatiblePointer; |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4301 | } |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4302 | return ConvTy; |
Steve Naroff | 1f4d727 | 2007-05-11 04:00:31 +0000 | [diff] [blame] | 4303 | } |
| 4304 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4305 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 4306 | /// block pointer types are compatible or whether a block and normal pointer |
| 4307 | /// are compatible. It is more restrict than comparing two function pointer |
| 4308 | // types. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4309 | Sema::AssignConvertType |
| 4310 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4311 | QualType rhsType) { |
| 4312 | QualType lhptee, rhptee; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4313 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4314 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4315 | lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); |
| 4316 | rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4317 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4318 | // make sure we operate on the canonical type |
| 4319 | lhptee = Context.getCanonicalType(lhptee); |
| 4320 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4321 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4322 | AssignConvertType ConvTy = Compatible; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4323 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4324 | // For blocks we enforce that qualifiers are identical. |
Douglas Gregor | 1b8fe5b7 | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 4325 | if (lhptee.getLocalCVRQualifiers() != rhptee.getLocalCVRQualifiers()) |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4326 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4327 | |
Eli Friedman | a6638ca | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4328 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4329 | return IncompatibleBlockPointer; |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4330 | return ConvTy; |
| 4331 | } |
| 4332 | |
Fariborz Jahanian | 410f2eb | 2009-12-08 18:24:49 +0000 | [diff] [blame] | 4333 | /// CheckObjCPointerTypesForAssignment - Compares two objective-c pointer types |
| 4334 | /// for assignment compatibility. |
| 4335 | Sema::AssignConvertType |
| 4336 | Sema::CheckObjCPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 4337 | if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) |
| 4338 | return Compatible; |
| 4339 | QualType lhptee = |
| 4340 | lhsType->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 4341 | QualType rhptee = |
| 4342 | rhsType->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 4343 | // make sure we operate on the canonical type |
| 4344 | lhptee = Context.getCanonicalType(lhptee); |
| 4345 | rhptee = Context.getCanonicalType(rhptee); |
| 4346 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
| 4347 | return CompatiblePointerDiscardsQualifiers; |
| 4348 | |
| 4349 | if (Context.typesAreCompatible(lhsType, rhsType)) |
| 4350 | return Compatible; |
| 4351 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) |
| 4352 | return IncompatibleObjCQualifiedId; |
| 4353 | return IncompatiblePointer; |
| 4354 | } |
| 4355 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4356 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 4357 | /// has code to accommodate several GCC extensions when type checking |
Steve Naroff | 17f76e0 | 2007-05-03 21:03:48 +0000 | [diff] [blame] | 4358 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 4359 | /// |
| 4360 | /// int a, *pint; |
| 4361 | /// short *pshort; |
| 4362 | /// struct foo *pfoo; |
| 4363 | /// |
| 4364 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 4365 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 4366 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 4367 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 4368 | /// |
| 4369 | /// As a result, the code for dealing with pointers is more complex than the |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4370 | /// C99 spec dictates. |
Steve Naroff | 17f76e0 | 2007-05-03 21:03:48 +0000 | [diff] [blame] | 4371 | /// |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4372 | Sema::AssignConvertType |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4373 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | a52c2f2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 4374 | // Get canonical types. We're not formatting these types, just comparing |
| 4375 | // them. |
Chris Lattner | 574dee6 | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4376 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 4377 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | 3360d89 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 4378 | |
| 4379 | if (lhsType == rhsType) |
Chris Lattner | f5c973d | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 4380 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 44fd8ff | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 4381 | |
David Chisnall | 9f57c29 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 4382 | if ((lhsType->isObjCClassType() && |
| 4383 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 4384 | (rhsType->isObjCClassType() && |
| 4385 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 4386 | return Compatible; |
| 4387 | } |
| 4388 | |
Douglas Gregor | 6b75484 | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4389 | // If the left-hand side is a reference type, then we are in a |
| 4390 | // (rare!) case where we've allowed the use of references in C, |
| 4391 | // e.g., as a parameter type in a built-in function. In this case, |
| 4392 | // just make sure that the type referenced is compatible with the |
| 4393 | // right-hand side type. The caller is responsible for adjusting |
| 4394 | // lhsType so that the resulting expression does not have reference |
| 4395 | // type. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4396 | if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { |
Douglas Gregor | 6b75484 | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4397 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 24ebce6 | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 4398 | return Compatible; |
Chris Lattner | a52c2f2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 4399 | return Incompatible; |
Fariborz Jahanian | a1e3420 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 4400 | } |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4401 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 4402 | // to the same ExtVector type. |
| 4403 | if (lhsType->isExtVectorType()) { |
| 4404 | if (rhsType->isExtVectorType()) |
| 4405 | return lhsType == rhsType ? Compatible : Incompatible; |
| 4406 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 4407 | return Compatible; |
| 4408 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4409 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4410 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4411 | // If we are allowing lax vector conversions, and LHS and RHS are both |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4412 | // vectors, the total size only needs to be the same. This is a bitcast; |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4413 | // no bits are changed but the result type is different. |
Chris Lattner | 881a212 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 4414 | if (getLangOptions().LaxVectorConversions && |
| 4415 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4416 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | db5a9b6 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4417 | return IncompatibleVectors; |
Chris Lattner | 881a212 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 4418 | } |
| 4419 | return Incompatible; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4420 | } |
Eli Friedman | 3360d89 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 4421 | |
Chris Lattner | 881a212 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 4422 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4423 | return Compatible; |
Eli Friedman | 3360d89 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 4424 | |
Chris Lattner | ec64683 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 4425 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4426 | if (rhsType->isIntegerType()) |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 4427 | return IntToPointer; |
Eli Friedman | 3360d89 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 4428 | |
Chris Lattner | ec64683 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 4429 | if (isa<PointerType>(rhsType)) |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4430 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4431 | |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 4432 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4433 | if (isa<ObjCObjectPointerType>(rhsType)) { |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 4434 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 4435 | return Compatible; |
| 4436 | return IncompatiblePointer; |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4437 | } |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4438 | if (rhsType->getAs<BlockPointerType>()) { |
| 4439 | if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | e7dd145 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 4440 | return Compatible; |
Steve Naroff | 32d072c | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 4441 | |
| 4442 | // Treat block pointers as objects. |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4443 | if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) |
Steve Naroff | 32d072c | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 4444 | return Compatible; |
| 4445 | } |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4446 | return Incompatible; |
| 4447 | } |
| 4448 | |
| 4449 | if (isa<BlockPointerType>(lhsType)) { |
| 4450 | if (rhsType->isIntegerType()) |
Eli Friedman | 8163b7a | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 4451 | return IntToBlockPointer; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4452 | |
Steve Naroff | 32d072c | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 4453 | // Treat block pointers as objects. |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4454 | if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) |
Steve Naroff | 32d072c | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 4455 | return Compatible; |
| 4456 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4457 | if (rhsType->isBlockPointerType()) |
| 4458 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4459 | |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4460 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4461 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | e7dd145 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 4462 | return Compatible; |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4463 | } |
Chris Lattner | a52c2f2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 4464 | return Incompatible; |
| 4465 | } |
| 4466 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4467 | if (isa<ObjCObjectPointerType>(lhsType)) { |
| 4468 | if (rhsType->isIntegerType()) |
| 4469 | return IntToPointer; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4470 | |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 4471 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4472 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 4473 | if (rhsType->isVoidPointerType()) // an exception to the rule. |
| 4474 | return Compatible; |
| 4475 | return IncompatiblePointer; |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4476 | } |
| 4477 | if (rhsType->isObjCObjectPointerType()) { |
Fariborz Jahanian | 410f2eb | 2009-12-08 18:24:49 +0000 | [diff] [blame] | 4478 | return CheckObjCPointerTypesForAssignment(lhsType, rhsType); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4479 | } |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4480 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4481 | if (RHSPT->getPointeeType()->isVoidType()) |
| 4482 | return Compatible; |
| 4483 | } |
| 4484 | // Treat block pointers as objects. |
| 4485 | if (rhsType->isBlockPointerType()) |
| 4486 | return Compatible; |
| 4487 | return Incompatible; |
| 4488 | } |
Chris Lattner | ec64683 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 4489 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4490 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
Eli Friedman | 3360d89 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 4491 | if (lhsType == Context.BoolTy) |
| 4492 | return Compatible; |
| 4493 | |
| 4494 | if (lhsType->isIntegerType()) |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 4495 | return PointerToInt; |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4496 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4497 | if (isa<PointerType>(lhsType)) |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4498 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4499 | |
| 4500 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4501 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | e7dd145 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 4502 | return Compatible; |
Chris Lattner | a52c2f2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 4503 | return Incompatible; |
Chris Lattner | a52c2f2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 4504 | } |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4505 | if (isa<ObjCObjectPointerType>(rhsType)) { |
| 4506 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 4507 | if (lhsType == Context.BoolTy) |
| 4508 | return Compatible; |
| 4509 | |
| 4510 | if (lhsType->isIntegerType()) |
| 4511 | return PointerToInt; |
| 4512 | |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 4513 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4514 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | accc488 | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 4515 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 4516 | return Compatible; |
| 4517 | return IncompatiblePointer; |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4518 | } |
| 4519 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4520 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4521 | return Compatible; |
| 4522 | return Incompatible; |
| 4523 | } |
Eli Friedman | 3360d89 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 4524 | |
Chris Lattner | a52c2f2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 4525 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | ec64683 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 4526 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4527 | return Compatible; |
Bill Wendling | 216423b | 2007-05-30 06:30:29 +0000 | [diff] [blame] | 4528 | } |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 4529 | return Incompatible; |
Steve Naroff | 9eb2465 | 2007-05-02 21:58:15 +0000 | [diff] [blame] | 4530 | } |
| 4531 | |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4532 | /// \brief Constructs a transparent union from an expression that is |
| 4533 | /// used to initialize the transparent union. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4534 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4535 | QualType UnionType, FieldDecl *Field) { |
| 4536 | // Build an initializer list that designates the appropriate member |
| 4537 | // of the transparent union. |
| 4538 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 4539 | &E, 1, |
| 4540 | SourceLocation()); |
| 4541 | Initializer->setType(UnionType); |
| 4542 | Initializer->setInitializedFieldInUnion(Field); |
| 4543 | |
| 4544 | // Build a compound literal constructing a value of the transparent |
| 4545 | // union type from this initializer list. |
| 4546 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 4547 | false); |
| 4548 | } |
| 4549 | |
| 4550 | Sema::AssignConvertType |
| 4551 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 4552 | QualType FromType = rExpr->getType(); |
| 4553 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4554 | // If the ArgType is a Union type, we want to handle a potential |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4555 | // transparent_union GCC extension. |
| 4556 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 4557 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4558 | return Incompatible; |
| 4559 | |
| 4560 | // The field to initialize within the transparent union. |
| 4561 | RecordDecl *UD = UT->getDecl(); |
| 4562 | FieldDecl *InitField = 0; |
| 4563 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 4564 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 4565 | itend = UD->field_end(); |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4566 | it != itend; ++it) { |
| 4567 | if (it->getType()->isPointerType()) { |
| 4568 | // If the transparent union contains a pointer type, we allow: |
| 4569 | // 1) void pointer |
| 4570 | // 2) null pointer constant |
| 4571 | if (FromType->isPointerType()) |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4572 | if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4573 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast); |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4574 | InitField = *it; |
| 4575 | break; |
| 4576 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4577 | |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4578 | if (rExpr->isNullPointerConstant(Context, |
| 4579 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4580 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4581 | InitField = *it; |
| 4582 | break; |
| 4583 | } |
| 4584 | } |
| 4585 | |
| 4586 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 4587 | == Compatible) { |
| 4588 | InitField = *it; |
| 4589 | break; |
| 4590 | } |
| 4591 | } |
| 4592 | |
| 4593 | if (!InitField) |
| 4594 | return Incompatible; |
| 4595 | |
| 4596 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 4597 | return Compatible; |
| 4598 | } |
| 4599 | |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4600 | Sema::AssignConvertType |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4601 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 9a65793 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4602 | if (getLangOptions().CPlusPlus) { |
| 4603 | if (!lhsType->isRecordType()) { |
| 4604 | // C++ 5.17p3: If the left operand is not of class type, the |
| 4605 | // expression is implicitly converted (C++ 4) to the |
| 4606 | // cv-unqualified type of the left operand. |
Douglas Gregor | 47d3f27 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 4607 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
Douglas Gregor | 7c3bbdf | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 4608 | AA_Assigning)) |
Douglas Gregor | 9a65793 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4609 | return Incompatible; |
Chris Lattner | 0d5640c | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 4610 | return Compatible; |
Douglas Gregor | 9a65793 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4611 | } |
| 4612 | |
| 4613 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 4614 | // structures. |
| 4615 | } |
| 4616 | |
Steve Naroff | 0ee0b0a | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4617 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 4618 | // a null pointer constant. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4619 | if ((lhsType->isPointerType() || |
| 4620 | lhsType->isObjCObjectPointerType() || |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4621 | lhsType->isBlockPointerType()) |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4622 | && rExpr->isNullPointerConstant(Context, |
| 4623 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4624 | ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown); |
Steve Naroff | 0ee0b0a | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4625 | return Compatible; |
| 4626 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4627 | |
Chris Lattner | e6dcd50 | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4628 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4629 | // conversion of functions/arrays. If the conversion were done for all |
Douglas Gregor | a121b75 | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 4630 | // DeclExpr's (created by ActOnIdExpression), it would mess up the unary |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4631 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | e6dcd50 | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4632 | // |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4633 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | e6dcd50 | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4634 | if (!lhsType->isReferenceType()) |
| 4635 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | 0c1c7ed | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4636 | |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4637 | Sema::AssignConvertType result = |
| 4638 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4639 | |
Steve Naroff | 0c1c7ed | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4640 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 4641 | // type of the assignment expression. |
Douglas Gregor | 6b75484 | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4642 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 4643 | // so that we can use references in built-in functions even in C. |
| 4644 | // The getNonReferenceType() call makes sure that the resulting expression |
| 4645 | // does not have reference type. |
Douglas Gregor | 0cfbdab | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4646 | if (result != Incompatible && rExpr->getType() != lhsType) |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4647 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType(), |
| 4648 | CastExpr::CK_Unknown); |
Steve Naroff | 0c1c7ed | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4649 | return result; |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4650 | } |
| 4651 | |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4652 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4653 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 6a2ed6f | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4654 | << lex->getType() << rex->getType() |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4655 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 5c11c41 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4656 | return QualType(); |
Steve Naroff | 6f49f5d | 2007-05-29 14:23:36 +0000 | [diff] [blame] | 4657 | } |
| 4658 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4659 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 7a5af78 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4660 | Expr *&rex) { |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4661 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 002e4bd | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4662 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | 574dee6 | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4663 | QualType lhsType = |
| 4664 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 4665 | QualType rhsType = |
| 4666 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4667 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4668 | // If the vector types are identical, return. |
Nate Begeman | 002e4bd | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4669 | if (lhsType == rhsType) |
Steve Naroff | 84ff4b4 | 2007-07-09 21:31:10 +0000 | [diff] [blame] | 4670 | return lhsType; |
Nate Begeman | 330aaa7 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4671 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4672 | // Handle the case of a vector & extvector type of the same size and element |
| 4673 | // type. It would be nice if we only had one vector type someday. |
Anders Carlsson | db5a9b6 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4674 | if (getLangOptions().LaxVectorConversions) { |
| 4675 | // FIXME: Should we warn here? |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4676 | if (const VectorType *LV = lhsType->getAs<VectorType>()) { |
| 4677 | if (const VectorType *RV = rhsType->getAs<VectorType>()) |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4678 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | db5a9b6 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4679 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4680 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | db5a9b6 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4681 | } |
| 4682 | } |
| 4683 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4684 | |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4685 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 4686 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 4687 | bool swapped = false; |
| 4688 | if (rhsType->isExtVectorType()) { |
| 4689 | swapped = true; |
| 4690 | std::swap(rex, lex); |
| 4691 | std::swap(rhsType, lhsType); |
| 4692 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4693 | |
Nate Begeman | 886448d | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4694 | // Handle the case of an ext vector and scalar. |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4695 | if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) { |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4696 | QualType EltTy = LV->getElementType(); |
| 4697 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 4698 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4699 | ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast); |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4700 | if (swapped) std::swap(rex, lex); |
| 4701 | return lhsType; |
| 4702 | } |
| 4703 | } |
| 4704 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 4705 | rhsType->isRealFloatingType()) { |
| 4706 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4707 | ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast); |
Nate Begeman | bd956c4 | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4708 | if (swapped) std::swap(rex, lex); |
| 4709 | return lhsType; |
| 4710 | } |
Nate Begeman | 330aaa7 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4711 | } |
| 4712 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4713 | |
Nate Begeman | 886448d | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4714 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4715 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4716 | << lex->getType() << rex->getType() |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4717 | << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 84ff4b4 | 2007-07-09 21:31:10 +0000 | [diff] [blame] | 4718 | return QualType(); |
Sebastian Redl | 112a9766 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4719 | } |
| 4720 | |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 4721 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4722 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 060d5e2 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 4723 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4724 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4725 | |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4726 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4727 | |
Steve Naroff | dbd9e89 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4728 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4729 | return compType; |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4730 | return InvalidOperands(Loc, lex, rex); |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 4731 | } |
| 4732 | |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 4733 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4734 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 0d2bfec | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 4735 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4736 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 4737 | return CheckVectorOperands(Loc, lex, rex); |
| 4738 | return InvalidOperands(Loc, lex, rex); |
| 4739 | } |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4740 | |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4741 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4742 | |
Steve Naroff | dbd9e89 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4743 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4744 | return compType; |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4745 | return InvalidOperands(Loc, lex, rex); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 4746 | } |
| 4747 | |
| 4748 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4749 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) { |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4750 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4751 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4752 | if (CompLHSTy) *CompLHSTy = compType; |
| 4753 | return compType; |
| 4754 | } |
Steve Naroff | 7a5af78 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4755 | |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4756 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | 8e12298 | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4757 | |
Steve Naroff | e471889 | 2007-04-27 18:30:00 +0000 | [diff] [blame] | 4758 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4759 | if (lex->getType()->isArithmeticType() && |
| 4760 | rex->getType()->isArithmeticType()) { |
| 4761 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4762 | return compType; |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4763 | } |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 4764 | |
Eli Friedman | 8e12298 | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4765 | // Put any potential pointer into PExp |
| 4766 | Expr* PExp = lex, *IExp = rex; |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4767 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | 8e12298 | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4768 | std::swap(PExp, IExp); |
| 4769 | |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4770 | if (PExp->getType()->isAnyPointerType()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4771 | |
Eli Friedman | 8e12298 | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4772 | if (IExp->getType()->isIntegerType()) { |
Steve Naroff | aacd4cc | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4773 | QualType PointeeTy = PExp->getType()->getPointeeType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4774 | |
Chris Lattner | 12bdebb | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4775 | // Check for arithmetic on pointers to incomplete types. |
| 4776 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4777 | if (getLangOptions().CPlusPlus) { |
| 4778 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4779 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | dd430f7 | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4780 | return QualType(); |
Eli Friedman | 8e12298 | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4781 | } |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4782 | |
| 4783 | // GNU extension: arithmetic on pointer to void |
| 4784 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4785 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 12bdebb | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4786 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4787 | if (getLangOptions().CPlusPlus) { |
| 4788 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 4789 | << lex->getType() << lex->getSourceRange(); |
| 4790 | return QualType(); |
| 4791 | } |
| 4792 | |
| 4793 | // GNU extension: arithmetic on pointer to function |
| 4794 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4795 | << lex->getType() << lex->getSourceRange(); |
Steve Naroff | a63372d | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4796 | } else { |
Steve Naroff | aacd4cc | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4797 | // Check if we require a complete type. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4798 | if (((PExp->getType()->isPointerType() && |
Steve Naroff | a63372d | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4799 | !PExp->getType()->isDependentType()) || |
Steve Naroff | aacd4cc | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4800 | PExp->getType()->isObjCObjectPointerType()) && |
| 4801 | RequireCompleteType(Loc, PointeeTy, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4802 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
| 4803 | << PExp->getSourceRange() |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4804 | << PExp->getType())) |
Steve Naroff | aacd4cc | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4805 | return QualType(); |
| 4806 | } |
Chris Lattner | 12bdebb | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4807 | // Diagnose bad cases where we step over interface counts. |
| 4808 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4809 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4810 | << PointeeTy << PExp->getSourceRange(); |
| 4811 | return QualType(); |
| 4812 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4813 | |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4814 | if (CompLHSTy) { |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4815 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4816 | if (LHSTy.isNull()) { |
| 4817 | LHSTy = lex->getType(); |
| 4818 | if (LHSTy->isPromotableIntegerType()) |
| 4819 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | d2c2d17 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4820 | } |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4821 | *CompLHSTy = LHSTy; |
| 4822 | } |
Eli Friedman | 8e12298 | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4823 | return PExp->getType(); |
| 4824 | } |
| 4825 | } |
| 4826 | |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4827 | return InvalidOperands(Loc, lex, rex); |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 4828 | } |
| 4829 | |
Chris Lattner | 2a3569b | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4830 | // C99 6.5.6 |
| 4831 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4832 | SourceLocation Loc, QualType* CompLHSTy) { |
| 4833 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4834 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4835 | if (CompLHSTy) *CompLHSTy = compType; |
| 4836 | return compType; |
| 4837 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4838 | |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4839 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4840 | |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4841 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4842 | |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4843 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | f70bcf7 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4844 | if (lex->getType()->isArithmeticType() |
| 4845 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4846 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4847 | return compType; |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4848 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4849 | |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4850 | // Either ptr - int or ptr - ptr. |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4851 | if (lex->getType()->isAnyPointerType()) { |
Steve Naroff | 4eed7a1 | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 4852 | QualType lpointee = lex->getType()->getPointeeType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4853 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4854 | // The LHS must be an completely-defined object type. |
Douglas Gregor | f6cd928 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4855 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4856 | bool ComplainAboutVoid = false; |
| 4857 | Expr *ComplainAboutFunc = 0; |
| 4858 | if (lpointee->isVoidType()) { |
| 4859 | if (getLangOptions().CPlusPlus) { |
| 4860 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4861 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4862 | return QualType(); |
| 4863 | } |
| 4864 | |
| 4865 | // GNU C extension: arithmetic on pointer to void |
| 4866 | ComplainAboutVoid = true; |
| 4867 | } else if (lpointee->isFunctionType()) { |
| 4868 | if (getLangOptions().CPlusPlus) { |
| 4869 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4870 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4871 | return QualType(); |
| 4872 | } |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4873 | |
| 4874 | // GNU C extension: arithmetic on pointer to function |
| 4875 | ComplainAboutFunc = lex; |
| 4876 | } else if (!lpointee->isDependentType() && |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4877 | RequireCompleteType(Loc, lpointee, |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4878 | PDiag(diag::err_typecheck_sub_ptr_object) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4879 | << lex->getSourceRange() |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4880 | << lex->getType())) |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4881 | return QualType(); |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4882 | |
Chris Lattner | 12bdebb | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4883 | // Diagnose bad cases where we step over interface counts. |
| 4884 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4885 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4886 | << lpointee << lex->getSourceRange(); |
| 4887 | return QualType(); |
| 4888 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4889 | |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4890 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4891 | if (rex->getType()->isIntegerType()) { |
| 4892 | if (ComplainAboutVoid) |
| 4893 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4894 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4895 | if (ComplainAboutFunc) |
| 4896 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4897 | << ComplainAboutFunc->getType() |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4898 | << ComplainAboutFunc->getSourceRange(); |
| 4899 | |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4900 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4901 | return lex->getType(); |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4902 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4903 | |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4904 | // Handle pointer-pointer subtractions. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4905 | if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { |
Eli Friedman | 1974e53 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 4906 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4907 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4908 | // RHS must be a completely-type object type. |
| 4909 | // Handle the GNU void* extension. |
| 4910 | if (rpointee->isVoidType()) { |
| 4911 | if (getLangOptions().CPlusPlus) { |
| 4912 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4913 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4914 | return QualType(); |
| 4915 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4916 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4917 | ComplainAboutVoid = true; |
| 4918 | } else if (rpointee->isFunctionType()) { |
| 4919 | if (getLangOptions().CPlusPlus) { |
| 4920 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4921 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4922 | return QualType(); |
| 4923 | } |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4924 | |
| 4925 | // GNU extension: arithmetic on pointer to function |
| 4926 | if (!ComplainAboutFunc) |
| 4927 | ComplainAboutFunc = rex; |
| 4928 | } else if (!rpointee->isDependentType() && |
| 4929 | RequireCompleteType(Loc, rpointee, |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4930 | PDiag(diag::err_typecheck_sub_ptr_object) |
| 4931 | << rex->getSourceRange() |
| 4932 | << rex->getType())) |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4933 | return QualType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4934 | |
Eli Friedman | 168fe15 | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 4935 | if (getLangOptions().CPlusPlus) { |
| 4936 | // Pointee types must be the same: C++ [expr.add] |
| 4937 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 4938 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4939 | << lex->getType() << rex->getType() |
| 4940 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4941 | return QualType(); |
| 4942 | } |
| 4943 | } else { |
| 4944 | // Pointee types must be compatible C99 6.5.6p3 |
| 4945 | if (!Context.typesAreCompatible( |
| 4946 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 4947 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 4948 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4949 | << lex->getType() << rex->getType() |
| 4950 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4951 | return QualType(); |
| 4952 | } |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4953 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4954 | |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4955 | if (ComplainAboutVoid) |
| 4956 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4957 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4958 | if (ComplainAboutFunc) |
| 4959 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4960 | << ComplainAboutFunc->getType() |
Douglas Gregor | ac1fb65 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4961 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4962 | |
| 4963 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 4d62f42 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4964 | return Context.getPointerDiffType(); |
| 4965 | } |
| 4966 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4967 | |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4968 | return InvalidOperands(Loc, lex, rex); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 4969 | } |
| 4970 | |
Chris Lattner | 2a3569b | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4971 | // C99 6.5.7 |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4972 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | 2a3569b | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4973 | bool isCompAssign) { |
Chris Lattner | 5c11c41 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4974 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 4975 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4976 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4977 | |
Nate Begeman | e46ee9a | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 4978 | // Vector shifts promote their scalar inputs to vector type. |
| 4979 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 4980 | return CheckVectorOperands(Loc, lex, rex); |
| 4981 | |
Chris Lattner | 5c11c41 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4982 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 4983 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | 629ffb9 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4984 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4985 | if (LHSTy.isNull()) { |
| 4986 | LHSTy = lex->getType(); |
| 4987 | if (LHSTy->isPromotableIntegerType()) |
| 4988 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | d2c2d17 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4989 | } |
Chris Lattner | 3c13340 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 4990 | if (!isCompAssign) |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4991 | ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4992 | |
Chris Lattner | 5c11c41 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4993 | UsualUnaryConversions(rex); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4994 | |
Ryan Flynn | f53fab8 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4995 | // Sanity-check shift operands |
| 4996 | llvm::APSInt Right; |
| 4997 | // Check right/shifter operand |
Daniel Dunbar | 687fa86 | 2009-09-17 06:31:27 +0000 | [diff] [blame] | 4998 | if (!rex->isValueDependent() && |
| 4999 | rex->isIntegerConstantExpr(Right, Context)) { |
Ryan Flynn | 2f08571 | 2009-08-08 19:18:23 +0000 | [diff] [blame] | 5000 | if (Right.isNegative()) |
Ryan Flynn | f53fab8 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 5001 | Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange(); |
| 5002 | else { |
| 5003 | llvm::APInt LeftBits(Right.getBitWidth(), |
| 5004 | Context.getTypeSize(lex->getType())); |
| 5005 | if (Right.uge(LeftBits)) |
| 5006 | Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange(); |
| 5007 | } |
| 5008 | } |
| 5009 | |
Chris Lattner | 5c11c41 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 5010 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5011 | return LHSTy; |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 5012 | } |
| 5013 | |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5014 | /// \brief Implements -Wsign-compare. |
| 5015 | /// |
| 5016 | /// \param lex the left-hand expression |
| 5017 | /// \param rex the right-hand expression |
| 5018 | /// \param OpLoc the location of the joining operator |
John McCall | e46fd85 | 2009-11-06 08:53:51 +0000 | [diff] [blame] | 5019 | /// \param Equality whether this is an "equality-like" join, which |
| 5020 | /// suppresses the warning in some cases |
John McCall | 1fa36b7 | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 5021 | void Sema::CheckSignCompare(Expr *lex, Expr *rex, SourceLocation OpLoc, |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5022 | const PartialDiagnostic &PD, bool Equality) { |
John McCall | e2c91e6 | 2009-11-06 18:16:06 +0000 | [diff] [blame] | 5023 | // Don't warn if we're in an unevaluated context. |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 5024 | if (ExprEvalContexts.back().Context == Unevaluated) |
John McCall | e2c91e6 | 2009-11-06 18:16:06 +0000 | [diff] [blame] | 5025 | return; |
| 5026 | |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5027 | QualType lt = lex->getType(), rt = rex->getType(); |
| 5028 | |
| 5029 | // Only warn if both operands are integral. |
| 5030 | if (!lt->isIntegerType() || !rt->isIntegerType()) |
| 5031 | return; |
| 5032 | |
Sebastian Redl | 0b7c85f | 2009-11-05 21:09:23 +0000 | [diff] [blame] | 5033 | // If either expression is value-dependent, don't warn. We'll get another |
| 5034 | // chance at instantiation time. |
| 5035 | if (lex->isValueDependent() || rex->isValueDependent()) |
| 5036 | return; |
| 5037 | |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5038 | // The rule is that the signed operand becomes unsigned, so isolate the |
| 5039 | // signed operand. |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5040 | Expr *signedOperand, *unsignedOperand; |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5041 | if (lt->isSignedIntegerType()) { |
| 5042 | if (rt->isSignedIntegerType()) return; |
| 5043 | signedOperand = lex; |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5044 | unsignedOperand = rex; |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5045 | } else { |
| 5046 | if (!rt->isSignedIntegerType()) return; |
| 5047 | signedOperand = rex; |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5048 | unsignedOperand = lex; |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5049 | } |
| 5050 | |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5051 | // If the unsigned type is strictly smaller than the signed type, |
John McCall | e46fd85 | 2009-11-06 08:53:51 +0000 | [diff] [blame] | 5052 | // then (1) the result type will be signed and (2) the unsigned |
| 5053 | // value will fit fully within the signed type, and thus the result |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5054 | // of the comparison will be exact. |
| 5055 | if (Context.getIntWidth(signedOperand->getType()) > |
| 5056 | Context.getIntWidth(unsignedOperand->getType())) |
| 5057 | return; |
| 5058 | |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5059 | // If the value is a non-negative integer constant, then the |
| 5060 | // signed->unsigned conversion won't change it. |
| 5061 | llvm::APSInt value; |
John McCall | 1fa36b7 | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 5062 | if (signedOperand->isIntegerConstantExpr(value, Context)) { |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5063 | assert(value.isSigned() && "result of signed expression not signed"); |
| 5064 | |
| 5065 | if (value.isNonNegative()) |
| 5066 | return; |
| 5067 | } |
| 5068 | |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5069 | if (Equality) { |
| 5070 | // For (in)equality comparisons, if the unsigned operand is a |
John McCall | e46fd85 | 2009-11-06 08:53:51 +0000 | [diff] [blame] | 5071 | // constant which cannot collide with a overflowed signed operand, |
| 5072 | // then reinterpreting the signed operand as unsigned will not |
| 5073 | // change the result of the comparison. |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5074 | if (unsignedOperand->isIntegerConstantExpr(value, Context)) { |
| 5075 | assert(!value.isSigned() && "result of unsigned expression is signed"); |
| 5076 | |
| 5077 | // 2's complement: test the top bit. |
| 5078 | if (value.isNonNegative()) |
| 5079 | return; |
| 5080 | } |
| 5081 | } |
| 5082 | |
John McCall | 1fa36b7 | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 5083 | Diag(OpLoc, PD) |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5084 | << lex->getType() << rex->getType() |
| 5085 | << lex->getSourceRange() << rex->getSourceRange(); |
| 5086 | } |
| 5087 | |
Douglas Gregor | 5b07c7e | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 5088 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5089 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5090 | unsigned OpaqueOpc, bool isRelational) { |
| 5091 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 5092 | |
Chris Lattner | 9a152e2 | 2009-12-05 05:40:13 +0000 | [diff] [blame] | 5093 | // Handle vector comparisons separately. |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5094 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5095 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5096 | |
John McCall | 99ce6bf | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 5097 | CheckSignCompare(lex, rex, Loc, diag::warn_mixed_sign_comparison, |
| 5098 | (Opc == BinaryOperator::EQ || Opc == BinaryOperator::NE)); |
John McCall | 644a418 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 5099 | |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 5100 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 47fea35 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 5101 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 5102 | UsualArithmeticConversions(lex, rex); |
| 5103 | else { |
| 5104 | UsualUnaryConversions(lex); |
| 5105 | UsualUnaryConversions(rex); |
| 5106 | } |
Steve Naroff | 3109001 | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5107 | QualType lType = lex->getType(); |
| 5108 | QualType rType = rex->getType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5109 | |
Mike Stump | f70bcf7 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5110 | if (!lType->isFloatingType() |
| 5111 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 222b8bd | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 5112 | // For non-floating point types, check for self-comparisons of the form |
| 5113 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 5114 | // often indicate logic errors in the program. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5115 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
Ted Kremenek | de9e968 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 5116 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 222b8bd | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 5117 | Expr *LHSStripped = lex->IgnoreParens(); |
| 5118 | Expr *RHSStripped = rex->IgnoreParens(); |
| 5119 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 5120 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | 9ffbe41 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 5121 | if (DRL->getDecl() == DRR->getDecl() && |
| 5122 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5123 | Diag(Loc, diag::warn_selfcomparison); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5124 | |
Chris Lattner | 222b8bd | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 5125 | if (isa<CastExpr>(LHSStripped)) |
| 5126 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 5127 | if (isa<CastExpr>(RHSStripped)) |
| 5128 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5129 | |
Chris Lattner | 222b8bd | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 5130 | // Warn about comparisons against a string constant (unless the other |
| 5131 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5132 | Expr *literalString = 0; |
| 5133 | Expr *literalStringStripped = 0; |
Chris Lattner | 222b8bd | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 5134 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5135 | !RHSStripped->isNullPointerConstant(Context, |
| 5136 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5137 | literalString = lex; |
| 5138 | literalStringStripped = LHSStripped; |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 5139 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 5140 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5141 | !LHSStripped->isNullPointerConstant(Context, |
| 5142 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5143 | literalString = rex; |
| 5144 | literalStringStripped = RHSStripped; |
| 5145 | } |
| 5146 | |
| 5147 | if (literalString) { |
| 5148 | std::string resultComparison; |
| 5149 | switch (Opc) { |
| 5150 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 5151 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 5152 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 5153 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 5154 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 5155 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 5156 | default: assert(false && "Invalid comparison operator"); |
| 5157 | } |
| 5158 | Diag(Loc, diag::warn_stringcompare) |
| 5159 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 5160 | << literalString->getSourceRange() |
Douglas Gregor | 170512f | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 5161 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 5162 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 5163 | "strcmp(") |
| 5164 | << CodeModificationHint::CreateInsertion( |
| 5165 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5166 | resultComparison); |
| 5167 | } |
Ted Kremenek | e451eae | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 5168 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5169 | |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5170 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 9a152e2 | 2009-12-05 05:40:13 +0000 | [diff] [blame] | 5171 | QualType ResultTy = getLangOptions().CPlusPlus ? Context.BoolTy:Context.IntTy; |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5172 | |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 5173 | if (isRelational) { |
| 5174 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5175 | return ResultTy; |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 5176 | } else { |
Ted Kremenek | e2763b0 | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 5177 | // Check for comparisons of floating point operands using != and ==. |
Chris Lattner | 9a152e2 | 2009-12-05 05:40:13 +0000 | [diff] [blame] | 5178 | if (lType->isFloatingType() && rType->isFloatingType()) |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5179 | CheckFloatComparison(Loc,lex,rex); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5180 | |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 5181 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5182 | return ResultTy; |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 5183 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5184 | |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5185 | bool LHSIsNull = lex->isNullPointerConstant(Context, |
| 5186 | Expr::NPC_ValueDependentIsNull); |
| 5187 | bool RHSIsNull = rex->isNullPointerConstant(Context, |
| 5188 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5189 | |
Chris Lattner | b620c34 | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 5190 | // All of the following pointer related warnings are GCC extensions, except |
| 5191 | // when handling null pointer constants. One day, we can consider making them |
| 5192 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 808eb8f | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 5193 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | 3a0702e | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 5194 | QualType LCanPointeeTy = |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5195 | Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); |
Chris Lattner | 3a0702e | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 5196 | QualType RCanPointeeTy = |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5197 | Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5198 | |
Douglas Gregor | 5b07c7e | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 5199 | if (getLangOptions().CPlusPlus) { |
Eli Friedman | 16c20961 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 5200 | if (LCanPointeeTy == RCanPointeeTy) |
| 5201 | return ResultTy; |
Fariborz Jahanian | ffc420c | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 5202 | if (!isRelational && |
| 5203 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 5204 | // Valid unless comparison between non-null pointer and function pointer |
| 5205 | // This is a gcc extension compatibility comparison. |
| 5206 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 5207 | && !LHSIsNull && !RHSIsNull) { |
| 5208 | Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void) |
| 5209 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 5210 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
| 5211 | return ResultTy; |
| 5212 | } |
| 5213 | } |
Douglas Gregor | 5b07c7e | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 5214 | // C++ [expr.rel]p2: |
| 5215 | // [...] Pointer conversions (4.10) and qualification |
| 5216 | // conversions (4.4) are performed on pointer operands (or on |
| 5217 | // a pointer operand and a null pointer constant) to bring |
| 5218 | // them to their composite pointer type. [...] |
| 5219 | // |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5220 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
Douglas Gregor | 5b07c7e | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 5221 | // comparisons of pointers. |
Douglas Gregor | b842046 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 5222 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 5b07c7e | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 5223 | if (T.isNull()) { |
| 5224 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 5225 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 5226 | return QualType(); |
| 5227 | } |
| 5228 | |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5229 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 5230 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 5b07c7e | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 5231 | return ResultTy; |
| 5232 | } |
Eli Friedman | 16c20961 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 5233 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 5234 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 5235 | RCanPointeeTy.getUnqualifiedType())) { |
| 5236 | // Valid unless a relational comparison of function pointers |
| 5237 | if (isRelational && LCanPointeeTy->isFunctionType()) { |
| 5238 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 5239 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 5240 | } |
| 5241 | } else if (!isRelational && |
| 5242 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 5243 | // Valid unless comparison between non-null pointer and function pointer |
| 5244 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 5245 | && !LHSIsNull && !RHSIsNull) { |
| 5246 | Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void) |
| 5247 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 5248 | } |
| 5249 | } else { |
| 5250 | // Invalid |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 5251 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5252 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 75c1723 | 2007-06-13 21:41:08 +0000 | [diff] [blame] | 5253 | } |
Eli Friedman | 16c20961 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 5254 | if (LCanPointeeTy != RCanPointeeTy) |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5255 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5256 | return ResultTy; |
Steve Naroff | cdee44c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 5257 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5258 | |
Sebastian Redl | 576fd42 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 5259 | if (getLangOptions().CPlusPlus) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5260 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5261 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5262 | if (RHSIsNull && |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5263 | (lType->isPointerType() || |
| 5264 | (!isRelational && lType->isMemberPointerType()))) { |
Anders Carlsson | 83133d9 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 5265 | ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 576fd42 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 5266 | return ResultTy; |
| 5267 | } |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5268 | if (LHSIsNull && |
| 5269 | (rType->isPointerType() || |
| 5270 | (!isRelational && rType->isMemberPointerType()))) { |
Anders Carlsson | 83133d9 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 5271 | ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 576fd42 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 5272 | return ResultTy; |
| 5273 | } |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5274 | |
| 5275 | // Comparison of member pointers. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5276 | if (!isRelational && |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5277 | lType->isMemberPointerType() && rType->isMemberPointerType()) { |
| 5278 | // C++ [expr.eq]p2: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5279 | // In addition, pointers to members can be compared, or a pointer to |
| 5280 | // member and a null pointer constant. Pointer to member conversions |
| 5281 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 5282 | // them to a common type. If one operand is a null pointer constant, |
| 5283 | // the common type is the type of the other operand. Otherwise, the |
| 5284 | // common type is a pointer to member type similar (4.4) to the type |
| 5285 | // of one of the operands, with a cv-qualification signature (4.4) |
| 5286 | // that is the union of the cv-qualification signatures of the operand |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5287 | // types. |
| 5288 | QualType T = FindCompositePointerType(lex, rex); |
| 5289 | if (T.isNull()) { |
| 5290 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 5291 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 5292 | return QualType(); |
| 5293 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5294 | |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5295 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 5296 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5297 | return ResultTy; |
| 5298 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5299 | |
Douglas Gregor | b00b10e | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 5300 | // Comparison of nullptr_t with itself. |
Sebastian Redl | 576fd42 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 5301 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 5302 | return ResultTy; |
| 5303 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5304 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5305 | // Handle block pointer types. |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 5306 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5307 | QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); |
| 5308 | QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5309 | |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5310 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | a6638ca | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 5311 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 5312 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5313 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5314 | } |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5315 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5316 | return ResultTy; |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5317 | } |
Steve Naroff | e18f94c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 5318 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 5319 | if (!isRelational |
| 5320 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 5321 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | e18f94c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 5322 | if (!LHSIsNull && !RHSIsNull) { |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5323 | if (!((rType->isPointerType() && rType->getAs<PointerType>() |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 5324 | ->getPointeeType()->isVoidType()) |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5325 | || (lType->isPointerType() && lType->getAs<PointerType>() |
Mike Stump | 1b821b4 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 5326 | ->getPointeeType()->isVoidType()))) |
| 5327 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 5328 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | e18f94c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 5329 | } |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5330 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5331 | return ResultTy; |
Steve Naroff | e18f94c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 5332 | } |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5333 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5334 | if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { |
Steve Naroff | 1d4a9a3 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 5335 | if (lType->isPointerType() || rType->isPointerType()) { |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5336 | const PointerType *LPT = lType->getAs<PointerType>(); |
| 5337 | const PointerType *RPT = rType->getAs<PointerType>(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5338 | bool LPtrToVoid = LPT ? |
Steve Naroff | 753567f | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 5339 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5340 | bool RPtrToVoid = RPT ? |
Steve Naroff | 753567f | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 5341 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5342 | |
Steve Naroff | 753567f | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 5343 | if (!LPtrToVoid && !RPtrToVoid && |
| 5344 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | 377d1f8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 5345 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5346 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1d4a9a3 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 5347 | } |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5348 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5349 | return ResultTy; |
Steve Naroff | ea54d9e | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 5350 | } |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5351 | if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { |
Chris Lattner | f8344db | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 5352 | if (!Context.areComparableObjCPointerTypes(lType, rType)) |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5353 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 5354 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5355 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5356 | return ResultTy; |
Steve Naroff | b788d9b | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 5357 | } |
Fariborz Jahanian | 134cbef | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 5358 | } |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 5359 | if (lType->isAnyPointerType() && rType->isIntegerType()) { |
Chris Lattner | d99bd52 | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 5360 | unsigned DiagID = 0; |
| 5361 | if (RHSIsNull) { |
| 5362 | if (isRelational) |
| 5363 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 5364 | } else if (isRelational) |
| 5365 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 5366 | else |
| 5367 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5368 | |
Chris Lattner | d99bd52 | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 5369 | if (DiagID) { |
Chris Lattner | f8344db | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 5370 | Diag(Loc, DiagID) |
Chris Lattner | d466ea1 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 5371 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | f8344db | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 5372 | } |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5373 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5374 | return ResultTy; |
Steve Naroff | cdee44c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 5375 | } |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 5376 | if (lType->isIntegerType() && rType->isAnyPointerType()) { |
Chris Lattner | d99bd52 | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 5377 | unsigned DiagID = 0; |
| 5378 | if (LHSIsNull) { |
| 5379 | if (isRelational) |
| 5380 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 5381 | } else if (isRelational) |
| 5382 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 5383 | else |
| 5384 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5385 | |
Chris Lattner | d99bd52 | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 5386 | if (DiagID) { |
Chris Lattner | f8344db | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 5387 | Diag(Loc, DiagID) |
Chris Lattner | d466ea1 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 5388 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | f8344db | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 5389 | } |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5390 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5391 | return ResultTy; |
Steve Naroff | 043d45d | 2007-05-15 02:32:35 +0000 | [diff] [blame] | 5392 | } |
Steve Naroff | 4b19157 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 5393 | // Handle block pointers. |
Mike Stump | f70bcf7 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5394 | if (!isRelational && RHSIsNull |
| 5395 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5396 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5397 | return ResultTy; |
Steve Naroff | 4b19157 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 5398 | } |
Mike Stump | f70bcf7 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5399 | if (!isRelational && LHSIsNull |
| 5400 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Eli Friedman | 06ed2a5 | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 5401 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | ca63811b | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 5402 | return ResultTy; |
Steve Naroff | 4b19157 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 5403 | } |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5404 | return InvalidOperands(Loc, lex, rex); |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 5405 | } |
| 5406 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5407 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5408 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5409 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 5410 | /// types. |
| 5411 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5412 | SourceLocation Loc, |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5413 | bool isRelational) { |
| 5414 | // Check to make sure we're operating on vectors of the same type and width, |
| 5415 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5416 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5417 | if (vType.isNull()) |
| 5418 | return vType; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5419 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5420 | QualType lType = lex->getType(); |
| 5421 | QualType rType = rex->getType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5422 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5423 | // For non-floating point types, check for self-comparisons of the form |
| 5424 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 5425 | // often indicate logic errors in the program. |
| 5426 | if (!lType->isFloatingType()) { |
| 5427 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 5428 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 5429 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5430 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5431 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5432 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5433 | // Check for comparisons of floating point operands using != and ==. |
| 5434 | if (!isRelational && lType->isFloatingType()) { |
| 5435 | assert (rType->isFloatingType()); |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5436 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5437 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5438 | |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5439 | // Return the type for the comparison, which is the same as vector type for |
| 5440 | // integer vectors, or an integer type of identical size and number of |
| 5441 | // elements for floating point vectors. |
| 5442 | if (lType->isIntegerType()) |
| 5443 | return lType; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5444 | |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5445 | const VectorType *VTy = lType->getAs<VectorType>(); |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5446 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 5447 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5448 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | 5d68896 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 5449 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 5450 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 5451 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5452 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 5453 | "Unhandled vector element size in vector compare"); |
Nate Begeman | 191a6b1 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5454 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 5455 | } |
| 5456 | |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 5457 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5458 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Steve Naroff | 94a5aca | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 5459 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5460 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | b8ea4fb | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 5461 | |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 5462 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5463 | |
Steve Naroff | dbd9e89 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 5464 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | be4c4d1 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 5465 | return compType; |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5466 | return InvalidOperands(Loc, lex, rex); |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 5467 | } |
| 5468 | |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 5469 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5470 | Expr *&lex, Expr *&rex, SourceLocation Loc) { |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5471 | if (!Context.getLangOptions().CPlusPlus) { |
| 5472 | UsualUnaryConversions(lex); |
| 5473 | UsualUnaryConversions(rex); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5474 | |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5475 | if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType()) |
| 5476 | return InvalidOperands(Loc, lex, rex); |
Anders Carlsson | 35a99d9 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 5477 | |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5478 | return Context.IntTy; |
Anders Carlsson | 35a99d9 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 5479 | } |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5480 | |
| 5481 | // C++ [expr.log.and]p1 |
| 5482 | // C++ [expr.log.or]p1 |
| 5483 | // The operands are both implicitly converted to type bool (clause 4). |
| 5484 | StandardConversionSequence LHS; |
| 5485 | if (!IsStandardConversion(lex, Context.BoolTy, |
| 5486 | /*InOverloadResolution=*/false, LHS)) |
| 5487 | return InvalidOperands(Loc, lex, rex); |
Anders Carlsson | 35a99d9 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 5488 | |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5489 | if (PerformImplicitConversion(lex, Context.BoolTy, LHS, |
Douglas Gregor | 7c3bbdf | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 5490 | AA_Passing, /*IgnoreBaseAccess=*/false)) |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5491 | return InvalidOperands(Loc, lex, rex); |
| 5492 | |
| 5493 | StandardConversionSequence RHS; |
| 5494 | if (!IsStandardConversion(rex, Context.BoolTy, |
| 5495 | /*InOverloadResolution=*/false, RHS)) |
| 5496 | return InvalidOperands(Loc, lex, rex); |
| 5497 | |
| 5498 | if (PerformImplicitConversion(rex, Context.BoolTy, RHS, |
Douglas Gregor | 7c3bbdf | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 5499 | AA_Passing, /*IgnoreBaseAccess=*/false)) |
Anders Carlsson | 2e7bc11 | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 5500 | return InvalidOperands(Loc, lex, rex); |
| 5501 | |
| 5502 | // C++ [expr.log.and]p2 |
| 5503 | // C++ [expr.log.or]p2 |
| 5504 | // The result is a bool. |
| 5505 | return Context.BoolTy; |
Steve Naroff | ae4143e | 2007-04-26 20:39:23 +0000 | [diff] [blame] | 5506 | } |
| 5507 | |
Fariborz Jahanian | 8e1555c | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 5508 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 5509 | /// is a read-only property; return true if so. A readonly property expression |
| 5510 | /// depends on various declarations and thus must be treated specially. |
| 5511 | /// |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5512 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
Fariborz Jahanian | 8e1555c | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 5513 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 5514 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 5515 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 5516 | QualType BaseType = PropExpr->getBase()->getType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5517 | if (const ObjCObjectPointerType *OPT = |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5518 | BaseType->getAsObjCInterfacePointerType()) |
| 5519 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 5520 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 5521 | return true; |
Fariborz Jahanian | 8e1555c | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 5522 | } |
| 5523 | } |
| 5524 | return false; |
| 5525 | } |
| 5526 | |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5527 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 5528 | /// emit an error and return true. If so, return false. |
| 5529 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | c2223ab | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 5530 | SourceLocation OrigLoc = Loc; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5531 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | c2223ab | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 5532 | &Loc); |
Fariborz Jahanian | 8e1555c | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 5533 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 5534 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5535 | if (IsLV == Expr::MLV_Valid) |
| 5536 | return false; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5537 | |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5538 | unsigned Diag = 0; |
| 5539 | bool NeedType = false; |
| 5540 | switch (IsLV) { // C99 6.5.16p2 |
| 5541 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 5542 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5543 | case Expr::MLV_ArrayType: |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5544 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 5545 | NeedType = true; |
| 5546 | break; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5547 | case Expr::MLV_NotObjectType: |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5548 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 5549 | NeedType = true; |
| 5550 | break; |
Chris Lattner | 9b3bbe9 | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 5551 | case Expr::MLV_LValueCast: |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5552 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 5553 | break; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5554 | case Expr::MLV_InvalidExpression: |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5555 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 5556 | break; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5557 | case Expr::MLV_IncompleteType: |
| 5558 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | ed0cfbd | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 5559 | return S.RequireCompleteType(Loc, E->getType(), |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 5560 | PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) |
| 5561 | << E->getSourceRange()); |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5562 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5563 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 5564 | break; |
Steve Naroff | ba756cb | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 5565 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5566 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 5567 | break; |
Fariborz Jahanian | 8a1810f | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 5568 | case Expr::MLV_ReadonlyProperty: |
| 5569 | Diag = diag::error_readonly_property_assignment; |
| 5570 | break; |
Fariborz Jahanian | 5118c41 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 5571 | case Expr::MLV_NoSetterProperty: |
| 5572 | Diag = diag::error_nosetter_property_assignment; |
| 5573 | break; |
Fariborz Jahanian | e8d2890 | 2009-12-15 23:59:41 +0000 | [diff] [blame] | 5574 | case Expr::MLV_SubObjCPropertySetting: |
| 5575 | Diag = diag::error_no_subobject_property_setting; |
| 5576 | break; |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 5577 | } |
Steve Naroff | ad373bd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 5578 | |
Daniel Dunbar | c2223ab | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 5579 | SourceRange Assign; |
| 5580 | if (Loc != OrigLoc) |
| 5581 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5582 | if (NeedType) |
Daniel Dunbar | c2223ab | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 5583 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5584 | else |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5585 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5586 | return true; |
| 5587 | } |
| 5588 | |
| 5589 | |
| 5590 | |
| 5591 | // C99 6.5.16.1 |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5592 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 5593 | SourceLocation Loc, |
| 5594 | QualType CompoundType) { |
| 5595 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 5596 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | 30bd327 | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 5597 | return QualType(); |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5598 | |
| 5599 | QualType LHSType = LHS->getType(); |
| 5600 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5601 | |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5602 | AssignConvertType ConvTy; |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5603 | if (CompoundType.isNull()) { |
Chris Lattner | ea71438 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5604 | // Simple assignment "x = y". |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5605 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | 255c095 | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 5606 | // Special case of NSObject attributes on c-style pointer types. |
| 5607 | if (ConvTy == IncompatiblePointer && |
| 5608 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | 79d1215 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 5609 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | 255c095 | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 5610 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | 79d1215 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 5611 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | 255c095 | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 5612 | ConvTy = Compatible; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5613 | |
Chris Lattner | ea71438 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5614 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 5615 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 5616 | // instead of "x += 4". |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5617 | Expr *RHSCheck = RHS; |
Chris Lattner | ea71438 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5618 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 5619 | RHSCheck = ICE->getSubExpr(); |
| 5620 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 5621 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 5622 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5623 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | ea71438 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5624 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 36c39c9 | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 5625 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 5626 | // And there is a space or other character before the subexpr of the |
| 5627 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | ed9f14c | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 5628 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 5629 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | 29e812b | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5630 | Diag(Loc, diag::warn_not_compound_assign) |
| 5631 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 5632 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 36c39c9 | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 5633 | } |
Chris Lattner | ea71438 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5634 | } |
| 5635 | } else { |
| 5636 | // Compound assignment "x += y" |
Eli Friedman | b05c41e | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 5637 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | ea71438 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5638 | } |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5639 | |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5640 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
Douglas Gregor | 7c3bbdf | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 5641 | RHS, AA_Assigning)) |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5642 | return QualType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5643 | |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 5644 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 5645 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5646 | // it is the unqualified version of the type of the left operand. |
Steve Naroff | 98cf3e9 | 2007-06-06 18:38:38 +0000 | [diff] [blame] | 5647 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 5648 | // is converted to the type of the assignment expression (above). |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5649 | // C++ 5.17p1: the type of the assignment expression is that of its left |
Douglas Gregor | d2c2d17 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 5650 | // operand. |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5651 | return LHSType.getUnqualifiedType(); |
Steve Naroff | ae4143e | 2007-04-26 20:39:23 +0000 | [diff] [blame] | 5652 | } |
| 5653 | |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5654 | // C99 6.5.17 |
| 5655 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | f6e1e30 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 5656 | // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions. |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5657 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5658 | |
| 5659 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 5660 | // incomplete in C++). |
| 5661 | |
Chris Lattner | 326f757 | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5662 | return RHS->getType(); |
Steve Naroff | 95af013 | 2007-03-30 23:47:58 +0000 | [diff] [blame] | 5663 | } |
| 5664 | |
Steve Naroff | 7a5af78 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 5665 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 5666 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e10c2c3 | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5667 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 5668 | bool isInc) { |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5669 | if (Op->isTypeDependent()) |
| 5670 | return Context.DependentTy; |
| 5671 | |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5672 | QualType ResType = Op->getType(); |
| 5673 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Steve Naroff | d50c88e | 2007-04-05 21:15:20 +0000 | [diff] [blame] | 5674 | |
Sebastian Redl | e10c2c3 | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5675 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 5676 | // Decrement of bool is not allowed. |
| 5677 | if (!isInc) { |
| 5678 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 5679 | return QualType(); |
| 5680 | } |
| 5681 | // Increment of bool sets it to true, but is deprecated. |
| 5682 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 5683 | } else if (ResType->isRealType()) { |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5684 | // OK! |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 5685 | } else if (ResType->isAnyPointerType()) { |
| 5686 | QualType PointeeTy = ResType->getPointeeType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5687 | |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5688 | // C99 6.5.2.4p2, 6.5.6p2 |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5689 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | f6cd928 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5690 | if (getLangOptions().CPlusPlus) { |
| 5691 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 5692 | << Op->getSourceRange(); |
| 5693 | return QualType(); |
| 5694 | } |
| 5695 | |
| 5696 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5697 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5698 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | f6cd928 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5699 | if (getLangOptions().CPlusPlus) { |
| 5700 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 5701 | << Op->getType() << Op->getSourceRange(); |
| 5702 | return QualType(); |
| 5703 | } |
| 5704 | |
| 5705 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5706 | << ResType << Op->getSourceRange(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5707 | } else if (RequireCompleteType(OpLoc, PointeeTy, |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5708 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5709 | << Op->getSourceRange() |
Anders Carlsson | 029fc69 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5710 | << ResType)) |
Douglas Gregor | dd430f7 | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5711 | return QualType(); |
Fariborz Jahanian | ca75db7 | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 5712 | // Diagnose bad cases where we step over interface counts. |
| 5713 | else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 5714 | Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 5715 | << PointeeTy << Op->getSourceRange(); |
| 5716 | return QualType(); |
| 5717 | } |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5718 | } else if (ResType->isComplexType()) { |
| 5719 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 5720 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5721 | << ResType << Op->getSourceRange(); |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5722 | } else { |
| 5723 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Douglas Gregor | 906db8a | 2009-12-15 16:44:32 +0000 | [diff] [blame] | 5724 | << ResType << int(isInc) << Op->getSourceRange(); |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5725 | return QualType(); |
Steve Naroff | 46ba1eb | 2007-04-03 23:13:13 +0000 | [diff] [blame] | 5726 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5727 | // At this point, we know we have a real, complex or pointer type. |
Steve Naroff | 9e1e551 | 2007-08-23 21:37:33 +0000 | [diff] [blame] | 5728 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5729 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5730 | return QualType(); |
Chris Lattner | 6b0cf14 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5731 | return ResType; |
Steve Naroff | 26c8ea5 | 2007-03-21 21:08:52 +0000 | [diff] [blame] | 5732 | } |
| 5733 | |
Anders Carlsson | 806700f | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5734 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5735 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | b692ef4 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5736 | /// where the declaration is needed for type checking. We only need to |
| 5737 | /// handle cases when the expression references a function designator |
| 5738 | /// or is an lvalue. Here are some examples: |
| 5739 | /// - &(x) => x |
| 5740 | /// - &*****f => f for f a function designator. |
| 5741 | /// - &s.xx => s |
| 5742 | /// - &s.zz[1].yy -> s, if zz is an array |
| 5743 | /// - *(x + 1) -> x, if x is an array |
| 5744 | /// - &"123"[2] -> 0 |
| 5745 | /// - & __real__ x -> x |
Douglas Gregor | 5251f1b | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5746 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5747 | switch (E->getStmtClass()) { |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5748 | case Stmt::DeclRefExprClass: |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5749 | return cast<DeclRefExpr>(E)->getDecl(); |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5750 | case Stmt::MemberExprClass: |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5751 | // If this is an arrow operator, the address is an offset from |
| 5752 | // the base's value, so the object the base refers to is |
| 5753 | // irrelevant. |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5754 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | 48d5284 | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5755 | return 0; |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5756 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5757 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 806700f | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5758 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5759 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 5760 | // promotion of register arrays earlier. |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5761 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 5762 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 5763 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 5764 | return getPrimaryDecl(ICE->getSubExpr()); |
| 5765 | } |
| 5766 | return 0; |
Anders Carlsson | 806700f | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5767 | } |
Daniel Dunbar | b692ef4 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5768 | case Stmt::UnaryOperatorClass: { |
| 5769 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5770 | |
Daniel Dunbar | b692ef4 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5771 | switch(UO->getOpcode()) { |
Daniel Dunbar | b692ef4 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5772 | case UnaryOperator::Real: |
| 5773 | case UnaryOperator::Imag: |
| 5774 | case UnaryOperator::Extension: |
| 5775 | return getPrimaryDecl(UO->getSubExpr()); |
| 5776 | default: |
| 5777 | return 0; |
| 5778 | } |
| 5779 | } |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5780 | case Stmt::ParenExprClass: |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5781 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | 48d5284 | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5782 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5783 | // If the result of an implicit cast is an l-value, we care about |
| 5784 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | 24d5bfe | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5785 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5786 | default: |
| 5787 | return 0; |
| 5788 | } |
| 5789 | } |
| 5790 | |
| 5791 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5792 | /// designator or an lvalue designating an object. If it is an lvalue, the |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5793 | /// object cannot be declared with storage class register or be a bit field. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5794 | /// Note: The usual conversions are *not* applied to the operand of the & |
Steve Naroff | a78fe7e | 2007-05-16 19:47:19 +0000 | [diff] [blame] | 5795 | /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5796 | /// In C++, the operand might be an overloaded function name, in which case |
Douglas Gregor | cd695e5 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 5797 | /// we allow the '&' but retain the overloaded-function type. |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5798 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5799 | // Make sure to ignore parentheses in subsequent checks |
| 5800 | op = op->IgnoreParens(); |
| 5801 | |
Douglas Gregor | 19b8c4f | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 5802 | if (op->isTypeDependent()) |
| 5803 | return Context.DependentTy; |
| 5804 | |
Steve Naroff | 826e91a | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5805 | if (getLangOptions().C99) { |
| 5806 | // Implement C99-only parts of addressof rules. |
| 5807 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 5808 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 5809 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 5810 | // (assuming the deref expression is valid). |
| 5811 | return uOp->getSubExpr()->getType(); |
| 5812 | } |
| 5813 | // Technically, there should be a check for array subscript |
| 5814 | // expressions here, but the result of one is always an lvalue anyway. |
| 5815 | } |
Douglas Gregor | 5251f1b | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5816 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 6731544 | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 5817 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 17f345f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 5818 | |
Eli Friedman | ce7f900 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5819 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 5820 | // C99 6.5.3.2p1 |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5821 | // The operand must be either an l-value or a function designator |
Eli Friedman | ce7f900 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5822 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | 48d5284 | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5823 | // FIXME: emit more specific diag... |
Chris Lattner | f490e15 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5824 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 5825 | << op->getSourceRange(); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5826 | return QualType(); |
| 5827 | } |
Douglas Gregor | 71235ec | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 5828 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5829 | // The operand cannot be a bit-field |
| 5830 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5831 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 2eedc3a | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 5832 | return QualType(); |
Nate Begeman | a6b47a4 | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5833 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 5834 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 3a1e692 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5835 | // The operand cannot be an element of a vector |
Chris Lattner | 29e812b | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5836 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | a6b47a4 | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5837 | << "vector element" << op->getSourceRange(); |
Steve Naroff | b96e4ab6 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5838 | return QualType(); |
Fariborz Jahanian | 385db80 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 5839 | } else if (isa<ObjCPropertyRefExpr>(op)) { |
| 5840 | // cannot take address of a property expression. |
| 5841 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5842 | << "property expression" << op->getSourceRange(); |
| 5843 | return QualType(); |
Anders Carlsson | 3fa58d1 | 2009-09-14 23:15:26 +0000 | [diff] [blame] | 5844 | } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) { |
| 5845 | // FIXME: Can LHS ever be null here? |
Anders Carlsson | 01ccf99 | 2009-09-15 16:03:44 +0000 | [diff] [blame] | 5846 | if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull()) |
| 5847 | return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 5848 | } else if (isa<UnresolvedLookupExpr>(op)) { |
| 5849 | return Context.OverloadTy; |
Steve Naroff | b96e4ab6 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5850 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5851 | // We have an lvalue with a decl. Make sure the decl is not declared |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5852 | // with the register storage-class specifier. |
| 5853 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5854 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | 29e812b | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5855 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5856 | << "register variable" << op->getSourceRange(); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5857 | return QualType(); |
| 5858 | } |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 5859 | } else if (isa<FunctionTemplateDecl>(dcl)) { |
Douglas Gregor | cd695e5 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 5860 | return Context.OverloadTy; |
Anders Carlsson | 0b675f5 | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5861 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { |
Douglas Gregor | 9aa8b55 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 5862 | // Okay: we can take the address of a field. |
Sebastian Redl | 3d3f75a | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5863 | // Could be a pointer to member, though, if there is an explicit |
| 5864 | // scope qualifier for the class. |
Douglas Gregor | 4bd90e5 | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5865 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { |
Sebastian Redl | 3d3f75a | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5866 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | 0b675f5 | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5867 | if (Ctx && Ctx->isRecord()) { |
| 5868 | if (FD->getType()->isReferenceType()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5869 | Diag(OpLoc, |
Anders Carlsson | 0b675f5 | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5870 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
| 5871 | << FD->getDeclName() << FD->getType(); |
| 5872 | return QualType(); |
| 5873 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5874 | |
Sebastian Redl | 3d3f75a | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5875 | return Context.getMemberPointerType(op->getType(), |
| 5876 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | 0b675f5 | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5877 | } |
Sebastian Redl | 3d3f75a | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5878 | } |
Anders Carlsson | 5b53576 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5879 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 5773a1b | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 5880 | // Okay: we can take the address of a function. |
Sebastian Redl | 18f8ff6 | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5881 | // As above. |
Douglas Gregor | 4bd90e5 | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5882 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() && |
| 5883 | MD->isInstance()) |
Anders Carlsson | 5b53576 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5884 | return Context.getMemberPointerType(op->getType(), |
| 5885 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 5886 | } else if (!isa<FunctionDecl>(dcl)) |
Steve Naroff | f633d09 | 2007-04-25 19:01:39 +0000 | [diff] [blame] | 5887 | assert(0 && "Unknown/unexpected decl type"); |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5888 | } |
Sebastian Redl | 18f8ff6 | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5889 | |
Eli Friedman | ce7f900 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5890 | if (lval == Expr::LV_IncompleteVoidType) { |
| 5891 | // Taking the address of a void variable is technically illegal, but we |
| 5892 | // allow it in cases which are otherwise valid. |
| 5893 | // Example: "extern void x; void* y = &x;". |
| 5894 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 5895 | } |
| 5896 | |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5897 | // If the operand has type "type", the result has type "pointer to type". |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5898 | return Context.getPointerType(op->getType()); |
Steve Naroff | 4750051 | 2007-04-19 23:00:49 +0000 | [diff] [blame] | 5899 | } |
| 5900 | |
Chris Lattner | 6a2ed6f | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5901 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5902 | if (Op->isTypeDependent()) |
| 5903 | return Context.DependentTy; |
| 5904 | |
Chris Lattner | 6a2ed6f | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5905 | UsualUnaryConversions(Op); |
| 5906 | QualType Ty = Op->getType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5907 | |
Chris Lattner | 6a2ed6f | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5908 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 5909 | // incomplete type or void. It would be possible to warn about dereferencing |
| 5910 | // a void pointer, but it's completely well-defined, and such a warning is |
| 5911 | // unlikely to catch any mistakes. |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5912 | if (const PointerType *PT = Ty->getAs<PointerType>()) |
Steve Naroff | 826e91a | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5913 | return PT->getPointeeType(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5914 | |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5915 | if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>()) |
Fariborz Jahanian | f15d4b6 | 2009-09-03 00:43:07 +0000 | [diff] [blame] | 5916 | return OPT->getPointeeType(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5917 | |
Chris Lattner | 29e812b | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5918 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 6a2ed6f | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5919 | << Ty << Op->getSourceRange(); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5920 | return QualType(); |
Steve Naroff | 1926c83 | 2007-04-24 00:23:05 +0000 | [diff] [blame] | 5921 | } |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 5922 | |
| 5923 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 5924 | tok::TokenKind Kind) { |
| 5925 | BinaryOperator::Opcode Opc; |
| 5926 | switch (Kind) { |
| 5927 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 112a9766 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5928 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 5929 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 5930 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 5931 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 5932 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 5933 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 5934 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 5935 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 5936 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 5937 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 5938 | case tok::less: Opc = BinaryOperator::LT; break; |
| 5939 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 5940 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 5941 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 5942 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 5943 | case tok::amp: Opc = BinaryOperator::And; break; |
| 5944 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 5945 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 5946 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 5947 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 5948 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 5949 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 5950 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 5951 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 5952 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 5953 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 5954 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 5955 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 5956 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 5957 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 5958 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 5959 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 5960 | } |
| 5961 | return Opc; |
| 5962 | } |
| 5963 | |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5964 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 5965 | tok::TokenKind Kind) { |
| 5966 | UnaryOperator::Opcode Opc; |
| 5967 | switch (Kind) { |
| 5968 | default: assert(0 && "Unknown unary op!"); |
| 5969 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 5970 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 5971 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 5972 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 5973 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 5974 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 5975 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 5976 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5977 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 5978 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
Chris Lattner | d0f7651 | 2007-06-08 22:16:53 +0000 | [diff] [blame] | 5979 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 5980 | } |
| 5981 | return Opc; |
| 5982 | } |
| 5983 | |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5984 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 5985 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 5986 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5987 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 5988 | unsigned Op, |
| 5989 | Expr *lhs, Expr *rhs) { |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5990 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5991 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5992 | // The following two variables are used for compound assignment operators |
| 5993 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 5994 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5995 | |
| 5996 | switch (Opc) { |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5997 | case BinaryOperator::Assign: |
| 5998 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 5999 | break; |
Sebastian Redl | 112a9766 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 6000 | case BinaryOperator::PtrMemD: |
| 6001 | case BinaryOperator::PtrMemI: |
| 6002 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 6003 | Opc == BinaryOperator::PtrMemI); |
| 6004 | break; |
| 6005 | case BinaryOperator::Mul: |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6006 | case BinaryOperator::Div: |
| 6007 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 6008 | break; |
| 6009 | case BinaryOperator::Rem: |
| 6010 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 6011 | break; |
| 6012 | case BinaryOperator::Add: |
| 6013 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 6014 | break; |
| 6015 | case BinaryOperator::Sub: |
| 6016 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 6017 | break; |
Sebastian Redl | 112a9766 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 6018 | case BinaryOperator::Shl: |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6019 | case BinaryOperator::Shr: |
| 6020 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 6021 | break; |
| 6022 | case BinaryOperator::LE: |
| 6023 | case BinaryOperator::LT: |
| 6024 | case BinaryOperator::GE: |
| 6025 | case BinaryOperator::GT: |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6026 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6027 | break; |
| 6028 | case BinaryOperator::EQ: |
| 6029 | case BinaryOperator::NE: |
Douglas Gregor | 7a5bc76 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6030 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6031 | break; |
| 6032 | case BinaryOperator::And: |
| 6033 | case BinaryOperator::Xor: |
| 6034 | case BinaryOperator::Or: |
| 6035 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 6036 | break; |
| 6037 | case BinaryOperator::LAnd: |
| 6038 | case BinaryOperator::LOr: |
| 6039 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 6040 | break; |
| 6041 | case BinaryOperator::MulAssign: |
| 6042 | case BinaryOperator::DivAssign: |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6043 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 6044 | CompLHSTy = CompResultTy; |
| 6045 | if (!CompResultTy.isNull()) |
| 6046 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6047 | break; |
| 6048 | case BinaryOperator::RemAssign: |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6049 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 6050 | CompLHSTy = CompResultTy; |
| 6051 | if (!CompResultTy.isNull()) |
| 6052 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6053 | break; |
| 6054 | case BinaryOperator::AddAssign: |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6055 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 6056 | if (!CompResultTy.isNull()) |
| 6057 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6058 | break; |
| 6059 | case BinaryOperator::SubAssign: |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6060 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 6061 | if (!CompResultTy.isNull()) |
| 6062 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6063 | break; |
| 6064 | case BinaryOperator::ShlAssign: |
| 6065 | case BinaryOperator::ShrAssign: |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6066 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 6067 | CompLHSTy = CompResultTy; |
| 6068 | if (!CompResultTy.isNull()) |
| 6069 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6070 | break; |
| 6071 | case BinaryOperator::AndAssign: |
| 6072 | case BinaryOperator::XorAssign: |
| 6073 | case BinaryOperator::OrAssign: |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6074 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 6075 | CompLHSTy = CompResultTy; |
| 6076 | if (!CompResultTy.isNull()) |
| 6077 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6078 | break; |
| 6079 | case BinaryOperator::Comma: |
| 6080 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 6081 | break; |
| 6082 | } |
| 6083 | if (ResultTy.isNull()) |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 6084 | return ExprError(); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6085 | if (CompResultTy.isNull()) |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 6086 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 6087 | else |
| 6088 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6089 | CompLHSTy, CompResultTy, |
| 6090 | OpLoc)); |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6091 | } |
| 6092 | |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6093 | /// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps |
| 6094 | /// ParenRange in parentheses. |
Sebastian Redl | 4afb7c58 | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 6095 | static void SuggestParentheses(Sema &Self, SourceLocation Loc, |
| 6096 | const PartialDiagnostic &PD, |
| 6097 | SourceRange ParenRange) |
| 6098 | { |
| 6099 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); |
| 6100 | if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { |
| 6101 | // We can't display the parentheses, so just dig the |
| 6102 | // warning/error and return. |
| 6103 | Self.Diag(Loc, PD); |
| 6104 | return; |
| 6105 | } |
| 6106 | |
| 6107 | Self.Diag(Loc, PD) |
| 6108 | << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(") |
| 6109 | << CodeModificationHint::CreateInsertion(EndLoc, ")"); |
| 6110 | } |
| 6111 | |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6112 | /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison |
| 6113 | /// operators are mixed in a way that suggests that the programmer forgot that |
| 6114 | /// comparison operators have higher precedence. The most typical example of |
| 6115 | /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6116 | static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 6117 | SourceLocation OpLoc,Expr *lhs,Expr *rhs){ |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6118 | typedef BinaryOperator BinOp; |
| 6119 | BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1), |
| 6120 | rhsopc = static_cast<BinOp::Opcode>(-1); |
| 6121 | if (BinOp *BO = dyn_cast<BinOp>(lhs)) |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6122 | lhsopc = BO->getOpcode(); |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6123 | if (BinOp *BO = dyn_cast<BinOp>(rhs)) |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6124 | rhsopc = BO->getOpcode(); |
| 6125 | |
| 6126 | // Subs are not binary operators. |
| 6127 | if (lhsopc == -1 && rhsopc == -1) |
| 6128 | return; |
| 6129 | |
| 6130 | // Bitwise operations are sometimes used as eager logical ops. |
| 6131 | // Don't diagnose this. |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6132 | if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) && |
| 6133 | (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc))) |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6134 | return; |
| 6135 | |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6136 | if (BinOp::isComparisonOp(lhsopc)) |
Sebastian Redl | 4afb7c58 | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 6137 | SuggestParentheses(Self, OpLoc, |
| 6138 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6139 | << SourceRange(lhs->getLocStart(), OpLoc) |
| 6140 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc), |
| 6141 | SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd())); |
| 6142 | else if (BinOp::isComparisonOp(rhsopc)) |
Sebastian Redl | 4afb7c58 | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 6143 | SuggestParentheses(Self, OpLoc, |
| 6144 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6145 | << SourceRange(OpLoc, rhs->getLocEnd()) |
| 6146 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc), |
| 6147 | SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart())); |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6148 | } |
| 6149 | |
| 6150 | /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky |
| 6151 | /// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3". |
| 6152 | /// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does. |
| 6153 | static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 6154 | SourceLocation OpLoc, Expr *lhs, Expr *rhs){ |
Sebastian Redl | 4461507 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 6155 | if (BinaryOperator::isBitwiseOp(Opc)) |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6156 | DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs); |
| 6157 | } |
| 6158 | |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 6159 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 6160 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 6161 | tok::TokenKind Kind, |
| 6162 | ExprArg LHS, ExprArg RHS) { |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 6163 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | b781bcd | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 6164 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 6165 | |
Steve Naroff | 83895f7 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 6166 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 6167 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 6168 | |
Sebastian Redl | 4302824 | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 6169 | // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" |
| 6170 | DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs); |
| 6171 | |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6172 | return BuildBinOp(S, TokLoc, Opc, lhs, rhs); |
| 6173 | } |
| 6174 | |
| 6175 | Action::OwningExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, |
| 6176 | BinaryOperator::Opcode Opc, |
| 6177 | Expr *lhs, Expr *rhs) { |
Douglas Gregor | 1baf54e | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 6178 | if (getLangOptions().CPlusPlus && |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6179 | (lhs->getType()->isOverloadableType() || |
Douglas Gregor | 1baf54e | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 6180 | rhs->getType()->isOverloadableType())) { |
| 6181 | // Find all of the overloaded operators visible from this |
| 6182 | // point. We perform both an operator-name lookup from the local |
| 6183 | // scope and an argument-dependent lookup based on the types of |
| 6184 | // the arguments. |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 6185 | FunctionSet Functions; |
Douglas Gregor | 1baf54e | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 6186 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 6187 | if (OverOp != OO_None) { |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6188 | if (S) |
| 6189 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 6190 | Functions); |
Douglas Gregor | 1baf54e | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 6191 | Expr *Args[2] = { lhs, rhs }; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6192 | DeclarationName OpName |
Douglas Gregor | 1baf54e | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 6193 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | c057f42 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 6194 | ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions); |
Douglas Gregor | a11693b | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 6195 | } |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6196 | |
Douglas Gregor | 1baf54e | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 6197 | // Build the (potentially-overloaded, potentially-dependent) |
| 6198 | // binary operation. |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6199 | return CreateOverloadedBinOp(OpLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b5d4935 | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 6200 | } |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6201 | |
Douglas Gregor | 7d5fc7e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 6202 | // Build a built-in binary operation. |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6203 | return CreateBuiltinBinOp(OpLoc, Opc, lhs, rhs); |
Steve Naroff | 218bc2b | 2007-05-04 21:54:46 +0000 | [diff] [blame] | 6204 | } |
| 6205 | |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6206 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6207 | unsigned OpcIn, |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6208 | ExprArg InputArg) { |
| 6209 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | d08452f | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 6210 | |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 6211 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6212 | Expr *Input = (Expr *)InputArg.get(); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6213 | QualType resultType; |
| 6214 | switch (Opc) { |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6215 | case UnaryOperator::OffsetOf: |
| 6216 | assert(false && "Invalid unary operator"); |
| 6217 | break; |
| 6218 | |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6219 | case UnaryOperator::PreInc: |
| 6220 | case UnaryOperator::PreDec: |
Eli Friedman | 6aea575 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 6221 | case UnaryOperator::PostInc: |
| 6222 | case UnaryOperator::PostDec: |
Sebastian Redl | e10c2c3 | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 6223 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
Eli Friedman | 6aea575 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 6224 | Opc == UnaryOperator::PreInc || |
| 6225 | Opc == UnaryOperator::PostInc); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6226 | break; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6227 | case UnaryOperator::AddrOf: |
Chris Lattner | 8655428 | 2007-06-08 22:32:33 +0000 | [diff] [blame] | 6228 | resultType = CheckAddressOfOperand(Input, OpLoc); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6229 | break; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6230 | case UnaryOperator::Deref: |
Steve Naroff | b723564 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 6231 | DefaultFunctionArrayConversion(Input); |
Chris Lattner | 8655428 | 2007-06-08 22:32:33 +0000 | [diff] [blame] | 6232 | resultType = CheckIndirectionOperand(Input, OpLoc); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6233 | break; |
| 6234 | case UnaryOperator::Plus: |
| 6235 | case UnaryOperator::Minus: |
Steve Naroff | 3109001 | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 6236 | UsualUnaryConversions(Input); |
| 6237 | resultType = Input->getType(); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6238 | if (resultType->isDependentType()) |
| 6239 | break; |
Douglas Gregor | d08452f | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 6240 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 6241 | break; |
| 6242 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 6243 | resultType->isEnumeralType()) |
| 6244 | break; |
| 6245 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 6246 | Opc == UnaryOperator::Plus && |
| 6247 | resultType->isPointerType()) |
| 6248 | break; |
| 6249 | |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 6250 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 6251 | << resultType << Input->getSourceRange()); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6252 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | 3109001 | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 6253 | UsualUnaryConversions(Input); |
| 6254 | resultType = Input->getType(); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6255 | if (resultType->isDependentType()) |
| 6256 | break; |
Chris Lattner | 0d70761 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 6257 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 6258 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 6259 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | 29e812b | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 6260 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | 1e5665e | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 6261 | << resultType << Input->getSourceRange(); |
Chris Lattner | 0d70761 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 6262 | else if (!resultType->isIntegerType()) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 6263 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 6264 | << resultType << Input->getSourceRange()); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6265 | break; |
| 6266 | case UnaryOperator::LNot: // logical negation |
Steve Naroff | 71b59a9 | 2007-06-04 22:22:31 +0000 | [diff] [blame] | 6267 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | 3109001 | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 6268 | DefaultFunctionArrayConversion(Input); |
| 6269 | resultType = Input->getType(); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6270 | if (resultType->isDependentType()) |
| 6271 | break; |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6272 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 6273 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 6274 | << resultType << Input->getSourceRange()); |
Chris Lattner | be31ed8 | 2007-06-02 19:11:33 +0000 | [diff] [blame] | 6275 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 6276 | // In C++, it's bool. C++ 5.3.1p8 |
| 6277 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6278 | break; |
Chris Lattner | 30b5dd0 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 6279 | case UnaryOperator::Real: |
Chris Lattner | 30b5dd0 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 6280 | case UnaryOperator::Imag: |
Chris Lattner | 709322b | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 6281 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | 30b5dd0 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 6282 | break; |
Chris Lattner | 8655428 | 2007-06-08 22:32:33 +0000 | [diff] [blame] | 6283 | case UnaryOperator::Extension: |
Chris Lattner | 8655428 | 2007-06-08 22:32:33 +0000 | [diff] [blame] | 6284 | resultType = Input->getType(); |
Steve Naroff | 043d45d | 2007-05-15 02:32:35 +0000 | [diff] [blame] | 6285 | break; |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6286 | } |
| 6287 | if (resultType.isNull()) |
Sebastian Redl | c215cfc | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 6288 | return ExprError(); |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6289 | |
| 6290 | InputArg.release(); |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 6291 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Steve Naroff | 35d8515 | 2007-05-07 00:24:15 +0000 | [diff] [blame] | 6292 | } |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 6293 | |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6294 | Action::OwningExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, |
| 6295 | UnaryOperator::Opcode Opc, |
| 6296 | ExprArg input) { |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6297 | Expr *Input = (Expr*)input.get(); |
Anders Carlsson | 461a2c0 | 2009-11-14 21:26:41 +0000 | [diff] [blame] | 6298 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType() && |
| 6299 | Opc != UnaryOperator::Extension) { |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6300 | // Find all of the overloaded operators visible from this |
| 6301 | // point. We perform both an operator-name lookup from the local |
| 6302 | // scope and an argument-dependent lookup based on the types of |
| 6303 | // the arguments. |
| 6304 | FunctionSet Functions; |
| 6305 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 6306 | if (OverOp != OO_None) { |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6307 | if (S) |
| 6308 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 6309 | Functions); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6310 | DeclarationName OpName |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6311 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | c057f42 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 6312 | ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions); |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6313 | } |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6314 | |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6315 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 6316 | } |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6317 | |
Douglas Gregor | 084d855 | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 6318 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 6319 | } |
| 6320 | |
Douglas Gregor | 5287f09 | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 6321 | // Unary Operators. 'Tok' is the token for the operator. |
| 6322 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 6323 | tok::TokenKind Op, ExprArg input) { |
| 6324 | return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), move(input)); |
| 6325 | } |
| 6326 | |
Steve Naroff | 66356bd | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 6327 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6328 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 6329 | SourceLocation LabLoc, |
| 6330 | IdentifierInfo *LabelII) { |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 6331 | // Look up the record for this label identifier. |
Chris Lattner | 3318e86 | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 6332 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6333 | |
Daniel Dunbar | 88402ce | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 6334 | // If we haven't seen this label yet, create a forward reference. It |
| 6335 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | 846b1ec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 6336 | if (LabelDecl == 0) |
Steve Naroff | f6009ed | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 6337 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6338 | |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 6339 | // Create the AST node. The address of a label always has type 'void*'. |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6340 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 6341 | Context.getPointerType(Context.VoidTy))); |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 6342 | } |
| 6343 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6344 | Sema::OwningExprResult |
| 6345 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 6346 | SourceLocation RPLoc) { // "({..})" |
| 6347 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 6348 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 6349 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 6350 | |
Eli Friedman | 52cc016 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 6351 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | a69b076 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 6352 | if (isFileScope) |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6353 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | 52cc016 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 6354 | |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 6355 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 6356 | // example, it is not possible to goto into a stmt expression apparently. |
| 6357 | // More semantic analysis is needed. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6358 | |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 6359 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 6360 | // as the type of the stmtexpr. |
| 6361 | QualType Ty = Context.VoidTy; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6362 | |
Chris Lattner | 944d306 | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 6363 | if (!Compound->body_empty()) { |
| 6364 | Stmt *LastStmt = Compound->body_back(); |
| 6365 | // If LastStmt is a label, skip down through into the body. |
| 6366 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 6367 | LastStmt = Label->getSubStmt(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6368 | |
Chris Lattner | 944d306 | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 6369 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 6370 | Ty = LastExpr->getType(); |
Chris Lattner | 944d306 | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 6371 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6372 | |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6373 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 6374 | // expressions are not lvalues. |
| 6375 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6376 | substmt.release(); |
| 6377 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | 366727f | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 6378 | } |
Steve Naroff | 7886467 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 6379 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6380 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 6381 | SourceLocation BuiltinLoc, |
| 6382 | SourceLocation TypeLoc, |
| 6383 | TypeTy *argty, |
| 6384 | OffsetOfComponent *CompPtr, |
| 6385 | unsigned NumComponents, |
| 6386 | SourceLocation RPLoc) { |
| 6387 | // FIXME: This function leaks all expressions in the offset components on |
| 6388 | // error. |
Argyrios Kyrtzidis | c7148c9 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 6389 | // FIXME: Preserve type source info. |
| 6390 | QualType ArgTy = GetTypeFromParser(argty); |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 6391 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6392 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6393 | bool Dependent = ArgTy->isDependentType(); |
| 6394 | |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 6395 | // We must have at least one component that refers to the type, and the first |
| 6396 | // one is known to be a field designator. Verify that the ArgTy represents |
| 6397 | // a struct/union/class. |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6398 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6399 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6400 | |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6401 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 6402 | // with an incomplete type would be illegal. |
Douglas Gregor | 2689746 | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 6403 | |
Eli Friedman | 988a16b | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 6404 | // Otherwise, create a null pointer as the base, and iteratively process |
| 6405 | // the offsetof designators. |
| 6406 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 6407 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6408 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 988a16b | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 6409 | ArgTy, SourceLocation()); |
Eli Friedman | 16c88df | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 6410 | |
Chris Lattner | 78502cf | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 6411 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 6412 | // GCC extension, diagnose them. |
Eli Friedman | 988a16b | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 6413 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 6414 | // a system header! |
Chris Lattner | 78502cf | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 6415 | if (NumComponents != 1) |
Chris Lattner | f490e15 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 6416 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 6417 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6418 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6419 | if (!Dependent) { |
Eli Friedman | 8469bc7 | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 6420 | bool DidWarnAboutNonPOD = false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6421 | |
John McCall | 9eff4e6 | 2009-11-04 03:03:43 +0000 | [diff] [blame] | 6422 | if (RequireCompleteType(TypeLoc, Res->getType(), |
| 6423 | diag::err_offsetof_incomplete_type)) |
| 6424 | return ExprError(); |
| 6425 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6426 | // FIXME: Dependent case loses a lot of information here. And probably |
| 6427 | // leaks like a sieve. |
| 6428 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 6429 | const OffsetOfComponent &OC = CompPtr[i]; |
| 6430 | if (OC.isBrackets) { |
| 6431 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 6432 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 6433 | if (!AT) { |
| 6434 | Res->Destroy(Context); |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6435 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 6436 | << Res->getType()); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6437 | } |
| 6438 | |
| 6439 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 6440 | |
Eli Friedman | 988a16b | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 6441 | // Promote the array so it looks more like a normal array subscript |
| 6442 | // expression. |
| 6443 | DefaultFunctionArrayConversion(Res); |
| 6444 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6445 | // C99 6.5.2.1p1 |
| 6446 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6447 | // FIXME: Leaks Res |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6448 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6449 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 003af24 | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 6450 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6451 | << Idx->getSourceRange()); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6452 | |
| 6453 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 6454 | OC.LocEnd); |
| 6455 | continue; |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 6456 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6457 | |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 6458 | const RecordType *RC = Res->getType()->getAs<RecordType>(); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6459 | if (!RC) { |
| 6460 | Res->Destroy(Context); |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6461 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 6462 | << Res->getType()); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6463 | } |
Chris Lattner | 98dbf0a | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 6464 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6465 | // Get the decl corresponding to this. |
| 6466 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 2bbb86b | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 6467 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Douglas Gregor | da8cdbc | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 6468 | if (!CRD->isPOD() && !DidWarnAboutNonPOD && |
| 6469 | DiagRuntimeBehavior(BuiltinLoc, |
| 6470 | PDiag(diag::warn_offsetof_non_pod_type) |
| 6471 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 6472 | << Res->getType())) |
| 6473 | DidWarnAboutNonPOD = true; |
Anders Carlsson | 2bbb86b | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 6474 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6475 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 6476 | LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); |
| 6477 | LookupQualifiedName(R, RD); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 6478 | |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 6479 | FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6480 | // FIXME: Leaks Res |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6481 | if (!MemberDecl) |
Douglas Gregor | e40876a | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 6482 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 6483 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6484 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6485 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 6486 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | 64fc3c6 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 6487 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | 3cbc859 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 6488 | Res = BuildAnonymousStructUnionMemberReference( |
John McCall | 7e1d6d7 | 2009-11-11 03:23:23 +0000 | [diff] [blame] | 6489 | OC.LocEnd, MemberDecl, Res, OC.LocEnd).takeAs<Expr>(); |
Eli Friedman | 64fc3c6 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 6490 | } else { |
Eli Friedman | 78cde14 | 2009-12-04 07:18:51 +0000 | [diff] [blame] | 6491 | PerformObjectMemberConversion(Res, MemberDecl); |
Eli Friedman | 64fc3c6 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 6492 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 6493 | // doesn't matter here. |
| 6494 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 6495 | MemberDecl->getType().getNonReferenceType()); |
| 6496 | } |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6497 | } |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 6498 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6499 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6500 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 6501 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | f17bd42 | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 6502 | } |
| 6503 | |
| 6504 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6505 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 6506 | TypeTy *arg1,TypeTy *arg2, |
| 6507 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | c7148c9 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 6508 | // FIXME: Preserve type source info. |
| 6509 | QualType argT1 = GetTypeFromParser(arg1); |
| 6510 | QualType argT2 = GetTypeFromParser(arg2); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6511 | |
Steve Naroff | 7886467 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 6512 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6513 | |
Douglas Gregor | f907cbf | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 6514 | if (getLangOptions().CPlusPlus) { |
| 6515 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 6516 | << SourceRange(BuiltinLoc, RPLoc); |
| 6517 | return ExprError(); |
| 6518 | } |
| 6519 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6520 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 6521 | argT1, argT2, RPLoc)); |
Steve Naroff | 7886467 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 6522 | } |
| 6523 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6524 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 6525 | ExprArg cond, |
| 6526 | ExprArg expr1, ExprArg expr2, |
| 6527 | SourceLocation RPLoc) { |
| 6528 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 6529 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 6530 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6531 | |
Steve Naroff | 9efdabc | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 6532 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 6533 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6534 | QualType resType; |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6535 | bool ValueDependent = false; |
Douglas Gregor | 0df9112 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 6536 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6537 | resType = Context.DependentTy; |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6538 | ValueDependent = true; |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6539 | } else { |
| 6540 | // The conditional expression is required to be a constant expression. |
| 6541 | llvm::APSInt condEval(32); |
| 6542 | SourceLocation ExpLoc; |
| 6543 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6544 | return ExprError(Diag(ExpLoc, |
| 6545 | diag::err_typecheck_choose_expr_requires_constant) |
| 6546 | << CondExpr->getSourceRange()); |
Steve Naroff | 9efdabc | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 6547 | |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6548 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 6549 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6550 | ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent() |
| 6551 | : RHSExpr->isValueDependent(); |
Sebastian Redl | 8d2ccae | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 6552 | } |
| 6553 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6554 | cond.release(); expr1.release(); expr2.release(); |
| 6555 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
Douglas Gregor | 56751b5 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6556 | resType, RPLoc, |
| 6557 | resType->isDependentType(), |
| 6558 | ValueDependent)); |
Steve Naroff | 9efdabc | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 6559 | } |
| 6560 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6561 | //===----------------------------------------------------------------------===// |
| 6562 | // Clang Extensions. |
| 6563 | //===----------------------------------------------------------------------===// |
| 6564 | |
| 6565 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6566 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6567 | // Analyze block parameters. |
| 6568 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6569 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6570 | // Add BSI to CurBlock. |
| 6571 | BSI->PrevBlockInfo = CurBlock; |
| 6572 | CurBlock = BSI; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6573 | |
Fariborz Jahanian | 3fd7310 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6574 | BSI->ReturnType = QualType(); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6575 | BSI->TheScope = BlockScope; |
Mike Stump | a670332 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 6576 | BSI->hasBlockDeclRefExprs = false; |
Daniel Dunbar | b9a6861 | 2009-07-29 01:59:17 +0000 | [diff] [blame] | 6577 | BSI->hasPrototype = false; |
Chris Lattner | 45542ea | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6578 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 6579 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6580 | |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6581 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Ted Kremenek | 54ad1ab | 2009-12-07 22:01:30 +0000 | [diff] [blame] | 6582 | CurContext->addDecl(BSI->TheDecl); |
Douglas Gregor | 91f8421 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 6583 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6584 | } |
| 6585 | |
Mike Stump | 82f071f | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 6586 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | f70bcf7 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 6587 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 82f071f | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 6588 | |
| 6589 | if (ParamInfo.getNumTypeObjects() == 0 |
| 6590 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 758a869 | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 6591 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 82f071f | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 6592 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 6593 | |
Mike Stump | d456c48 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 6594 | if (T->isArrayType()) { |
| 6595 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 6596 | diag::err_block_returns_array); |
| 6597 | return; |
| 6598 | } |
| 6599 | |
Mike Stump | 82f071f | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 6600 | // The parameter list is optional, if there was none, assume (). |
| 6601 | if (!T->isFunctionType()) |
| 6602 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 6603 | |
| 6604 | CurBlock->hasPrototype = true; |
| 6605 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 6607b21 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6606 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 6607 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6608 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 6802ed9 | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 6609 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 6607b21 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6610 | // FIXME: remove the attribute. |
| 6611 | } |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 6612 | QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6613 | |
Chris Lattner | 6de0508 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6614 | // Do not allow returning a objc interface by-value. |
| 6615 | if (RetTy->isObjCInterfaceType()) { |
| 6616 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 6617 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 6618 | return; |
| 6619 | } |
Mike Stump | 82f071f | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 6620 | return; |
| 6621 | } |
| 6622 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6623 | // Analyze arguments to block. |
| 6624 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 6625 | "Not a function declarator!"); |
| 6626 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6627 | |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6628 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 6629 | CurBlock->isVariadic = true; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6630 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6631 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 6632 | // no arguments, not a function that takes a single void argument. |
| 6633 | if (FTI.hasPrototype && |
| 6634 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | 83f095c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 6635 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 6636 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6637 | // empty arg list, don't push any params. |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6638 | CurBlock->isVariadic = false; |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6639 | } else if (FTI.hasPrototype) { |
| 6640 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | 83f095c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 6641 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6642 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6643 | } |
Jay Foad | 7d0479f | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 6644 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 6de0508 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6645 | CurBlock->Params.size()); |
Fariborz Jahanian | 960910a | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 6646 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 758a869 | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 6647 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6648 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 6649 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 6650 | // If this has an identifier, add it to the scope stack. |
| 6651 | if ((*AI)->getIdentifier()) |
| 6652 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 6de0508 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6653 | |
Fariborz Jahanian | 6607b21 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6654 | // Check for a valid sentinel attribute on this block. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6655 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 6656 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6657 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 6802ed9 | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 6658 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 6607b21 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6659 | // FIXME: remove the attribute. |
| 6660 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6661 | |
Chris Lattner | 6de0508 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6662 | // Analyze the return type. |
| 6663 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 6664 | QualType RetTy = T->getAs<FunctionType>()->getResultType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6665 | |
Chris Lattner | 6de0508 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6666 | // Do not allow returning a objc interface by-value. |
| 6667 | if (RetTy->isObjCInterfaceType()) { |
| 6668 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 6669 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 6670 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 3fd7310 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6671 | CurBlock->ReturnType = RetTy; |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6672 | } |
| 6673 | |
| 6674 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 6675 | /// is invoked to pop the information about the block from the action impl. |
| 6676 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 6677 | // Ensure that CurBlock is deleted. |
| 6678 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6679 | |
Chris Lattner | 45542ea | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6680 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 6681 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6682 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 41b8694 | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 6683 | PopDeclContext(); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6684 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6685 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6686 | } |
| 6687 | |
| 6688 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 6689 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6690 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 6691 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9eac931 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 6692 | // If blocks are disabled, emit an error. |
| 6693 | if (!LangOpts.Blocks) |
| 6694 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6695 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6696 | // Ensure that CurBlock is deleted. |
| 6697 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6698 | |
Steve Naroff | 1d95e5a | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6699 | PopDeclContext(); |
| 6700 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6701 | // Pop off CurBlock, handle nested blocks. |
| 6702 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6703 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6704 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 3fd7310 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6705 | if (!BSI->ReturnType.isNull()) |
| 6706 | RetTy = BSI->ReturnType; |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6707 | |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6708 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 6709 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 6710 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6711 | |
Mike Stump | 3bf1ab4 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6712 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6713 | QualType BlockTy; |
| 6714 | if (!BSI->hasPrototype) |
Mike Stump | 3bf1ab4 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6715 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, |
| 6716 | NoReturn); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6717 | else |
Jay Foad | 7d0479f | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 6718 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Mike Stump | 3bf1ab4 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6719 | BSI->isVariadic, 0, false, false, 0, 0, |
| 6720 | NoReturn); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6721 | |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6722 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6723 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6724 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6725 | |
Chris Lattner | 45542ea | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6726 | // If needed, diagnose invalid gotos and switches in the block. |
| 6727 | if (CurFunctionNeedsScopeChecking) |
| 6728 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 6729 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6730 | |
Anders Carlsson | b781bcd | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 6731 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Mike Stump | 3bf1ab4 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6732 | CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6733 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 6734 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | c540d66 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6735 | } |
| 6736 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6737 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 6738 | ExprArg expr, TypeTy *type, |
| 6739 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | c7148c9 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 6740 | QualType T = GetTypeFromParser(type); |
Chris Lattner | 56382aa | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6741 | Expr *E = static_cast<Expr*>(expr.get()); |
| 6742 | Expr *OrigExpr = E; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6743 | |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6744 | InitBuiltinVaListType(); |
Eli Friedman | 121ba0c | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6745 | |
| 6746 | // Get the va_list type |
| 6747 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | e2cad65 | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6748 | if (VaListType->isArrayType()) { |
| 6749 | // Deal with implicit array decay; for example, on x86-64, |
| 6750 | // va_list is an array, but it's supposed to decay to |
| 6751 | // a pointer for va_arg. |
Eli Friedman | 121ba0c | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6752 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | e2cad65 | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6753 | // Make sure the input expression also decays appropriately. |
| 6754 | UsualUnaryConversions(E); |
| 6755 | } else { |
| 6756 | // Otherwise, the va_list argument must be an l-value because |
| 6757 | // it is modified by va_arg. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6758 | if (!E->isTypeDependent() && |
Douglas Gregor | ad3150c | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6759 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | e2cad65 | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6760 | return ExprError(); |
| 6761 | } |
Eli Friedman | 121ba0c | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6762 | |
Douglas Gregor | ad3150c | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6763 | if (!E->isTypeDependent() && |
| 6764 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6765 | return ExprError(Diag(E->getLocStart(), |
| 6766 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 56382aa | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6767 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 3f5cd77 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 6768 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6769 | |
Eli Friedman | ba961a9 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6770 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6771 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6772 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6773 | expr.release(); |
| 6774 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 6775 | RPLoc)); |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6776 | } |
| 6777 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6778 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 3be4b12 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6779 | // The type of __null will be int or long, depending on the size of |
| 6780 | // pointers on the target. |
| 6781 | QualType Ty; |
| 6782 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 6783 | Ty = Context.IntTy; |
| 6784 | else |
| 6785 | Ty = Context.LongTy; |
| 6786 | |
Sebastian Redl | 6d4256c | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6787 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 3be4b12 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6788 | } |
| 6789 | |
Anders Carlsson | ace5d07 | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6790 | static void |
| 6791 | MakeObjCStringLiteralCodeModificationHint(Sema& SemaRef, |
| 6792 | QualType DstType, |
| 6793 | Expr *SrcExpr, |
| 6794 | CodeModificationHint &Hint) { |
| 6795 | if (!SemaRef.getLangOptions().ObjC1) |
| 6796 | return; |
| 6797 | |
| 6798 | const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); |
| 6799 | if (!PT) |
| 6800 | return; |
| 6801 | |
| 6802 | // Check if the destination is of type 'id'. |
| 6803 | if (!PT->isObjCIdType()) { |
| 6804 | // Check if the destination is the 'NSString' interface. |
| 6805 | const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); |
| 6806 | if (!ID || !ID->getIdentifier()->isStr("NSString")) |
| 6807 | return; |
| 6808 | } |
| 6809 | |
| 6810 | // Strip off any parens and casts. |
| 6811 | StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr->IgnoreParenCasts()); |
| 6812 | if (!SL || SL->isWide()) |
| 6813 | return; |
| 6814 | |
| 6815 | Hint = CodeModificationHint::CreateInsertion(SL->getLocStart(), "@"); |
| 6816 | } |
| 6817 | |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6818 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 6819 | SourceLocation Loc, |
| 6820 | QualType DstType, QualType SrcType, |
Douglas Gregor | 7c3bbdf | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 6821 | Expr *SrcExpr, AssignmentAction Action) { |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6822 | // Decode the result (notice that AST's are still created for extensions). |
| 6823 | bool isInvalid = false; |
| 6824 | unsigned DiagKind; |
Anders Carlsson | ace5d07 | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6825 | CodeModificationHint Hint; |
| 6826 | |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6827 | switch (ConvTy) { |
| 6828 | default: assert(0 && "Unknown conversion type"); |
| 6829 | case Compatible: return false; |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6830 | case PointerToInt: |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6831 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 6832 | break; |
Chris Lattner | 940cfeb | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6833 | case IntToPointer: |
| 6834 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 6835 | break; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6836 | case IncompatiblePointer: |
Anders Carlsson | ace5d07 | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6837 | MakeObjCStringLiteralCodeModificationHint(*this, DstType, SrcExpr, Hint); |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6838 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 6839 | break; |
Eli Friedman | 80160bd | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 6840 | case IncompatiblePointerSign: |
| 6841 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 6842 | break; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6843 | case FunctionVoidPointer: |
| 6844 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 6845 | break; |
| 6846 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | aa1e21d | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 6847 | // If the qualifiers lost were because we were applying the |
| 6848 | // (deprecated) C++ conversion from a string literal to a char* |
| 6849 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 6850 | // Ideally, this check would be performed in |
| 6851 | // CheckPointerTypesForAssignment. However, that would require a |
| 6852 | // bit of refactoring (so that the second argument is an |
| 6853 | // expression, rather than a type), which should be done as part |
| 6854 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 6855 | // C++ semantics. |
| 6856 | if (getLangOptions().CPlusPlus && |
| 6857 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 6858 | return false; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6859 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 6860 | break; |
Alexis Hunt | 6f3de50 | 2009-11-08 07:46:34 +0000 | [diff] [blame] | 6861 | case IncompatibleNestedPointerQualifiers: |
Fariborz Jahanian | b98dade | 2009-11-09 22:16:37 +0000 | [diff] [blame] | 6862 | DiagKind = diag::ext_nested_pointer_qualifier_mismatch; |
Fariborz Jahanian | d7aa9d8 | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 6863 | break; |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6864 | case IntToBlockPointer: |
| 6865 | DiagKind = diag::err_int_to_block_pointer; |
| 6866 | break; |
| 6867 | case IncompatibleBlockPointer: |
Mike Stump | d79b5a8 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 6868 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 081c742 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6869 | break; |
Steve Naroff | 8afa989 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6870 | case IncompatibleObjCQualifiedId: |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6871 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 8afa989 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6872 | // it can give a more specific diagnostic. |
| 6873 | DiagKind = diag::warn_incompatible_qualified_id; |
| 6874 | break; |
Anders Carlsson | db5a9b6 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 6875 | case IncompatibleVectors: |
| 6876 | DiagKind = diag::warn_incompatible_vectors; |
| 6877 | break; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6878 | case Incompatible: |
| 6879 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 6880 | isInvalid = true; |
| 6881 | break; |
| 6882 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6883 | |
Douglas Gregor | 7c3bbdf | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 6884 | Diag(Loc, DiagKind) << DstType << SrcType << Action |
Anders Carlsson | ace5d07 | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6885 | << SrcExpr->getSourceRange() << Hint; |
Chris Lattner | 9bad62c | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6886 | return isInvalid; |
| 6887 | } |
Anders Carlsson | e54e8a1 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6888 | |
Chris Lattner | c71d08b | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 6889 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | bb967cc | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6890 | llvm::APSInt ICEResult; |
| 6891 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 6892 | if (Result) |
| 6893 | *Result = ICEResult; |
| 6894 | return false; |
| 6895 | } |
| 6896 | |
Anders Carlsson | e54e8a1 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6897 | Expr::EvalResult EvalResult; |
| 6898 | |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6899 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e54e8a1 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6900 | EvalResult.HasSideEffects) { |
| 6901 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 6902 | |
| 6903 | if (EvalResult.Diag) { |
| 6904 | // We only show the note if it's not the usual "invalid subexpression" |
| 6905 | // or if it's actually in a subexpression. |
| 6906 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 6907 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 6908 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 6909 | } |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6910 | |
Anders Carlsson | e54e8a1 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6911 | return true; |
| 6912 | } |
| 6913 | |
Eli Friedman | bb967cc | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6914 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 6915 | E->getSourceRange(); |
Anders Carlsson | e54e8a1 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6916 | |
Eli Friedman | bb967cc | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6917 | if (EvalResult.Diag && |
| 6918 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 6919 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | 4e1f26a | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6920 | |
Anders Carlsson | e54e8a1 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6921 | if (Result) |
| 6922 | *Result = EvalResult.Val.getInt(); |
| 6923 | return false; |
| 6924 | } |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6925 | |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 6926 | void |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6927 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 6928 | ExprEvalContexts.push_back( |
| 6929 | ExpressionEvaluationContextRecord(NewContext, ExprTemporaries.size())); |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6930 | } |
| 6931 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6932 | void |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 6933 | Sema::PopExpressionEvaluationContext() { |
| 6934 | // Pop the current expression evaluation context off the stack. |
| 6935 | ExpressionEvaluationContextRecord Rec = ExprEvalContexts.back(); |
| 6936 | ExprEvalContexts.pop_back(); |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6937 | |
Douglas Gregor | fab31f4 | 2009-12-12 07:57:52 +0000 | [diff] [blame] | 6938 | if (Rec.Context == PotentiallyPotentiallyEvaluated) { |
| 6939 | if (Rec.PotentiallyReferenced) { |
| 6940 | // Mark any remaining declarations in the current position of the stack |
| 6941 | // as "referenced". If they were not meant to be referenced, semantic |
| 6942 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 6943 | for (PotentiallyReferencedDecls::iterator |
| 6944 | I = Rec.PotentiallyReferenced->begin(), |
| 6945 | IEnd = Rec.PotentiallyReferenced->end(); |
| 6946 | I != IEnd; ++I) |
| 6947 | MarkDeclarationReferenced(I->first, I->second); |
| 6948 | } |
| 6949 | |
| 6950 | if (Rec.PotentiallyDiagnosed) { |
| 6951 | // Emit any pending diagnostics. |
| 6952 | for (PotentiallyEmittedDiagnostics::iterator |
| 6953 | I = Rec.PotentiallyDiagnosed->begin(), |
| 6954 | IEnd = Rec.PotentiallyDiagnosed->end(); |
| 6955 | I != IEnd; ++I) |
| 6956 | Diag(I->first, I->second); |
| 6957 | } |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 6958 | } |
| 6959 | |
| 6960 | // When are coming out of an unevaluated context, clear out any |
| 6961 | // temporaries that we may have created as part of the evaluation of |
| 6962 | // the expression in that context: they aren't relevant because they |
| 6963 | // will never be constructed. |
| 6964 | if (Rec.Context == Unevaluated && |
| 6965 | ExprTemporaries.size() > Rec.NumTemporaries) |
| 6966 | ExprTemporaries.erase(ExprTemporaries.begin() + Rec.NumTemporaries, |
| 6967 | ExprTemporaries.end()); |
| 6968 | |
| 6969 | // Destroy the popped expression evaluation record. |
| 6970 | Rec.Destroy(); |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6971 | } |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6972 | |
| 6973 | /// \brief Note that the given declaration was referenced in the source code. |
| 6974 | /// |
| 6975 | /// This routine should be invoke whenever a given declaration is referenced |
| 6976 | /// in the source code, and where that reference occurred. If this declaration |
| 6977 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 6978 | /// C99 6.9p3), then the declaration will be marked as used. |
| 6979 | /// |
| 6980 | /// \param Loc the location where the declaration was referenced. |
| 6981 | /// |
| 6982 | /// \param D the declaration that has been referenced by the source code. |
| 6983 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 6984 | assert(D && "No declaration?"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6985 | |
Douglas Gregor | 77b50e1 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6986 | if (D->isUsed()) |
| 6987 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6988 | |
Douglas Gregor | 3beaf9b | 2009-10-08 21:35:42 +0000 | [diff] [blame] | 6989 | // Mark a parameter or variable declaration "used", regardless of whether we're in a |
| 6990 | // template or not. The reason for this is that unevaluated expressions |
| 6991 | // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and |
| 6992 | // -Wunused-parameters) |
| 6993 | if (isa<ParmVarDecl>(D) || |
| 6994 | (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6995 | D->setUsed(true); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6996 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6997 | // Do not mark anything as "used" within a dependent context; wait for |
| 6998 | // an instantiation. |
| 6999 | if (CurContext->isDependentContext()) |
| 7000 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7001 | |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 7002 | switch (ExprEvalContexts.back().Context) { |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 7003 | case Unevaluated: |
| 7004 | // We are in an expression that is not potentially evaluated; do nothing. |
| 7005 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7006 | |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 7007 | case PotentiallyEvaluated: |
| 7008 | // We are in a potentially-evaluated expression, so this declaration is |
| 7009 | // "used"; handle this below. |
| 7010 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7011 | |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 7012 | case PotentiallyPotentiallyEvaluated: |
| 7013 | // We are in an expression that may be potentially evaluated; queue this |
| 7014 | // declaration reference until we know whether the expression is |
| 7015 | // potentially evaluated. |
Douglas Gregor | ff790f1 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 7016 | ExprEvalContexts.back().addReferencedDecl(Loc, D); |
Douglas Gregor | 0b6a624 | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 7017 | return; |
| 7018 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7019 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7020 | // Note that this declaration has been used. |
Fariborz Jahanian | 3a36343 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 7021 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 477d242 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 7022 | unsigned TypeQuals; |
Fariborz Jahanian | 18eb69a | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 7023 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 7024 | if (!Constructor->isUsed()) |
| 7025 | DefineImplicitDefaultConstructor(Loc, Constructor); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7026 | } else if (Constructor->isImplicit() && |
Douglas Gregor | 507eb87 | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 7027 | Constructor->isCopyConstructor(TypeQuals)) { |
Fariborz Jahanian | 477d242 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 7028 | if (!Constructor->isUsed()) |
| 7029 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 7030 | } |
Anders Carlsson | 82fccd0 | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 7031 | |
| 7032 | MaybeMarkVirtualMembersReferenced(Loc, Constructor); |
Fariborz Jahanian | 24a175b | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 7033 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 7034 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 7035 | DefineImplicitDestructor(Loc, Destructor); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7036 | |
Fariborz Jahanian | 41f7927 | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 7037 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 7038 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 7039 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 7040 | if (!MethodDecl->isUsed()) |
| 7041 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 7042 | } |
| 7043 | } |
Fariborz Jahanian | 49796cc7 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 7044 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7045 | // Implicit instantiation of function templates and member functions of |
Douglas Gregor | 4adbc6d | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 7046 | // class templates. |
Douglas Gregor | afca3b4 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 7047 | if (!Function->getBody() && Function->isImplicitlyInstantiable()) { |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7048 | bool AlreadyInstantiated = false; |
| 7049 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 7050 | = Function->getTemplateSpecializationInfo()) { |
| 7051 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 7052 | SpecInfo->setPointOfInstantiation(Loc); |
Douglas Gregor | afca3b4 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 7053 | else if (SpecInfo->getTemplateSpecializationKind() |
| 7054 | == TSK_ImplicitInstantiation) |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7055 | AlreadyInstantiated = true; |
| 7056 | } else if (MemberSpecializationInfo *MSInfo |
| 7057 | = Function->getMemberSpecializationInfo()) { |
| 7058 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
| 7059 | MSInfo->setPointOfInstantiation(Loc); |
Douglas Gregor | afca3b4 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 7060 | else if (MSInfo->getTemplateSpecializationKind() |
| 7061 | == TSK_ImplicitInstantiation) |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7062 | AlreadyInstantiated = true; |
| 7063 | } |
| 7064 | |
| 7065 | if (!AlreadyInstantiated) |
| 7066 | PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); |
| 7067 | } |
| 7068 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7069 | // FIXME: keep track of references to static functions |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7070 | Function->setUsed(true); |
| 7071 | return; |
Douglas Gregor | 77b50e1 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 7072 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7073 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7074 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | a6ef8f0 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 7075 | // Implicit instantiation of static data members of class templates. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7076 | if (Var->isStaticDataMember() && |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7077 | Var->getInstantiatedFromStaticDataMember()) { |
| 7078 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 7079 | assert(MSInfo && "Missing member specialization information?"); |
| 7080 | if (MSInfo->getPointOfInstantiation().isInvalid() && |
| 7081 | MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) { |
| 7082 | MSInfo->setPointOfInstantiation(Loc); |
| 7083 | PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); |
| 7084 | } |
| 7085 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7086 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7087 | // FIXME: keep track of references to static data? |
Douglas Gregor | a6ef8f0 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 7088 | |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7089 | D->setUsed(true); |
Douglas Gregor | a6ef8f0 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 7090 | return; |
Sam Weinig | bae6914 | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 7091 | } |
Douglas Gregor | c9c02ed | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 7092 | } |
Anders Carlsson | 7f84ed9 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 7093 | |
Douglas Gregor | da8cdbc | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 7094 | /// \brief Emit a diagnostic that describes an effect on the run-time behavior |
| 7095 | /// of the program being compiled. |
| 7096 | /// |
| 7097 | /// This routine emits the given diagnostic when the code currently being |
| 7098 | /// type-checked is "potentially evaluated", meaning that there is a |
| 7099 | /// possibility that the code will actually be executable. Code in sizeof() |
| 7100 | /// expressions, code used only during overload resolution, etc., are not |
| 7101 | /// potentially evaluated. This routine will suppress such diagnostics or, |
| 7102 | /// in the absolutely nutty case of potentially potentially evaluated |
| 7103 | /// expressions (C++ typeid), queue the diagnostic to potentially emit it |
| 7104 | /// later. |
| 7105 | /// |
| 7106 | /// This routine should be used for all diagnostics that describe the run-time |
| 7107 | /// behavior of a program, such as passing a non-POD value through an ellipsis. |
| 7108 | /// Failure to do so will likely result in spurious diagnostics or failures |
| 7109 | /// during overload resolution or within sizeof/alignof/typeof/typeid. |
| 7110 | bool Sema::DiagRuntimeBehavior(SourceLocation Loc, |
| 7111 | const PartialDiagnostic &PD) { |
| 7112 | switch (ExprEvalContexts.back().Context ) { |
| 7113 | case Unevaluated: |
| 7114 | // The argument will never be evaluated, so don't complain. |
| 7115 | break; |
| 7116 | |
| 7117 | case PotentiallyEvaluated: |
| 7118 | Diag(Loc, PD); |
| 7119 | return true; |
| 7120 | |
| 7121 | case PotentiallyPotentiallyEvaluated: |
| 7122 | ExprEvalContexts.back().addDiagnostic(Loc, PD); |
| 7123 | break; |
| 7124 | } |
| 7125 | |
| 7126 | return false; |
| 7127 | } |
| 7128 | |
Anders Carlsson | 7f84ed9 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 7129 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 7130 | CallExpr *CE, FunctionDecl *FD) { |
| 7131 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 7132 | return false; |
| 7133 | |
| 7134 | PartialDiagnostic Note = |
| 7135 | FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) |
| 7136 | << FD->getDeclName() : PDiag(); |
| 7137 | SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); |
| 7138 | |
| 7139 | if (RequireCompleteType(Loc, ReturnType, |
| 7140 | FD ? |
| 7141 | PDiag(diag::err_call_function_incomplete_return) |
| 7142 | << CE->getSourceRange() << FD->getDeclName() : |
| 7143 | PDiag(diag::err_call_incomplete_return) |
| 7144 | << CE->getSourceRange(), |
| 7145 | std::make_pair(NoteLoc, Note))) |
| 7146 | return true; |
| 7147 | |
| 7148 | return false; |
| 7149 | } |
| 7150 | |
John McCall | d5707ab | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 7151 | // Diagnose the common s/=/==/ typo. Note that adding parentheses |
| 7152 | // will prevent this condition from triggering, which is what we want. |
| 7153 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 7154 | SourceLocation Loc; |
| 7155 | |
John McCall | 0506e4a | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 7156 | unsigned diagnostic = diag::warn_condition_is_assignment; |
| 7157 | |
John McCall | d5707ab | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 7158 | if (isa<BinaryOperator>(E)) { |
| 7159 | BinaryOperator *Op = cast<BinaryOperator>(E); |
| 7160 | if (Op->getOpcode() != BinaryOperator::Assign) |
| 7161 | return; |
| 7162 | |
John McCall | b0e419e | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 7163 | // Greylist some idioms by putting them into a warning subcategory. |
| 7164 | if (ObjCMessageExpr *ME |
| 7165 | = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { |
| 7166 | Selector Sel = ME->getSelector(); |
| 7167 | |
John McCall | b0e419e | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 7168 | // self = [<foo> init...] |
| 7169 | if (isSelfExpr(Op->getLHS()) |
| 7170 | && Sel.getIdentifierInfoForSlot(0)->getName().startswith("init")) |
| 7171 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 7172 | |
| 7173 | // <foo> = [<bar> nextObject] |
| 7174 | else if (Sel.isUnarySelector() && |
| 7175 | Sel.getIdentifierInfoForSlot(0)->getName() == "nextObject") |
| 7176 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 7177 | } |
John McCall | 0506e4a | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 7178 | |
John McCall | d5707ab | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 7179 | Loc = Op->getOperatorLoc(); |
| 7180 | } else if (isa<CXXOperatorCallExpr>(E)) { |
| 7181 | CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E); |
| 7182 | if (Op->getOperator() != OO_Equal) |
| 7183 | return; |
| 7184 | |
| 7185 | Loc = Op->getOperatorLoc(); |
| 7186 | } else { |
| 7187 | // Not an assignment. |
| 7188 | return; |
| 7189 | } |
| 7190 | |
John McCall | d5707ab | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 7191 | SourceLocation Open = E->getSourceRange().getBegin(); |
John McCall | e724ae9 | 2009-10-12 22:25:59 +0000 | [diff] [blame] | 7192 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
John McCall | d5707ab | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 7193 | |
John McCall | 0506e4a | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 7194 | Diag(Loc, diagnostic) |
John McCall | d5707ab | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 7195 | << E->getSourceRange() |
| 7196 | << CodeModificationHint::CreateInsertion(Open, "(") |
| 7197 | << CodeModificationHint::CreateInsertion(Close, ")"); |
| 7198 | } |
| 7199 | |
| 7200 | bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) { |
| 7201 | DiagnoseAssignmentAsCondition(E); |
| 7202 | |
| 7203 | if (!E->isTypeDependent()) { |
| 7204 | DefaultFunctionArrayConversion(E); |
| 7205 | |
| 7206 | QualType T = E->getType(); |
| 7207 | |
| 7208 | if (getLangOptions().CPlusPlus) { |
| 7209 | if (CheckCXXBooleanCondition(E)) // C++ 6.4p4 |
| 7210 | return true; |
| 7211 | } else if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 7212 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 7213 | << T << E->getSourceRange(); |
| 7214 | return true; |
| 7215 | } |
| 7216 | } |
| 7217 | |
| 7218 | return false; |
| 7219 | } |