Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 64789f8 | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | 9ed3e77 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | 279272e | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 20 | #include "clang/Lex/Preprocessor.h" |
| 21 | #include "clang/Lex/LiteralSupport.h" |
| 22 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 24 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 71ca8c8 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 25 | #include "clang/Parse/Designator.h" |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 26 | #include "clang/Parse/Scope.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 27 | using namespace clang; |
| 28 | |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 29 | /// \brief Determine whether the use of this declaration is valid, and |
| 30 | /// emit any corresponding diagnostics. |
| 31 | /// |
| 32 | /// This routine diagnoses various problems with referencing |
| 33 | /// declarations that can occur when using a declaration. For example, |
| 34 | /// it might warn if a deprecated or unavailable declaration is being |
| 35 | /// used, or produce an error (and return true) if a C++0x deleted |
| 36 | /// function is being used. |
| 37 | /// |
| 38 | /// \returns true if there was an error (this declaration cannot be |
| 39 | /// referenced), false otherwise. |
| 40 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 41 | // See if the decl is deprecated. |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 42 | if (D->getAttr<DeprecatedAttr>(Context)) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 43 | // Implementing deprecated stuff requires referencing deprecated |
| 44 | // stuff. Don't warn if we are implementing a deprecated |
| 45 | // construct. |
Chris Lattner | fb1bb82 | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 46 | bool isSilenced = false; |
| 47 | |
| 48 | if (NamedDecl *ND = getCurFunctionOrMethodDecl()) { |
| 49 | // If this reference happens *in* a deprecated function or method, don't |
| 50 | // warn. |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 51 | isSilenced = ND->getAttr<DeprecatedAttr>(Context); |
Chris Lattner | fb1bb82 | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 52 | |
| 53 | // If this is an Objective-C method implementation, check to see if the |
| 54 | // method was deprecated on the declaration, not the definition. |
| 55 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) { |
| 56 | // The semantic decl context of a ObjCMethodDecl is the |
| 57 | // ObjCImplementationDecl. |
| 58 | if (ObjCImplementationDecl *Impl |
| 59 | = dyn_cast<ObjCImplementationDecl>(MD->getParent())) { |
| 60 | |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 61 | MD = Impl->getClassInterface()->getMethod(Context, |
| 62 | MD->getSelector(), |
Chris Lattner | fb1bb82 | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 63 | MD->isInstanceMethod()); |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 64 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(Context); |
Chris Lattner | fb1bb82 | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | if (!isSilenced) |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 70 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 71 | } |
| 72 | |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 73 | // See if this is a deleted function. |
Douglas Gregor | 6f8c368 | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 74 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 75 | if (FD->isDeleted()) { |
| 76 | Diag(Loc, diag::err_deleted_function_use); |
| 77 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 78 | return true; |
| 79 | } |
Douglas Gregor | 6f8c368 | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 80 | } |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 81 | |
| 82 | // See if the decl is unavailable |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 83 | if (D->getAttr<UnavailableAttr>(Context)) { |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 84 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 85 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 86 | } |
| 87 | |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 88 | return false; |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Fariborz Jahanian | 180f341 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 91 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
| 92 | /// (and other functions in future), which have been declared with sentinel |
| 93 | /// attribute. It warns if call does not have the sentinel argument. |
| 94 | /// |
| 95 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
| 96 | Expr **Args, unsigned NumArgs) |
| 97 | { |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 98 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(Context); |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 99 | if (!attr) |
| 100 | return; |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 101 | int sentinelPos = attr->getSentinel(); |
| 102 | int nullPos = attr->getNullPos(); |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 103 | |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 104 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 105 | // base class. Then we won't be needing two versions of the same code. |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 106 | unsigned int i = 0; |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 107 | bool warnNotEnoughArgs = false; |
| 108 | int isMethod = 0; |
| 109 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 110 | // skip over named parameters. |
| 111 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 112 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 113 | if (nullPos) |
| 114 | --nullPos; |
| 115 | else |
| 116 | ++i; |
| 117 | } |
| 118 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 119 | isMethod = 1; |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 120 | } |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 121 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 122 | // skip over named parameters. |
| 123 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 124 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 125 | if (nullPos) |
| 126 | --nullPos; |
| 127 | else |
| 128 | ++i; |
| 129 | } |
| 130 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 131 | } |
Fariborz Jahanian | c10357d | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 132 | else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
| 133 | // block or function pointer call. |
| 134 | QualType Ty = V->getType(); |
| 135 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
| 136 | const FunctionType *FT = Ty->isFunctionPointerType() |
| 137 | ? Ty->getAsPointerType()->getPointeeType()->getAsFunctionType() |
| 138 | : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType(); |
| 139 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 140 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 141 | unsigned k; |
| 142 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 143 | if (nullPos) |
| 144 | --nullPos; |
| 145 | else |
| 146 | ++i; |
| 147 | } |
| 148 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 149 | } |
| 150 | if (Ty->isBlockPointerType()) |
| 151 | isMethod = 2; |
| 152 | } |
| 153 | else |
| 154 | return; |
| 155 | } |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 156 | else |
| 157 | return; |
| 158 | |
| 159 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 160 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 161 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 162 | return; |
| 163 | } |
| 164 | int sentinel = i; |
| 165 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 166 | --sentinelPos; |
| 167 | ++i; |
| 168 | } |
| 169 | if (sentinelPos > 0) { |
| 170 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 171 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 172 | return; |
| 173 | } |
| 174 | while (i < NumArgs-1) { |
| 175 | ++i; |
| 176 | ++sentinel; |
| 177 | } |
| 178 | Expr *sentinelExpr = Args[sentinel]; |
| 179 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
| 180 | !sentinelExpr->isNullPointerConstant(Context))) { |
Fariborz Jahanian | c10357d | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 181 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 09f2e3f | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 182 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 79d29e7 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 183 | } |
| 184 | return; |
Fariborz Jahanian | 180f341 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Douglas Gregor | 3bb3000 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 187 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 188 | Expr *Ex = (Expr *)E; |
| 189 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 190 | } |
| 191 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 192 | //===----------------------------------------------------------------------===// |
| 193 | // Standard Promotions and Conversions |
| 194 | //===----------------------------------------------------------------------===// |
| 195 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 196 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 197 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 198 | QualType Ty = E->getType(); |
| 199 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 200 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 201 | if (Ty->isFunctionType()) |
| 202 | ImpCastExprToType(E, Context.getPointerType(Ty)); |
Chris Lattner | 2aa6882 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 203 | else if (Ty->isArrayType()) { |
| 204 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 205 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 206 | // type 'array of type' is converted to an expression that has type 'pointer |
| 207 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 208 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 209 | // (C90) to "an expression" (C99). |
Argiris Kirtzidis | f580b4d | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 210 | // |
| 211 | // C++ 4.2p1: |
| 212 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 213 | // T" can be converted to an rvalue of type "pointer to T". |
| 214 | // |
| 215 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 216 | E->isLvalue(Context) == Expr::LV_Valid) |
Chris Lattner | 2aa6882 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 217 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); |
| 218 | } |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Douglas Gregor | 70b307e | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 221 | /// \brief Whether this is a promotable bitfield reference according |
| 222 | /// to C99 6.3.1.1p2, bullet 2. |
| 223 | /// |
| 224 | /// \returns the type this bit-field will promote to, or NULL if no |
| 225 | /// promotion occurs. |
| 226 | static QualType isPromotableBitField(Expr *E, ASTContext &Context) { |
Douglas Gregor | 531434b | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 227 | FieldDecl *Field = E->getBitField(); |
| 228 | if (!Field) |
Douglas Gregor | 70b307e | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 229 | return QualType(); |
| 230 | |
| 231 | const BuiltinType *BT = Field->getType()->getAsBuiltinType(); |
| 232 | if (!BT) |
| 233 | return QualType(); |
| 234 | |
| 235 | if (BT->getKind() != BuiltinType::Bool && |
| 236 | BT->getKind() != BuiltinType::Int && |
| 237 | BT->getKind() != BuiltinType::UInt) |
| 238 | return QualType(); |
| 239 | |
| 240 | llvm::APSInt BitWidthAP; |
| 241 | if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context)) |
| 242 | return QualType(); |
| 243 | |
| 244 | uint64_t BitWidth = BitWidthAP.getZExtValue(); |
| 245 | uint64_t IntSize = Context.getTypeSize(Context.IntTy); |
| 246 | if (BitWidth < IntSize || |
| 247 | (Field->getType()->isSignedIntegerType() && BitWidth == IntSize)) |
| 248 | return Context.IntTy; |
| 249 | |
| 250 | if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType()) |
| 251 | return Context.UnsignedIntTy; |
| 252 | |
| 253 | return QualType(); |
| 254 | } |
| 255 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 256 | /// UsualUnaryConversions - Performs various conversions that are common to most |
| 257 | /// operators (C99 6.3). The conversions of array and function types are |
| 258 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 259 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 260 | /// In these instances, this routine should *not* be called. |
| 261 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 262 | QualType Ty = Expr->getType(); |
| 263 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
| 264 | |
Douglas Gregor | 70b307e | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 265 | // C99 6.3.1.1p2: |
| 266 | // |
| 267 | // The following may be used in an expression wherever an int or |
| 268 | // unsigned int may be used: |
| 269 | // - an object or expression with an integer type whose integer |
| 270 | // conversion rank is less than or equal to the rank of int |
| 271 | // and unsigned int. |
| 272 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 273 | // |
| 274 | // If an int can represent all values of the original type, the |
| 275 | // value is converted to an int; otherwise, it is converted to an |
| 276 | // unsigned int. These are called the integer promotions. All |
| 277 | // other types are unchanged by the integer promotions. |
| 278 | if (Ty->isPromotableIntegerType()) { |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 279 | ImpCastExprToType(Expr, Context.IntTy); |
Douglas Gregor | 70b307e | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 280 | return Expr; |
| 281 | } else { |
| 282 | QualType T = isPromotableBitField(Expr, Context); |
| 283 | if (!T.isNull()) { |
| 284 | ImpCastExprToType(Expr, T); |
| 285 | return Expr; |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 290 | return Expr; |
| 291 | } |
| 292 | |
Chris Lattner | 9305c3d | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 293 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 294 | /// do not have a prototype. Arguments that have type float are promoted to |
| 295 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 296 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 297 | QualType Ty = Expr->getType(); |
| 298 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
| 299 | |
| 300 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
| 301 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 302 | if (BT->getKind() == BuiltinType::Float) |
| 303 | return ImpCastExprToType(Expr, Context.DoubleTy); |
| 304 | |
| 305 | UsualUnaryConversions(Expr); |
| 306 | } |
| 307 | |
Chris Lattner | 81f00ed | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 308 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 309 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 310 | /// interfaces passed by value. This returns true if the argument type is |
| 311 | /// completely illegal. |
| 312 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | 4b8e38c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 313 | DefaultArgumentPromotion(Expr); |
| 314 | |
Chris Lattner | 81f00ed | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 315 | if (Expr->getType()->isObjCInterfaceType()) { |
| 316 | Diag(Expr->getLocStart(), |
| 317 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 318 | << Expr->getType() << CT; |
| 319 | return true; |
Anders Carlsson | 4b8e38c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 320 | } |
Chris Lattner | 81f00ed | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 321 | |
| 322 | if (!Expr->getType()->isPODType()) |
| 323 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 324 | << Expr->getType() << CT; |
| 325 | |
| 326 | return false; |
Anders Carlsson | 4b8e38c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 330 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 331 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 332 | /// routine returns the first non-arithmetic type found. The client is |
| 333 | /// responsible for emitting appropriate error diagnostics. |
| 334 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 335 | /// GCC. |
| 336 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 337 | bool isCompAssign) { |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 338 | if (!isCompAssign) |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 339 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 340 | |
| 341 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 342 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 343 | // For conversion purposes, we ignore any qualifiers. |
| 344 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 345 | QualType lhs = |
| 346 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
| 347 | QualType rhs = |
| 348 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 349 | |
| 350 | // If both types are identical, no conversion is needed. |
| 351 | if (lhs == rhs) |
| 352 | return lhs; |
| 353 | |
| 354 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 355 | // The caller can deal with this (e.g. pointer + int). |
| 356 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 357 | return lhs; |
| 358 | |
Douglas Gregor | 6fcf2ca | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 359 | // Perform bitfield promotions. |
| 360 | QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context); |
| 361 | if (!LHSBitfieldPromoteTy.isNull()) |
| 362 | lhs = LHSBitfieldPromoteTy; |
| 363 | QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context); |
| 364 | if (!RHSBitfieldPromoteTy.isNull()) |
| 365 | rhs = RHSBitfieldPromoteTy; |
| 366 | |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 367 | QualType destType = UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 368 | if (!isCompAssign) |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 369 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 370 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 371 | return destType; |
| 372 | } |
| 373 | |
| 374 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 375 | // Perform the usual unary conversions. We do this early so that |
| 376 | // integral promotions to "int" can allow us to exit early, in the |
| 377 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 378 | // qualifiers. For example, "const float" and "float" are |
| 379 | // equivalent. |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 380 | if (lhs->isPromotableIntegerType()) |
| 381 | lhs = Context.IntTy; |
| 382 | else |
| 383 | lhs = lhs.getUnqualifiedType(); |
| 384 | if (rhs->isPromotableIntegerType()) |
| 385 | rhs = Context.IntTy; |
| 386 | else |
| 387 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 388 | |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 389 | // If both types are identical, no conversion is needed. |
| 390 | if (lhs == rhs) |
| 391 | return lhs; |
| 392 | |
| 393 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 394 | // The caller can deal with this (e.g. pointer + int). |
| 395 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 396 | return lhs; |
| 397 | |
| 398 | // At this point, we have two different arithmetic types. |
| 399 | |
| 400 | // Handle complex types first (C99 6.3.1.8p1). |
| 401 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 402 | // if we have an integer operand, the result is the complex type. |
| 403 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 404 | // convert the rhs to the lhs complex type. |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 405 | return lhs; |
| 406 | } |
| 407 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 408 | // convert the lhs to the rhs complex type. |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 409 | return rhs; |
| 410 | } |
| 411 | // This handles complex/complex, complex/float, or float/complex. |
| 412 | // When both operands are complex, the shorter operand is converted to the |
| 413 | // type of the longer, and that is the type of the result. This corresponds |
| 414 | // to what is done when combining two real floating-point operands. |
| 415 | // The fun begins when size promotion occur across type domains. |
| 416 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 417 | // floating-point type, the less precise type is converted, within it's |
| 418 | // real or complex domain, to the precision of the other type. For example, |
| 419 | // when combining a "long double" with a "double _Complex", the |
| 420 | // "double _Complex" is promoted to "long double _Complex". |
| 421 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 422 | |
| 423 | if (result > 0) { // The left side is bigger, convert rhs. |
| 424 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 425 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 426 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 427 | } |
| 428 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 429 | // domains match. This is a requirement for our implementation, C99 |
| 430 | // does not require this promotion. |
| 431 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 432 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 433 | return rhs; |
| 434 | } else { // handle "_Complex double, double". |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 435 | return lhs; |
| 436 | } |
| 437 | } |
| 438 | return lhs; // The domain/size match exactly. |
| 439 | } |
| 440 | // Now handle "real" floating types (i.e. float, double, long double). |
| 441 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 442 | // if we have an integer operand, the result is the real floating type. |
Anders Carlsson | 488a079 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 443 | if (rhs->isIntegerType()) { |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 444 | // convert rhs to the lhs floating point type. |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 445 | return lhs; |
| 446 | } |
Anders Carlsson | 488a079 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 447 | if (rhs->isComplexIntegerType()) { |
| 448 | // convert rhs to the complex floating point type. |
| 449 | return Context.getComplexType(lhs); |
| 450 | } |
| 451 | if (lhs->isIntegerType()) { |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 452 | // convert lhs to the rhs floating point type. |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 453 | return rhs; |
| 454 | } |
Anders Carlsson | 488a079 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 455 | if (lhs->isComplexIntegerType()) { |
| 456 | // convert lhs to the complex floating point type. |
| 457 | return Context.getComplexType(rhs); |
| 458 | } |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 459 | // We have two real floating types, float/complex combos were handled above. |
| 460 | // Convert the smaller operand to the bigger result. |
| 461 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 462 | if (result > 0) // convert the rhs |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 463 | return lhs; |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 464 | assert(result < 0 && "illegal float comparison"); |
| 465 | return rhs; // convert the lhs |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 466 | } |
| 467 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 468 | // Handle GCC complex int extension. |
| 469 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 470 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 471 | |
| 472 | if (lhsComplexInt && rhsComplexInt) { |
| 473 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 474 | rhsComplexInt->getElementType()) >= 0) |
| 475 | return lhs; // convert the rhs |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 476 | return rhs; |
| 477 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 478 | // convert the rhs to the lhs complex type. |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 479 | return lhs; |
| 480 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 481 | // convert the lhs to the rhs complex type. |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 482 | return rhs; |
| 483 | } |
| 484 | } |
| 485 | // Finally, we have two differing integer types. |
| 486 | // The rules for this case are in C99 6.3.1.8 |
| 487 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 488 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 489 | rhsSigned = rhs->isSignedIntegerType(); |
| 490 | QualType destType; |
| 491 | if (lhsSigned == rhsSigned) { |
| 492 | // Same signedness; use the higher-ranked type |
| 493 | destType = compare >= 0 ? lhs : rhs; |
| 494 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 495 | // The unsigned type has greater than or equal rank to the |
| 496 | // signed type, so use the unsigned type |
| 497 | destType = lhsSigned ? rhs : lhs; |
| 498 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 499 | // The two types are different widths; if we are here, that |
| 500 | // means the signed type is larger than the unsigned type, so |
| 501 | // use the signed type. |
| 502 | destType = lhsSigned ? lhs : rhs; |
| 503 | } else { |
| 504 | // The signed type is higher-ranked than the unsigned type, |
| 505 | // but isn't actually any bigger (like unsigned int and long |
| 506 | // on most 32-bit systems). Use the unsigned type corresponding |
| 507 | // to the signed type. |
| 508 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 509 | } |
Chris Lattner | 299b884 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 510 | return destType; |
| 511 | } |
| 512 | |
| 513 | //===----------------------------------------------------------------------===// |
| 514 | // Semantic Analysis for various Expression Types |
| 515 | //===----------------------------------------------------------------------===// |
| 516 | |
| 517 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 518 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 519 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 520 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 521 | /// multiple tokens. However, the common case is that StringToks points to one |
| 522 | /// string. |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 523 | /// |
| 524 | Action::OwningExprResult |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 525 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 526 | assert(NumStringToks && "Must have at least one string!"); |
| 527 | |
Chris Lattner | 9eaf2b7 | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 528 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 529 | if (Literal.hadError) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 530 | return ExprError(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 531 | |
| 532 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 533 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 534 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a6dcce3 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 535 | |
Chris Lattner | a6dcce3 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 536 | QualType StrTy = Context.CharTy; |
Argiris Kirtzidis | 2a4e116 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 537 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a6dcce3 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 538 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 1815b3b | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 539 | |
| 540 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 541 | if (getLangOptions().CPlusPlus) |
| 542 | StrTy.addConst(); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 543 | |
Chris Lattner | a6dcce3 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 544 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 545 | // the nul terminator character as well as the string length for pascal |
| 546 | // strings. |
| 547 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | 1403222 | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 548 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a6dcce3 | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 549 | ArrayType::Normal, 0); |
Chris Lattner | c314474 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 550 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 551 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | aa49119 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 552 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 553 | Literal.GetStringLength(), |
| 554 | Literal.AnyWide, StrTy, |
| 555 | &StringTokLocs[0], |
| 556 | StringTokLocs.size())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Chris Lattner | b2ebd48 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 559 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 560 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 561 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 562 | /// for values inside the block or for globals). |
| 563 | /// |
Chris Lattner | 0b46425 | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 564 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 565 | /// up-to-date. |
| 566 | /// |
Chris Lattner | b2ebd48 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 567 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 568 | ValueDecl *VD) { |
| 569 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 570 | // we wanted to. |
| 571 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 572 | return false; |
| 573 | |
| 574 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 575 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 576 | return false; |
| 577 | |
| 578 | // If this is a reference to an extern, static, or global variable, no need to |
| 579 | // snapshot it. |
| 580 | // FIXME: What about 'const' variables in C++? |
| 581 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 0b46425 | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 582 | if (!Var->hasLocalStorage()) |
| 583 | return false; |
| 584 | |
| 585 | // Blocks that have these can't be constant. |
| 586 | CurBlock->hasBlockDeclRefExprs = true; |
| 587 | |
| 588 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 589 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 590 | // be defined outside all of the current blocks (in which case the blocks do |
| 591 | // all get the bit). Walk the nesting chain. |
| 592 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 593 | NextBlock = NextBlock->PrevBlockInfo) { |
| 594 | // If we found the defining block for the variable, don't mark the block as |
| 595 | // having a reference outside it. |
| 596 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 597 | break; |
| 598 | |
| 599 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 600 | // a snapshot as well. |
| 601 | NextBlock->hasBlockDeclRefExprs = true; |
| 602 | } |
Chris Lattner | b2ebd48 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 603 | |
| 604 | return true; |
| 605 | } |
| 606 | |
| 607 | |
| 608 | |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 609 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 610 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | e50e14c | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 611 | /// identifier is used in a function call context. |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 612 | /// SS is only used for a C++ qualified-id (foo::bar) to indicate the |
Argiris Kirtzidis | 054a263 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 613 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 614 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 615 | IdentifierInfo &II, |
| 616 | bool HasTrailingLParen, |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 617 | const CXXScopeSpec *SS, |
| 618 | bool isAddressOfOperand) { |
| 619 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 620 | isAddressOfOperand); |
Douglas Gregor | aee3bf8 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Douglas Gregor | 566782a | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 623 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 624 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 625 | /// nested-name-specifier. |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 626 | Sema::OwningExprResult |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 627 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 628 | bool TypeDependent, bool ValueDependent, |
| 629 | const CXXScopeSpec *SS) { |
Anders Carlsson | 9bd4866 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 630 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 631 | Diag(Loc, |
| 632 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
| 633 | << D->getDeclName(); |
| 634 | return ExprError(); |
| 635 | } |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 636 | |
| 637 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 638 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 639 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 640 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
| 641 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
| 642 | << D->getIdentifier() << FD->getDeclName(); |
| 643 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
| 644 | << D->getIdentifier(); |
| 645 | return ExprError(); |
| 646 | } |
| 647 | } |
| 648 | } |
| 649 | } |
| 650 | |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 651 | MarkDeclarationReferenced(Loc, D); |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 652 | |
| 653 | Expr *E; |
Douglas Gregor | 7e50826 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 654 | if (SS && !SS->isEmpty()) { |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 655 | E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 656 | ValueDependent, SS->getRange(), |
Douglas Gregor | 041e929 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 657 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | 7e50826 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 658 | } else |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 659 | E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
| 660 | |
| 661 | return Owned(E); |
Douglas Gregor | 566782a | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 662 | } |
| 663 | |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 664 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 665 | /// variable corresponding to the anonymous union or struct whose type |
| 666 | /// is Record. |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 667 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 668 | RecordDecl *Record) { |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 669 | assert(Record->isAnonymousStructOrUnion() && |
| 670 | "Record must be an anonymous struct or union!"); |
| 671 | |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 672 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 673 | // operation rather than a slow walk through DeclContext's vector (which |
| 674 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 675 | DeclContext *Ctx = Record->getDeclContext(); |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 676 | for (DeclContext::decl_iterator D = Ctx->decls_begin(Context), |
| 677 | DEnd = Ctx->decls_end(Context); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 678 | D != DEnd; ++D) { |
| 679 | if (*D == Record) { |
| 680 | // The object for the anonymous struct/union directly |
| 681 | // follows its type in the list of declarations. |
| 682 | ++D; |
| 683 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | af8ad2b | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 684 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 685 | return *D; |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | assert(false && "Missing object for anonymous record"); |
| 690 | return 0; |
| 691 | } |
| 692 | |
Douglas Gregor | cc94ab7 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 693 | /// \brief Given a field that represents a member of an anonymous |
| 694 | /// struct/union, build the path from that field's context to the |
| 695 | /// actual member. |
| 696 | /// |
| 697 | /// Construct the sequence of field member references we'll have to |
| 698 | /// perform to get to the field in the anonymous union/struct. The |
| 699 | /// list of members is built from the field outward, so traverse it |
| 700 | /// backwards to go from an object in the current context to the field |
| 701 | /// we found. |
| 702 | /// |
| 703 | /// \returns The variable from which the field access should begin, |
| 704 | /// for an anonymous struct/union that is not a member of another |
| 705 | /// class. Otherwise, returns NULL. |
| 706 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 707 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 708 | assert(Field->getDeclContext()->isRecord() && |
| 709 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 710 | && "Field must be stored inside an anonymous struct or union"); |
| 711 | |
Douglas Gregor | cc94ab7 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 712 | Path.push_back(Field); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 713 | VarDecl *BaseObject = 0; |
| 714 | DeclContext *Ctx = Field->getDeclContext(); |
| 715 | do { |
| 716 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 717 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 718 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | cc94ab7 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 719 | Path.push_back(AnonField); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 720 | else { |
| 721 | BaseObject = cast<VarDecl>(AnonObject); |
| 722 | break; |
| 723 | } |
| 724 | Ctx = Ctx->getParent(); |
| 725 | } while (Ctx->isRecord() && |
| 726 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | cc94ab7 | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 727 | |
| 728 | return BaseObject; |
| 729 | } |
| 730 | |
| 731 | Sema::OwningExprResult |
| 732 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 733 | FieldDecl *Field, |
| 734 | Expr *BaseObjectExpr, |
| 735 | SourceLocation OpLoc) { |
| 736 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 737 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
| 738 | AnonFields); |
| 739 | |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 740 | // Build the expression that refers to the base object, from |
| 741 | // which we will build a sequence of member references to each |
| 742 | // of the anonymous union objects and, eventually, the field we |
| 743 | // found via name lookup. |
| 744 | bool BaseObjectIsPointer = false; |
| 745 | unsigned ExtraQuals = 0; |
| 746 | if (BaseObject) { |
| 747 | // BaseObject is an anonymous struct/union variable (and is, |
| 748 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 0c97e04 | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 749 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 750 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 751 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 752 | SourceLocation()); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 753 | ExtraQuals |
| 754 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 755 | } else if (BaseObjectExpr) { |
| 756 | // The caller provided the base object expression. Determine |
| 757 | // whether its a pointer and whether it adds any qualifiers to the |
| 758 | // anonymous struct/union fields we're looking into. |
| 759 | QualType ObjectType = BaseObjectExpr->getType(); |
| 760 | if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) { |
| 761 | BaseObjectIsPointer = true; |
| 762 | ObjectType = ObjectPtr->getPointeeType(); |
| 763 | } |
| 764 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 765 | } else { |
| 766 | // We've found a member of an anonymous struct/union that is |
| 767 | // inside a non-anonymous struct/union, so in a well-formed |
| 768 | // program our base object expression is "this". |
| 769 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 770 | if (!MD->isStatic()) { |
| 771 | QualType AnonFieldType |
| 772 | = Context.getTagDeclType( |
| 773 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 774 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 775 | if ((Context.getCanonicalType(AnonFieldType) |
| 776 | == Context.getCanonicalType(ThisType)) || |
| 777 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 778 | // Our base object expression is "this". |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 779 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 780 | MD->getThisType(Context)); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 781 | BaseObjectIsPointer = true; |
| 782 | } |
| 783 | } else { |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 784 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 785 | << Field->getDeclName()); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 786 | } |
| 787 | ExtraQuals = MD->getTypeQualifiers(); |
| 788 | } |
| 789 | |
| 790 | if (!BaseObjectExpr) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 791 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 792 | << Field->getDeclName()); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | // Build the implicit member references to the field of the |
| 796 | // anonymous struct/union. |
| 797 | Expr *Result = BaseObjectExpr; |
| 798 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 799 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 800 | FI != FIEnd; ++FI) { |
| 801 | QualType MemberType = (*FI)->getType(); |
| 802 | if (!(*FI)->isMutable()) { |
| 803 | unsigned combinedQualifiers |
| 804 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 805 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 806 | } |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 807 | MarkDeclarationReferenced(Loc, *FI); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 808 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 809 | OpLoc, MemberType); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 810 | BaseObjectIsPointer = false; |
| 811 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 812 | } |
| 813 | |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 814 | return Owned(Result); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Douglas Gregor | aee3bf8 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 817 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 818 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 819 | /// performs lookup on that name and returns an expression that refers |
| 820 | /// to that name. This routine isn't directly called from the parser, |
| 821 | /// because the parser doesn't know about DeclarationName. Rather, |
| 822 | /// this routine is called by ActOnIdentifierExpr, |
| 823 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 824 | /// which form the DeclarationName from the corresponding syntactic |
| 825 | /// forms. |
| 826 | /// |
| 827 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 828 | /// function call context. LookupCtx is only used for a C++ |
| 829 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 830 | /// the identifier must be a member of. |
Douglas Gregor | a133e26 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 831 | /// |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 832 | /// isAddressOfOperand means that this expression is the direct operand |
| 833 | /// of an address-of operator. This matters because this is the only |
| 834 | /// situation where a qualified name referencing a non-static member may |
| 835 | /// appear outside a member function of this class. |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 836 | Sema::OwningExprResult |
| 837 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 838 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 839 | const CXXScopeSpec *SS, |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 840 | bool isAddressOfOperand) { |
Chris Lattner | c72d22d | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 841 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 52ae30c | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 842 | if (SS && SS->isInvalid()) |
| 843 | return ExprError(); |
Douglas Gregor | 47bde7c | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 844 | |
| 845 | // C++ [temp.dep.expr]p3: |
| 846 | // An id-expression is type-dependent if it contains: |
| 847 | // -- a nested-name-specifier that contains a class-name that |
| 848 | // names a dependent type. |
Douglas Gregor | f3a200f | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 849 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 47bde7c | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 850 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | 1e589cc | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 851 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 852 | Loc, SS->getRange(), |
Douglas Gregor | 041e929 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 853 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()))); |
Douglas Gregor | 47bde7c | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 854 | } |
| 855 | |
Douglas Gregor | 411889e | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 856 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 857 | false, true, Loc); |
Douglas Gregor | 29dfa2f | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 858 | |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 859 | if (Lookup.isAmbiguous()) { |
| 860 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 861 | SS && SS->isSet() ? SS->getRange() |
| 862 | : SourceRange()); |
| 863 | return ExprError(); |
Chris Lattner | f3ce857 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | NamedDecl *D = Lookup.getAsDecl(); |
Douglas Gregor | a133e26 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 867 | |
Chris Lattner | c72d22d | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 868 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 869 | // well. |
Douglas Gregor | aee3bf8 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 870 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 871 | if (II && getCurMethodDecl()) { |
Chris Lattner | c72d22d | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 872 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 873 | // in which case we should look for an ivar. 2) scoped lookup could have |
Fariborz Jahanian | 67502db | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 874 | // found a decl, but that decl is outside the current instance method (i.e. |
| 875 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 876 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | af8ad2b | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 877 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argiris Kirtzidis | 95256e6 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 878 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 879 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 880 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II, |
| 881 | ClassDeclared)) { |
Chris Lattner | 2a3bef9 | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 882 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 883 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 884 | return ExprError(); |
Chris Lattner | f3ce857 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 885 | |
| 886 | // If we're referencing an invalid decl, just return this as a silent |
| 887 | // error node. The error diagnostic was already emitted on the decl. |
| 888 | if (IV->isInvalidDecl()) |
| 889 | return ExprError(); |
| 890 | |
Fariborz Jahanian | 67502db | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 891 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 892 | // If a class method attemps to use a free standing ivar, this is |
| 893 | // an error. |
| 894 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 895 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 896 | << IV->getDeclName()); |
| 897 | // If a class method uses a global variable, even if an ivar with |
| 898 | // same name exists, use the global. |
| 899 | if (!IsClsMethod) { |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 900 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 901 | ClassDeclared != IFace) |
| 902 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 903 | // FIXME: This should use a new expr for a direct reference, don't |
| 904 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 67502db | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 905 | IdentifierInfo &II = Context.Idents.get("self"); |
| 906 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false); |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 907 | MarkDeclarationReferenced(Loc, IV); |
Daniel Dunbar | f5254bd | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 908 | return Owned(new (Context) |
| 909 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | 39ecdcf | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 910 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 67502db | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 911 | } |
Chris Lattner | c72d22d | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 912 | } |
| 913 | } |
Fariborz Jahanian | 67502db | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 914 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 915 | // We should warn if a local variable hides an ivar. |
| 916 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 917 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 918 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II, |
| 919 | ClassDeclared)) { |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 920 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 921 | IFace == ClassDeclared) |
Chris Lattner | f3ce857 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 922 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 923 | } |
Fariborz Jahanian | 67502db | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 924 | } |
Steve Naroff | 0ccfaa4 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 925 | // Needed to implement property "super.method" notation. |
Douglas Gregor | af8ad2b | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 926 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 927 | QualType T; |
| 928 | |
| 929 | if (getCurMethodDecl()->isInstanceMethod()) |
| 930 | T = Context.getPointerType(Context.getObjCInterfaceType( |
| 931 | getCurMethodDecl()->getClassInterface())); |
| 932 | else |
| 933 | T = Context.getObjCClassType(); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 934 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | 6f78625 | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 935 | } |
Chris Lattner | c72d22d | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 936 | } |
Douglas Gregor | e2d88fd | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 937 | |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 938 | // Determine whether this name might be a candidate for |
| 939 | // argument-dependent lookup. |
| 940 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 941 | HasTrailingLParen; |
| 942 | |
| 943 | if (ADL && D == 0) { |
Douglas Gregor | e2d88fd | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 944 | // We've seen something of the form |
| 945 | // |
| 946 | // identifier( |
| 947 | // |
| 948 | // and we did not find any entity by the name |
| 949 | // "identifier". However, this identifier is still subject to |
| 950 | // argument-dependent lookup, so keep track of the name. |
| 951 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 952 | Context.OverloadTy, |
| 953 | Loc)); |
| 954 | } |
| 955 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 956 | if (D == 0) { |
| 957 | // Otherwise, this could be an implicitly declared function reference (legal |
| 958 | // in C90, extension in C99). |
Douglas Gregor | aee3bf8 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 959 | if (HasTrailingLParen && II && |
Chris Lattner | c72d22d | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 960 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | aee3bf8 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 961 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 962 | else { |
| 963 | // If this name wasn't predeclared and if this is not a function call, |
| 964 | // diagnose the problem. |
Argiris Kirtzidis | 054a263 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 965 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 966 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 967 | << Name << SS->getRange()); |
Douglas Gregor | aee3bf8 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 968 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 969 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 970 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 971 | << Name.getAsString()); |
Argiris Kirtzidis | 054a263 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 972 | else |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 973 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 974 | } |
| 975 | } |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 976 | |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 977 | // If this is an expression of the form &Class::member, don't build an |
| 978 | // implicit member ref, because we want a pointer to the member in general, |
| 979 | // not any specific instance's member. |
| 980 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | 734b4ba | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 981 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 09be81b | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 982 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 983 | QualType DType; |
| 984 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 985 | DType = FD->getType().getNonReferenceType(); |
| 986 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 987 | DType = Method->getType(); |
| 988 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 989 | DType = Context.OverloadTy; |
| 990 | } |
| 991 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 992 | if (!DType.isNull()) { |
| 993 | // The pointer is type- and value-dependent if it points into something |
| 994 | // dependent. |
Douglas Gregor | f3a200f | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 995 | bool Dependent = DC->isDependentContext(); |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 996 | return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 997 | } |
| 998 | } |
| 999 | } |
| 1000 | |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1001 | // We may have found a field within an anonymous union or struct |
| 1002 | // (C++ [class.union]). |
| 1003 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 1004 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 1005 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1006 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1007 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1008 | if (!MD->isStatic()) { |
| 1009 | // C++ [class.mfct.nonstatic]p2: |
| 1010 | // [...] if name lookup (3.4.1) resolves the name in the |
| 1011 | // id-expression to a nonstatic nontype member of class X or of |
| 1012 | // a base class of X, the id-expression is transformed into a |
| 1013 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 1014 | // as the postfix-expression to the left of the '.' operator. |
| 1015 | DeclContext *Ctx = 0; |
| 1016 | QualType MemberType; |
| 1017 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 1018 | Ctx = FD->getDeclContext(); |
| 1019 | MemberType = FD->getType(); |
| 1020 | |
| 1021 | if (const ReferenceType *RefType = MemberType->getAsReferenceType()) |
| 1022 | MemberType = RefType->getPointeeType(); |
| 1023 | else if (!FD->isMutable()) { |
| 1024 | unsigned combinedQualifiers |
| 1025 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 1026 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 1027 | } |
| 1028 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 1029 | if (!Method->isStatic()) { |
| 1030 | Ctx = Method->getParent(); |
| 1031 | MemberType = Method->getType(); |
| 1032 | } |
| 1033 | } else if (OverloadedFunctionDecl *Ovl |
| 1034 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 1035 | for (OverloadedFunctionDecl::function_iterator |
| 1036 | Func = Ovl->function_begin(), |
| 1037 | FuncEnd = Ovl->function_end(); |
| 1038 | Func != FuncEnd; ++Func) { |
| 1039 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 1040 | if (!DMethod->isStatic()) { |
| 1041 | Ctx = Ovl->getDeclContext(); |
| 1042 | MemberType = Context.OverloadTy; |
| 1043 | break; |
| 1044 | } |
| 1045 | } |
| 1046 | } |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1047 | |
| 1048 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1049 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 1050 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 1051 | if ((Context.getCanonicalType(CtxType) |
| 1052 | == Context.getCanonicalType(ThisType)) || |
| 1053 | IsDerivedFrom(ThisType, CtxType)) { |
| 1054 | // Build the implicit member access expression. |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1055 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1056 | MD->getThisType(Context)); |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1057 | MarkDeclarationReferenced(Loc, D); |
Douglas Gregor | 09be81b | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1058 | return Owned(new (Context) MemberExpr(This, true, D, |
Eli Friedman | 1653e23 | 2009-04-29 17:56:47 +0000 | [diff] [blame] | 1059 | Loc, MemberType)); |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1060 | } |
| 1061 | } |
| 1062 | } |
| 1063 | } |
| 1064 | |
Douglas Gregor | 8acb727 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1065 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argiris Kirtzidis | 38f1671 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1066 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1067 | if (MD->isStatic()) |
| 1068 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1069 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 1070 | << FD->getDeclName()); |
Argiris Kirtzidis | 38f1671 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1073 | // Any other ways we could have found the field in a well-formed |
| 1074 | // program would have been turned into implicit member expressions |
| 1075 | // above. |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1076 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 1077 | << FD->getDeclName()); |
Argiris Kirtzidis | 38f1671 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1078 | } |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1079 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1080 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1081 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1082 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1083 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argiris Kirtzidis | 03e6aaf | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1084 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1085 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1086 | |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1087 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | d2baafd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 1088 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1089 | return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 1090 | false, false, SS); |
Douglas Gregor | 35d81bb | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 1091 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1092 | return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 1093 | false, false, SS); |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1094 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1095 | |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1096 | // Check whether this declaration can be used. Note that we suppress |
| 1097 | // this check when we're going to perform argument-dependent lookup |
| 1098 | // on this function name, because this might not be the function |
| 1099 | // that overload resolution actually selects. |
| 1100 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 1101 | return ExprError(); |
| 1102 | |
Douglas Gregor | 48840c7 | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1103 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) { |
Chris Lattner | 2a3bef9 | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 1104 | // Warn about constructs like: |
| 1105 | // if (void *X = foo()) { ... } else { X }. |
| 1106 | // In the else block, the pointer is always false. |
Douglas Gregor | f3a200f | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 1107 | |
| 1108 | // FIXME: In a template instantiation, we don't have scope |
| 1109 | // information to check this property. |
Douglas Gregor | 48840c7 | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1110 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 1111 | Scope *CheckS = S; |
| 1112 | while (CheckS) { |
| 1113 | if (CheckS->isWithinElse() && |
Chris Lattner | 5261d0c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1114 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
Douglas Gregor | 48840c7 | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1115 | if (Var->getType()->isBooleanType()) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1116 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 1117 | << Var->getDeclName()); |
Douglas Gregor | 48840c7 | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1118 | else |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1119 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 1120 | << Var->getDeclName()); |
Douglas Gregor | 48840c7 | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1121 | break; |
| 1122 | } |
| 1123 | |
| 1124 | // Move up one more control parent to check again. |
| 1125 | CheckS = CheckS->getControlParent(); |
| 1126 | if (CheckS) |
| 1127 | CheckS = CheckS->getParent(); |
| 1128 | } |
| 1129 | } |
Douglas Gregor | 1f88aa7 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 1130 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(VD)) { |
| 1131 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 1132 | // C99 DR 316 says that, if a function type comes from a |
| 1133 | // function definition (without a prototype), that type is only |
| 1134 | // used for checking compatibility. Therefore, when referencing |
| 1135 | // the function, we pretend that we don't have the full function |
| 1136 | // type. |
| 1137 | QualType T = Func->getType(); |
| 1138 | QualType NoProtoType = T; |
Douglas Gregor | 4fa5890 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 1139 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 1140 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1141 | return BuildDeclRefExpr(VD, NoProtoType, Loc, false, false, SS); |
Douglas Gregor | 1f88aa7 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 1142 | } |
Douglas Gregor | 48840c7 | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1143 | } |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1144 | |
| 1145 | // Only create DeclRefExpr's for valid Decl's. |
| 1146 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1147 | return ExprError(); |
| 1148 | |
Chris Lattner | b2ebd48 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1149 | // If the identifier reference is inside a block, and it refers to a value |
| 1150 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1151 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1152 | // the block is formed. |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1153 | // |
Chris Lattner | b2ebd48 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1154 | // We do not do this for things like enum constants, global variables, etc, |
| 1155 | // as they do not get snapshotted. |
| 1156 | // |
| 1157 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1158 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 9c2b33f | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1159 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1160 | // The BlocksAttr indicates the variable is bound by-reference. |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 1161 | if (VD->getAttr<BlocksAttr>(Context)) |
Eli Friedman | 9c2b33f | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1162 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 89942a0 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1163 | // This is to record that a 'const' was actually synthesize and added. |
| 1164 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1165 | // Variable will be bound by-copy, make it const within the closure. |
Fariborz Jahanian | 89942a0 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1166 | |
Eli Friedman | 9c2b33f | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1167 | ExprTy.addConst(); |
Fariborz Jahanian | 89942a0 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1168 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
| 1169 | constAdded)); |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1170 | } |
| 1171 | // If this reference is not in a block or if the referenced variable is |
| 1172 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1173 | |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1174 | bool TypeDependent = false; |
Douglas Gregor | a5d8461 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1175 | bool ValueDependent = false; |
| 1176 | if (getLangOptions().CPlusPlus) { |
| 1177 | // C++ [temp.dep.expr]p3: |
| 1178 | // An id-expression is type-dependent if it contains: |
| 1179 | // - an identifier that was declared with a dependent type, |
| 1180 | if (VD->getType()->isDependentType()) |
| 1181 | TypeDependent = true; |
| 1182 | // - FIXME: a template-id that is dependent, |
| 1183 | // - a conversion-function-id that specifies a dependent type, |
| 1184 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1185 | Name.getCXXNameType()->isDependentType()) |
| 1186 | TypeDependent = true; |
| 1187 | // - a nested-name-specifier that contains a class-name that |
| 1188 | // names a dependent type. |
| 1189 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | 734b4ba | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1190 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | a5d8461 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1191 | DC; DC = DC->getParent()) { |
| 1192 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1193 | if (DC->isRecord()) { |
Douglas Gregor | a5d8461 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1194 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1195 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1196 | TypeDependent = true; |
| 1197 | break; |
| 1198 | } |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1199 | } |
| 1200 | } |
| 1201 | } |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1202 | |
Douglas Gregor | a5d8461 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1203 | // C++ [temp.dep.constexpr]p2: |
| 1204 | // |
| 1205 | // An identifier is value-dependent if it is: |
| 1206 | // - a name declared with a dependent type, |
| 1207 | if (TypeDependent) |
| 1208 | ValueDependent = true; |
| 1209 | // - the name of a non-type template parameter, |
| 1210 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1211 | ValueDependent = true; |
| 1212 | // - a constant with integral or enumeration type and is |
| 1213 | // initialized with an expression that is value-dependent |
Eli Friedman | 1f7744a | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1214 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
| 1215 | if (Dcl->getType().getCVRQualifiers() == QualType::Const && |
| 1216 | Dcl->getInit()) { |
| 1217 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1218 | } |
| 1219 | } |
Douglas Gregor | a5d8461 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1220 | } |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1221 | |
Anders Carlsson | 4571d81 | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1222 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1223 | TypeDependent, ValueDependent, SS); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1224 | } |
| 1225 | |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1226 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1227 | tok::TokenKind Kind) { |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1228 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1229 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1230 | switch (Kind) { |
Chris Lattner | e12ca5d | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1231 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1232 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1233 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1234 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1235 | } |
Chris Lattner | e12ca5d | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1236 | |
Chris Lattner | 7e63751 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1237 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1238 | // string. |
Chris Lattner | fc9511c | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1239 | unsigned Length; |
Chris Lattner | e5cb586 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 1240 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1241 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | bce5e4f | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1242 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1243 | Length = MD->getSynthesizedMethodSize(); |
| 1244 | else { |
| 1245 | Diag(Loc, diag::ext_predef_outside_function); |
| 1246 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1247 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1248 | } |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1249 | |
| 1250 | |
Chris Lattner | fc9511c | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1251 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | e12ca5d | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1252 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | fc9511c | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1253 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1254 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1255 | } |
| 1256 | |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1257 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1258 | llvm::SmallString<16> CharBuffer; |
| 1259 | CharBuffer.resize(Tok.getLength()); |
| 1260 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1261 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1262 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1263 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1264 | Tok.getLocation(), PP); |
| 1265 | if (Literal.hadError()) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1266 | return ExprError(); |
Chris Lattner | 6b22fb7 | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1267 | |
| 1268 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1269 | |
Sebastian Redl | 7532493 | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1270 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1271 | Literal.isWide(), |
| 1272 | type, Tok.getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1273 | } |
| 1274 | |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1275 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1276 | // Fast path for a single digit (which is quite common). A single digit |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1277 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1278 | if (Tok.getLength() == 1) { |
Chris Lattner | c374f8b | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1279 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | fd5f143 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1280 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1281 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | e5f128a | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1282 | Context.IntTy, Tok.getLocation())); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1283 | } |
Ted Kremenek | dbde228 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1284 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1285 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 46d9134 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1286 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1287 | IntegerBuffer.resize(Tok.getLength()+1); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1288 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1289 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1290 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1291 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1292 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1293 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1294 | Tok.getLocation(), PP); |
| 1295 | if (Literal.hadError) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1296 | return ExprError(); |
| 1297 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1298 | Expr *Res; |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1299 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1300 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 858eece | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1301 | QualType Ty; |
Chris Lattner | 2a674dc | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1302 | if (Literal.isFloat) |
Chris Lattner | 858eece | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1303 | Ty = Context.FloatTy; |
Chris Lattner | 2a674dc | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1304 | else if (!Literal.isLong) |
Chris Lattner | 858eece | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1305 | Ty = Context.DoubleTy; |
Chris Lattner | 2a674dc | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1306 | else |
Chris Lattner | fc18dcc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1307 | Ty = Context.LongDoubleTy; |
Chris Lattner | 2a674dc | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1308 | |
| 1309 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1310 | |
Ted Kremenek | ddedbe2 | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1311 | // isExact will be set by GetFloatValue(). |
| 1312 | bool isExact = false; |
Sebastian Redl | 7532493 | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1313 | Res = new (Context) FloatingLiteral(Literal.GetFloatValue(Format, &isExact), |
| 1314 | &isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1315 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1316 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1317 | return ExprError(); |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1318 | } else { |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1319 | QualType Ty; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1320 | |
Neil Booth | 7421e9c | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1321 | // long long is a C99 feature. |
| 1322 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 9bd4708 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1323 | Literal.isLongLong) |
Neil Booth | 7421e9c | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1324 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1325 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1326 | // Get the value in the widest-possible width. |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1327 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1328 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1329 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1330 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1331 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1332 | Ty = Context.UnsignedLongLongTy; |
| 1333 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1334 | "long long is not intmax_t?"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1335 | } else { |
| 1336 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1337 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1338 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1339 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1340 | // be an unsigned int. |
| 1341 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1342 | |
| 1343 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1344 | unsigned Width = 0; |
Chris Lattner | 98540b6 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1345 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1346 | // Are int/unsigned possibilities? |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1347 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1348 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1349 | // Does it fit in a unsigned int? |
| 1350 | if (ResultVal.isIntN(IntSize)) { |
| 1351 | // Does it fit in a signed int? |
| 1352 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1353 | Ty = Context.IntTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1354 | else if (AllowUnsigned) |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1355 | Ty = Context.UnsignedIntTy; |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1356 | Width = IntSize; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1357 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1358 | } |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1359 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1360 | // Are long/unsigned long possibilities? |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1361 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1362 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1363 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1364 | // Does it fit in a unsigned long? |
| 1365 | if (ResultVal.isIntN(LongSize)) { |
| 1366 | // Does it fit in a signed long? |
| 1367 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1368 | Ty = Context.LongTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1369 | else if (AllowUnsigned) |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1370 | Ty = Context.UnsignedLongTy; |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1371 | Width = LongSize; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1372 | } |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1373 | } |
| 1374 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1375 | // Finally, check long long if needed. |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1376 | if (Ty.isNull()) { |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1377 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1378 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1379 | // Does it fit in a unsigned long long? |
| 1380 | if (ResultVal.isIntN(LongLongSize)) { |
| 1381 | // Does it fit in a signed long long? |
| 1382 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1383 | Ty = Context.LongLongTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1384 | else if (AllowUnsigned) |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1385 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1386 | Width = LongLongSize; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1387 | } |
| 1388 | } |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1389 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1390 | // If we still couldn't decide a type, we probably have something that |
| 1391 | // does not fit in a signed long long, but has no U suffix. |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1392 | if (Ty.isNull()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1393 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1394 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1395 | Width = Context.Target.getLongLongWidth(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1396 | } |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1397 | |
Chris Lattner | e406887 | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1398 | if (ResultVal.getBitWidth() != Width) |
| 1399 | ResultVal.trunc(Width); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1400 | } |
Sebastian Redl | 7532493 | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1401 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1402 | } |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1403 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1404 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1405 | if (Literal.isImaginary) |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1406 | Res = new (Context) ImaginaryLiteral(Res, |
| 1407 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1408 | |
| 1409 | return Owned(Res); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1410 | } |
| 1411 | |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1412 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1413 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | 39ecdcf | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1414 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1415 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1416 | return Owned(new (Context) ParenExpr(L, R, E)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1420 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1421 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0cb7c87 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1422 | SourceLocation OpLoc, |
| 1423 | const SourceRange &ExprRange, |
| 1424 | bool isSizeof) { |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1425 | if (exprType->isDependentType()) |
| 1426 | return false; |
| 1427 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1428 | // C99 6.5.3.4p1: |
Chris Lattner | 159fe08 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1429 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1430 | // alignof(function) is allowed as an extension. |
Chris Lattner | 159fe08 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1431 | if (isSizeof) |
| 1432 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1433 | return false; |
| 1434 | } |
| 1435 | |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1436 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 159fe08 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1437 | if (exprType->isVoidType()) { |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1438 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1439 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 159fe08 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1440 | return false; |
| 1441 | } |
Chris Lattner | e1127c4 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1442 | |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1443 | if (RequireCompleteType(OpLoc, exprType, |
| 1444 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1445 | diag::err_alignof_incomplete_type, |
| 1446 | ExprRange)) |
| 1447 | return true; |
| 1448 | |
| 1449 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | bf2b095 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1450 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1451 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | f3ce857 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1452 | << exprType << isSizeof << ExprRange; |
| 1453 | return true; |
Chris Lattner | e1127c4 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1456 | return false; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1457 | } |
| 1458 | |
Chris Lattner | 8d9f796 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1459 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1460 | const SourceRange &ExprRange) { |
| 1461 | E = E->IgnoreParens(); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1462 | |
Chris Lattner | 8d9f796 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1463 | // alignof decl is always ok. |
| 1464 | if (isa<DeclRefExpr>(E)) |
| 1465 | return false; |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1466 | |
| 1467 | // Cannot know anything else if the expression is dependent. |
| 1468 | if (E->isTypeDependent()) |
| 1469 | return false; |
| 1470 | |
Douglas Gregor | 531434b | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1471 | if (E->getBitField()) { |
| 1472 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1473 | return true; |
Chris Lattner | 8d9f796 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1474 | } |
Douglas Gregor | 531434b | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1475 | |
| 1476 | // Alignment of a field access is always okay, so long as it isn't a |
| 1477 | // bit-field. |
| 1478 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
| 1479 | if (dyn_cast<FieldDecl>(ME->getMemberDecl())) |
| 1480 | return false; |
| 1481 | |
Chris Lattner | 8d9f796 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1482 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1483 | } |
| 1484 | |
Douglas Gregor | 396f114 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1485 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1486 | Action::OwningExprResult |
| 1487 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1488 | bool isSizeOf, SourceRange R) { |
| 1489 | if (T.isNull()) |
| 1490 | return ExprError(); |
| 1491 | |
| 1492 | if (!T->isDependentType() && |
| 1493 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1494 | return ExprError(); |
| 1495 | |
| 1496 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1497 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1498 | Context.getSizeType(), OpLoc, |
| 1499 | R.getEnd())); |
| 1500 | } |
| 1501 | |
| 1502 | /// \brief Build a sizeof or alignof expression given an expression |
| 1503 | /// operand. |
| 1504 | Action::OwningExprResult |
| 1505 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1506 | bool isSizeOf, SourceRange R) { |
| 1507 | // Verify that the operand is valid. |
| 1508 | bool isInvalid = false; |
| 1509 | if (E->isTypeDependent()) { |
| 1510 | // Delay type-checking for type-dependent expressions. |
| 1511 | } else if (!isSizeOf) { |
| 1512 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 531434b | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1513 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | 396f114 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1514 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1515 | isInvalid = true; |
| 1516 | } else { |
| 1517 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1518 | } |
| 1519 | |
| 1520 | if (isInvalid) |
| 1521 | return ExprError(); |
| 1522 | |
| 1523 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1524 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1525 | Context.getSizeType(), OpLoc, |
| 1526 | R.getEnd())); |
| 1527 | } |
| 1528 | |
Sebastian Redl | 0cb7c87 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1529 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1530 | /// the same for @c alignof and @c __alignof |
| 1531 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1532 | Action::OwningExprResult |
Sebastian Redl | 0cb7c87 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1533 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1534 | void *TyOrEx, const SourceRange &ArgRange) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1535 | // If error parsing type, ignore. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1536 | if (TyOrEx == 0) return ExprError(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1537 | |
Sebastian Redl | 0cb7c87 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1538 | if (isType) { |
Douglas Gregor | 396f114 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1539 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1540 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1541 | } |
Sebastian Redl | 0cb7c87 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1542 | |
Douglas Gregor | 396f114 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1543 | // Get the end location. |
| 1544 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1545 | Action::OwningExprResult Result |
| 1546 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1547 | |
| 1548 | if (Result.isInvalid()) |
| 1549 | DeleteExpr(ArgEx); |
| 1550 | |
| 1551 | return move(Result); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1552 | } |
| 1553 | |
Chris Lattner | 57e5f7e | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1554 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1555 | if (V->isTypeDependent()) |
| 1556 | return Context.DependentTy; |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1557 | |
Chris Lattner | a16e42d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1558 | // These operators return the element type of a complex type. |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1559 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1560 | return CT->getElementType(); |
Chris Lattner | a16e42d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1561 | |
| 1562 | // Otherwise they pass through real integer and floating point types here. |
| 1563 | if (V->getType()->isArithmeticType()) |
| 1564 | return V->getType(); |
| 1565 | |
| 1566 | // Reject anything else. |
Chris Lattner | 57e5f7e | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1567 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1568 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | a16e42d | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1569 | return QualType(); |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1570 | } |
| 1571 | |
| 1572 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1573 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1574 | Action::OwningExprResult |
| 1575 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1576 | tok::TokenKind Kind, ExprArg Input) { |
| 1577 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1578 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1579 | UnaryOperator::Opcode Opc; |
| 1580 | switch (Kind) { |
| 1581 | default: assert(0 && "Unknown unary op!"); |
| 1582 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1583 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1584 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1585 | |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1586 | if (getLangOptions().CPlusPlus && |
| 1587 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1588 | // Which overloaded operator? |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1589 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1590 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1591 | |
| 1592 | // C++ [over.inc]p1: |
| 1593 | // |
| 1594 | // [...] If the function is a member function with one |
| 1595 | // parameter (which shall be of type int) or a non-member |
| 1596 | // function with two parameters (the second of which shall be |
| 1597 | // of type int), it defines the postfix increment operator ++ |
| 1598 | // for objects of that type. When the postfix increment is |
| 1599 | // called as a result of using the ++ operator, the int |
| 1600 | // argument will have value zero. |
| 1601 | Expr *Args[2] = { |
| 1602 | Arg, |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1603 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1604 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1605 | }; |
| 1606 | |
| 1607 | // Build the candidate set for overloading |
| 1608 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1609 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1610 | |
| 1611 | // Perform overload resolution. |
| 1612 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1613 | switch (BestViableFunction(CandidateSet, OpLoc, Best)) { |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1614 | case OR_Success: { |
| 1615 | // We found a built-in operator or an overloaded operator. |
| 1616 | FunctionDecl *FnDecl = Best->Function; |
| 1617 | |
| 1618 | if (FnDecl) { |
| 1619 | // We matched an overloaded operator. Build a call to that |
| 1620 | // operator. |
| 1621 | |
| 1622 | // Convert the arguments. |
| 1623 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1624 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1625 | return ExprError(); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1626 | } else { |
| 1627 | // Convert the arguments. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1628 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1629 | FnDecl->getParamDecl(0)->getType(), |
| 1630 | "passing")) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1631 | return ExprError(); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1632 | } |
| 1633 | |
| 1634 | // Determine the result type |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1635 | QualType ResultTy |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1636 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1637 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1638 | |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1639 | // Build the actual expression node. |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1640 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 6d8e573 | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1641 | SourceLocation()); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1642 | UsualUnaryConversions(FnExpr); |
| 1643 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1644 | Input.release(); |
Douglas Gregor | b2f81ac | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1645 | Args[0] = Arg; |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1646 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1647 | Args, 2, ResultTy, |
| 1648 | OpLoc)); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1649 | } else { |
| 1650 | // We matched a built-in operator. Convert the arguments, then |
| 1651 | // break out so that we will build the appropriate built-in |
| 1652 | // operator node. |
| 1653 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1654 | "passing")) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1655 | return ExprError(); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1656 | |
| 1657 | break; |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1658 | } |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
| 1661 | case OR_No_Viable_Function: |
| 1662 | // No viable function; fall through to handling this as a |
| 1663 | // built-in operator, which will produce an error message for us. |
| 1664 | break; |
| 1665 | |
| 1666 | case OR_Ambiguous: |
| 1667 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1668 | << UnaryOperator::getOpcodeStr(Opc) |
| 1669 | << Arg->getSourceRange(); |
| 1670 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1671 | return ExprError(); |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1672 | |
| 1673 | case OR_Deleted: |
| 1674 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1675 | << Best->Function->isDeleted() |
| 1676 | << UnaryOperator::getOpcodeStr(Opc) |
| 1677 | << Arg->getSourceRange(); |
| 1678 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1679 | return ExprError(); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1680 | } |
| 1681 | |
| 1682 | // Either we found no viable overloaded operator or we matched a |
| 1683 | // built-in operator. In either case, fall through to trying to |
| 1684 | // build a built-in operation. |
| 1685 | } |
| 1686 | |
Sebastian Redl | 0440c8c | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 1687 | QualType result = CheckIncrementDecrementOperand(Arg, OpLoc, |
| 1688 | Opc == UnaryOperator::PostInc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1689 | if (result.isNull()) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1690 | return ExprError(); |
| 1691 | Input.release(); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1692 | return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1693 | } |
| 1694 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1695 | Action::OwningExprResult |
| 1696 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1697 | ExprArg Idx, SourceLocation RLoc) { |
| 1698 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1699 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1700 | |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1701 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | de72f3e | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1702 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1703 | Base.release(); |
| 1704 | Idx.release(); |
| 1705 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1706 | Context.DependentTy, RLoc)); |
| 1707 | } |
| 1708 | |
| 1709 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1710 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | e658bf5 | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1711 | LHSExp->getType()->isEnumeralType() || |
| 1712 | RHSExp->getType()->isRecordType() || |
| 1713 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1714 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1715 | // to the candidate set. |
| 1716 | OverloadCandidateSet CandidateSet; |
| 1717 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1718 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1719 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1720 | |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1721 | // Perform overload resolution. |
| 1722 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1723 | switch (BestViableFunction(CandidateSet, LLoc, Best)) { |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1724 | case OR_Success: { |
| 1725 | // We found a built-in operator or an overloaded operator. |
| 1726 | FunctionDecl *FnDecl = Best->Function; |
| 1727 | |
| 1728 | if (FnDecl) { |
| 1729 | // We matched an overloaded operator. Build a call to that |
| 1730 | // operator. |
| 1731 | |
| 1732 | // Convert the arguments. |
| 1733 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1734 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1735 | PerformCopyInitialization(RHSExp, |
| 1736 | FnDecl->getParamDecl(0)->getType(), |
| 1737 | "passing")) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1738 | return ExprError(); |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1739 | } else { |
| 1740 | // Convert the arguments. |
| 1741 | if (PerformCopyInitialization(LHSExp, |
| 1742 | FnDecl->getParamDecl(0)->getType(), |
| 1743 | "passing") || |
| 1744 | PerformCopyInitialization(RHSExp, |
| 1745 | FnDecl->getParamDecl(1)->getType(), |
| 1746 | "passing")) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1747 | return ExprError(); |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1748 | } |
| 1749 | |
| 1750 | // Determine the result type |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1751 | QualType ResultTy |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1752 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1753 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1754 | |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1755 | // Build the actual expression node. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1756 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1757 | SourceLocation()); |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1758 | UsualUnaryConversions(FnExpr); |
| 1759 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1760 | Base.release(); |
| 1761 | Idx.release(); |
Douglas Gregor | b2f81ac | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1762 | Args[0] = LHSExp; |
| 1763 | Args[1] = RHSExp; |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1764 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1765 | FnExpr, Args, 2, |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1766 | ResultTy, LLoc)); |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1767 | } else { |
| 1768 | // We matched a built-in operator. Convert the arguments, then |
| 1769 | // break out so that we will build the appropriate built-in |
| 1770 | // operator node. |
| 1771 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1772 | "passing") || |
| 1773 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1774 | "passing")) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1775 | return ExprError(); |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1776 | |
| 1777 | break; |
| 1778 | } |
| 1779 | } |
| 1780 | |
| 1781 | case OR_No_Viable_Function: |
| 1782 | // No viable function; fall through to handling this as a |
| 1783 | // built-in operator, which will produce an error message for us. |
| 1784 | break; |
| 1785 | |
| 1786 | case OR_Ambiguous: |
| 1787 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1788 | << "[]" |
| 1789 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1790 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1791 | return ExprError(); |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1792 | |
| 1793 | case OR_Deleted: |
| 1794 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1795 | << Best->Function->isDeleted() |
| 1796 | << "[]" |
| 1797 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1798 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1799 | return ExprError(); |
Douglas Gregor | 80723c5 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1800 | } |
| 1801 | |
| 1802 | // Either we found no viable overloaded operator or we matched a |
| 1803 | // built-in operator. In either case, fall through to trying to |
| 1804 | // build a built-in operation. |
| 1805 | } |
| 1806 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1807 | // Perform default conversions. |
| 1808 | DefaultFunctionArrayConversion(LHSExp); |
| 1809 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1810 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1811 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
| 1812 | |
| 1813 | // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1814 | // to the expression *((e1)+(e2)). This means the array "Base" may actually be |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1815 | // in the subscript position. As a result, we need to derive the array base |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1816 | // and index from the expression types. |
| 1817 | Expr *BaseExpr, *IndexExpr; |
| 1818 | QualType ResultType; |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1819 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1820 | BaseExpr = LHSExp; |
| 1821 | IndexExpr = RHSExp; |
| 1822 | ResultType = Context.DependentTy; |
| 1823 | } else if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1824 | BaseExpr = LHSExp; |
| 1825 | IndexExpr = RHSExp; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1826 | ResultType = PTy->getPointeeType(); |
Chris Lattner | 7931f4a | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1827 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1828 | // Handle the uncommon case of "123[Ptr]". |
| 1829 | BaseExpr = RHSExp; |
| 1830 | IndexExpr = LHSExp; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1831 | ResultType = PTy->getPointeeType(); |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1832 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1833 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1834 | IndexExpr = RHSExp; |
Nate Begeman | 5738547 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1835 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1836 | // FIXME: need to deal with const... |
| 1837 | ResultType = VTy->getElementType(); |
Eli Friedman | d461407 | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1838 | } else if (LHSTy->isArrayType()) { |
| 1839 | // If we see an array that wasn't promoted by |
| 1840 | // DefaultFunctionArrayConversion, it must be an array that |
| 1841 | // wasn't promoted because of the C90 rule that doesn't |
| 1842 | // allow promoting non-lvalue arrays. Warn, then |
| 1843 | // force the promotion here. |
| 1844 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1845 | LHSExp->getSourceRange(); |
| 1846 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); |
| 1847 | LHSTy = LHSExp->getType(); |
| 1848 | |
| 1849 | BaseExpr = LHSExp; |
| 1850 | IndexExpr = RHSExp; |
| 1851 | ResultType = LHSTy->getAsPointerType()->getPointeeType(); |
| 1852 | } else if (RHSTy->isArrayType()) { |
| 1853 | // Same as previous, except for 123[f().a] case |
| 1854 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1855 | RHSExp->getSourceRange(); |
| 1856 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); |
| 1857 | RHSTy = RHSExp->getType(); |
| 1858 | |
| 1859 | BaseExpr = RHSExp; |
| 1860 | IndexExpr = LHSExp; |
| 1861 | ResultType = RHSTy->getAsPointerType()->getPointeeType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1862 | } else { |
Chris Lattner | 7264d21 | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1863 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1864 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1865 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1866 | // C99 6.5.2.1p1 |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1867 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 7264d21 | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1868 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1869 | << IndexExpr->getSourceRange()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1870 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1871 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1872 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1873 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1874 | // incomplete types are not object types. |
| 1875 | if (ResultType->isFunctionType()) { |
| 1876 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1877 | << ResultType << BaseExpr->getSourceRange(); |
| 1878 | return ExprError(); |
| 1879 | } |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1880 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1881 | if (!ResultType->isDependentType() && |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1882 | RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type, |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1883 | BaseExpr->getSourceRange())) |
| 1884 | return ExprError(); |
Chris Lattner | 95933c1 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1885 | |
| 1886 | // Diagnose bad cases where we step over interface counts. |
| 1887 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1888 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1889 | << ResultType << BaseExpr->getSourceRange(); |
| 1890 | return ExprError(); |
| 1891 | } |
| 1892 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1893 | Base.release(); |
| 1894 | Idx.release(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1895 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1896 | ResultType, RLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1897 | } |
| 1898 | |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1899 | QualType Sema:: |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1900 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1901 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1902 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1903 | |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1904 | // The vector accessor can't exceed the number of elements. |
| 1905 | const char *compStr = CompName.getName(); |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1906 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1907 | // This flag determines whether or not the component is one of the four |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1908 | // special names that indicate a subset of exactly half the elements are |
| 1909 | // to be selected. |
| 1910 | bool HalvingSwizzle = false; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1911 | |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1912 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1913 | // indicating that it is a string of hex values to be used as vector indices. |
Nate Begeman | e2ed6f7 | 2009-06-25 21:06:09 +0000 | [diff] [blame] | 1914 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1915 | |
| 1916 | // Check that we've found one of the special components, or that the component |
| 1917 | // names must come from the same set. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1918 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1919 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1920 | HalvingSwizzle = true; |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1921 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 9096b79 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1922 | do |
| 1923 | compStr++; |
| 1924 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1925 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 9096b79 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1926 | do |
| 1927 | compStr++; |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1928 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 9096b79 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1929 | } |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1930 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1931 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1932 | // We didn't get to the end of the string. This means the component names |
| 1933 | // didn't come from the same set *or* we encountered an illegal name. |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1934 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1935 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1936 | return QualType(); |
| 1937 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1938 | |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1939 | // Ensure no component accessor exceeds the width of the vector type it |
| 1940 | // operates on. |
| 1941 | if (!HalvingSwizzle) { |
| 1942 | compStr = CompName.getName(); |
| 1943 | |
| 1944 | if (HexSwizzle) |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1945 | compStr++; |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1946 | |
| 1947 | while (*compStr) { |
| 1948 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1949 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1950 | << baseType << SourceRange(CompLoc); |
| 1951 | return QualType(); |
| 1952 | } |
| 1953 | } |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1954 | } |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1955 | |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1956 | // If this is a halving swizzle, verify that the base type has an even |
| 1957 | // number of elements. |
| 1958 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1959 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1960 | << baseType << SourceRange(CompLoc); |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1961 | return QualType(); |
| 1962 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1963 | |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1964 | // The component accessor looks fine - now we need to compute the actual type. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1965 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1966 | // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc. |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1967 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1968 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 1486b50 | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1969 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 1970 | : CompName.getLength(); |
| 1971 | if (HexSwizzle) |
| 1972 | CompSize--; |
| 1973 | |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1974 | if (CompSize == 1) |
| 1975 | return vecType->getElementType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1976 | |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1977 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1978 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1979 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1980 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1981 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1982 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | 82113e3 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1983 | } |
| 1984 | return VT; // should never get here (a typedef type should always be found). |
Steve Naroff | 1b8a46c | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1985 | } |
| 1986 | |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1987 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 1988 | IdentifierInfo &Member, |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1989 | const Selector &Sel, |
| 1990 | ASTContext &Context) { |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1991 | |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1992 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Context, &Member)) |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1993 | return PD; |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1994 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Context, Sel)) |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1995 | return OMD; |
| 1996 | |
| 1997 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1998 | E = PDecl->protocol_end(); I != E; ++I) { |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1999 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
| 2000 | Context)) |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2001 | return D; |
| 2002 | } |
| 2003 | return 0; |
| 2004 | } |
| 2005 | |
Steve Naroff | c75c1a8 | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2006 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2007 | IdentifierInfo &Member, |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2008 | const Selector &Sel, |
| 2009 | ASTContext &Context) { |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2010 | // Check protocols on qualified interfaces. |
| 2011 | Decl *GDecl = 0; |
Steve Naroff | c75c1a8 | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2012 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2013 | E = QIdTy->qual_end(); I != E; ++I) { |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2014 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, &Member)) { |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2015 | GDecl = PD; |
| 2016 | break; |
| 2017 | } |
| 2018 | // Also must look for a getter name which uses property syntax. |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2019 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Context, Sel)) { |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2020 | GDecl = OMD; |
| 2021 | break; |
| 2022 | } |
| 2023 | } |
| 2024 | if (!GDecl) { |
Steve Naroff | c75c1a8 | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2025 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2026 | E = QIdTy->qual_end(); I != E; ++I) { |
| 2027 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2028 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2029 | if (GDecl) |
| 2030 | return GDecl; |
| 2031 | } |
| 2032 | } |
| 2033 | return GDecl; |
| 2034 | } |
Chris Lattner | 2cb744b | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 2035 | |
Fariborz Jahanian | 0119fd2 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2036 | /// FindMethodInNestedImplementations - Look up a method in current and |
| 2037 | /// all base class implementations. |
| 2038 | /// |
| 2039 | ObjCMethodDecl *Sema::FindMethodInNestedImplementations( |
| 2040 | const ObjCInterfaceDecl *IFace, |
| 2041 | const Selector &Sel) { |
| 2042 | ObjCMethodDecl *Method = 0; |
Douglas Gregor | afd5eb3 | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 2043 | if (ObjCImplementationDecl *ImpDecl |
| 2044 | = LookupObjCImplementation(IFace->getIdentifier())) |
Douglas Gregor | cd19b57 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2045 | Method = ImpDecl->getInstanceMethod(Context, Sel); |
Fariborz Jahanian | 0119fd2 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2046 | |
| 2047 | if (!Method && IFace->getSuperClass()) |
| 2048 | return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel); |
| 2049 | return Method; |
| 2050 | } |
| 2051 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2052 | Action::OwningExprResult |
| 2053 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 2054 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | 0cc2ac1 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2055 | IdentifierInfo &Member, |
Chris Lattner | 5261d0c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2056 | DeclPtrTy ObjCImpDecl) { |
Anders Carlsson | c154a72 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2057 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2058 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 137e11d | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 2059 | |
| 2060 | // Perform default conversions. |
| 2061 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2062 | |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2063 | QualType BaseType = BaseExpr->getType(); |
| 2064 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2065 | |
Chris Lattner | b2b9da7 | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2066 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2067 | // must have pointer type, and the accessed type is the pointee. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2068 | if (OpKind == tok::arrow) { |
Anders Carlsson | 72d3c66 | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2069 | if (BaseType->isDependentType()) |
Douglas Gregor | 93b8b0f | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2070 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2071 | BaseExpr, true, |
| 2072 | OpLoc, |
| 2073 | DeclarationName(&Member), |
| 2074 | MemberLoc)); |
Anders Carlsson | 72d3c66 | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2075 | else if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2076 | BaseType = PT->getPointeeType(); |
Douglas Gregor | 7f3fec5 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 2077 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2078 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 2079 | MemberLoc, Member)); |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2080 | else |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2081 | return ExprError(Diag(MemberLoc, |
| 2082 | diag::err_typecheck_member_reference_arrow) |
| 2083 | << BaseType << BaseExpr->getSourceRange()); |
Anders Carlsson | 72d3c66 | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2084 | } else { |
Anders Carlsson | 4082ecd | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2085 | if (BaseType->isDependentType()) { |
| 2086 | // Require that the base type isn't a pointer type |
| 2087 | // (so we'll report an error for) |
| 2088 | // T* t; |
| 2089 | // t.f; |
| 2090 | // |
| 2091 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2092 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2093 | // allows this, while still reporting an error if T is a struct pointer. |
| 2094 | const PointerType *PT = BaseType->getAsPointerType(); |
| 2095 | |
| 2096 | if (!PT || (getLangOptions().ObjC1 && |
| 2097 | !PT->getPointeeType()->isRecordType())) |
Douglas Gregor | 93b8b0f | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2098 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2099 | BaseExpr, false, |
| 2100 | OpLoc, |
| 2101 | DeclarationName(&Member), |
| 2102 | MemberLoc)); |
Anders Carlsson | 4082ecd | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2103 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2104 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2105 | |
Chris Lattner | b2b9da7 | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2106 | // Handle field access to simple records. This also handles access to fields |
| 2107 | // of the ObjC 'id' struct. |
Chris Lattner | e35a104 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 2108 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2109 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | c84d893 | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2110 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 46fe06e | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2111 | diag::err_typecheck_incomplete_tag, |
| 2112 | BaseExpr->getSourceRange())) |
| 2113 | return ExprError(); |
| 2114 | |
Steve Naroff | 2cb6638 | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2115 | // The record definition is complete, now make sure the member is valid. |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2116 | // FIXME: Qualified name lookup for C++ is a bit more complicated than this. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2117 | LookupResult Result |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2118 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 52ae30c | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 2119 | LookupMemberName, false); |
Douglas Gregor | 29dfa2f | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2120 | |
Douglas Gregor | 29dfa2f | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2121 | if (!Result) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2122 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 2123 | << &Member << BaseExpr->getSourceRange()); |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2124 | if (Result.isAmbiguous()) { |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2125 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 2126 | MemberLoc, BaseExpr->getSourceRange()); |
| 2127 | return ExprError(); |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2128 | } |
| 2129 | |
| 2130 | NamedDecl *MemberDecl = Result; |
Douglas Gregor | 8acb727 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2131 | |
Chris Lattner | fd57ecc | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2132 | // If the decl being referenced had an error, return an error for this |
| 2133 | // sub-expr without emitting another error, in order to avoid cascading |
| 2134 | // error cases. |
| 2135 | if (MemberDecl->isInvalidDecl()) |
| 2136 | return ExprError(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2137 | |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2138 | // Check the use of this field |
| 2139 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 2140 | return ExprError(); |
Chris Lattner | fd57ecc | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2141 | |
Douglas Gregor | ddfd9d5 | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2142 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2143 | // We may have found a field within an anonymous union or struct |
| 2144 | // (C++ [class.union]). |
| 2145 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd883f7 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2146 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2147 | BaseExpr, OpLoc); |
Douglas Gregor | 723d333 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2148 | |
Douglas Gregor | 82d4477 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2149 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 2150 | // FIXME: Handle address space modifiers |
Douglas Gregor | ddfd9d5 | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2151 | QualType MemberType = FD->getType(); |
Douglas Gregor | 82d4477 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2152 | if (const ReferenceType *Ref = MemberType->getAsReferenceType()) |
| 2153 | MemberType = Ref->getPointeeType(); |
| 2154 | else { |
| 2155 | unsigned combinedQualifiers = |
| 2156 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | ddfd9d5 | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2157 | if (FD->isMutable()) |
Douglas Gregor | 82d4477 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2158 | combinedQualifiers &= ~QualType::Const; |
| 2159 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 2160 | } |
Eli Friedman | 76b4983 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2161 | |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2162 | MarkDeclarationReferenced(MemberLoc, FD); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2163 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 2164 | MemberLoc, MemberType)); |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2165 | } |
| 2166 | |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2167 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2168 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2169 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2170 | Var, MemberLoc, |
| 2171 | Var->getType().getNonReferenceType())); |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2172 | } |
| 2173 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2174 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2175 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2176 | MemberFn, MemberLoc, |
| 2177 | MemberFn->getType())); |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2178 | } |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2179 | if (OverloadedFunctionDecl *Ovl |
| 2180 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2181 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2182 | MemberLoc, Context.OverloadTy)); |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2183 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2184 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2185 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 2186 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2187 | } |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2188 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2189 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 2190 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 76b4983 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2191 | |
Douglas Gregor | 82d4477 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2192 | // We found a declaration kind that we didn't expect. This is a |
| 2193 | // generic error message that tells the user that she can't refer |
| 2194 | // to this member with '.' or '->'. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2195 | return ExprError(Diag(MemberLoc, |
| 2196 | diag::err_typecheck_member_reference_unknown) |
| 2197 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | a57cf47 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2198 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2199 | |
Chris Lattner | e9d7161 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2200 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2201 | // (*Obj).ivar. |
Chris Lattner | b2b9da7 | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2202 | if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) { |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2203 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2204 | if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(Context, |
| 2205 | &Member, |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2206 | ClassDeclared)) { |
Chris Lattner | fd57ecc | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2207 | // If the decl being referenced had an error, return an error for this |
| 2208 | // sub-expr without emitting another error, in order to avoid cascading |
| 2209 | // error cases. |
| 2210 | if (IV->isInvalidDecl()) |
| 2211 | return ExprError(); |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2212 | |
| 2213 | // Check whether we can reference this field. |
| 2214 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2215 | return ExprError(); |
Steve Naroff | 8c56ee0 | 2009-03-26 16:01:08 +0000 | [diff] [blame] | 2216 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2217 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2218 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2219 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2220 | ClassOfMethodDecl = MD->getClassInterface(); |
Fariborz Jahanian | 0cc2ac1 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2221 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2222 | // Case of a c-function declared inside an objc implementation. |
| 2223 | // FIXME: For a c-style function nested inside an objc implementation |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2224 | // class, there is no implementation context available, so we pass |
| 2225 | // down the context as argument to this routine. Ideally, this context |
| 2226 | // need be passed down in the AST node and somehow calculated from the |
| 2227 | // AST for a function decl. |
Chris Lattner | 5261d0c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2228 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Fariborz Jahanian | 0cc2ac1 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2229 | if (ObjCImplementationDecl *IMPD = |
| 2230 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2231 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2232 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2233 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2234 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
Steve Naroff | f960657 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2235 | } |
Chris Lattner | 84ad833 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2236 | |
Fariborz Jahanian | 0cc2ac1 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2237 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2238 | if (ClassDeclared != IFTy->getDecl() || |
Fariborz Jahanian | 0cc2ac1 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2239 | ClassOfMethodDecl != ClassDeclared) |
Fariborz Jahanian | dd71e75 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2240 | Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 2241 | } |
| 2242 | // @protected |
| 2243 | else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl)) |
| 2244 | Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName(); |
| 2245 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2246 | |
Daniel Dunbar | f5254bd | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2247 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2248 | MemberLoc, BaseExpr, |
Daniel Dunbar | f5254bd | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2249 | OpKind == tok::arrow)); |
Fariborz Jahanian | 0977239 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2250 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2251 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 2252 | << IFTy->getDecl()->getDeclName() << &Member |
| 2253 | << BaseExpr->getSourceRange()); |
Chris Lattner | a57cf47 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2254 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2255 | |
Chris Lattner | e9d7161 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2256 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2257 | // pointer to a (potentially qualified) interface type. |
| 2258 | const PointerType *PTy; |
| 2259 | const ObjCInterfaceType *IFTy; |
| 2260 | if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) && |
| 2261 | (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) { |
| 2262 | ObjCInterfaceDecl *IFace = IFTy->getDecl(); |
Daniel Dunbar | dd85128 | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 2263 | |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2264 | // Search for a declared property first. |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2265 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Context, |
| 2266 | &Member)) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2267 | // Check whether we can reference this property. |
| 2268 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2269 | return ExprError(); |
Fariborz Jahanian | a996bb0 | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2270 | QualType ResTy = PD->getType(); |
| 2271 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2272 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel); |
Fariborz Jahanian | 80ccaa9 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2273 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2274 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | a996bb0 | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2275 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 51f6fb3 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2276 | MemberLoc, BaseExpr)); |
| 2277 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2278 | |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2279 | // Check protocols on qualified interfaces. |
Chris Lattner | d5f8179 | 2008-07-21 05:20:01 +0000 | [diff] [blame] | 2280 | for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(), |
| 2281 | E = IFTy->qual_end(); I != E; ++I) |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2282 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, |
| 2283 | &Member)) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2284 | // Check whether we can reference this property. |
| 2285 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2286 | return ExprError(); |
Chris Lattner | 51f6fb3 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2287 | |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2288 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 51f6fb3 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2289 | MemberLoc, BaseExpr)); |
| 2290 | } |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2291 | |
| 2292 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2293 | // selector is implemented. |
| 2294 | |
| 2295 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2296 | // shared with the code in ActOnInstanceMessage. |
| 2297 | |
| 2298 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2299 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2300 | |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2301 | // If this reference is in an @implementation, check for 'private' methods. |
| 2302 | if (!Getter) |
Fariborz Jahanian | 0119fd2 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2303 | Getter = FindMethodInNestedImplementations(IFace, Sel); |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2304 | |
Steve Naroff | 04151f3 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2305 | // Look through local category implementations associated with the class. |
| 2306 | if (!Getter) { |
| 2307 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) { |
| 2308 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | cd19b57 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2309 | Getter = ObjCCategoryImpls[i]->getInstanceMethod(Context, Sel); |
Steve Naroff | 04151f3 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2310 | } |
| 2311 | } |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2312 | if (Getter) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2313 | // Check if we can reference this property. |
| 2314 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2315 | return ExprError(); |
Steve Naroff | dede0c9 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2316 | } |
| 2317 | // If we found a getter then this may be a valid dot-reference, we |
| 2318 | // will look for the matching setter, in case it is needed. |
| 2319 | Selector SetterSel = |
| 2320 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2321 | PP.getSelectorTable(), &Member); |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2322 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(Context, SetterSel); |
Steve Naroff | dede0c9 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2323 | if (!Setter) { |
| 2324 | // If this reference is in an @implementation, also check for 'private' |
| 2325 | // methods. |
Fariborz Jahanian | 0119fd2 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2326 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | dede0c9 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2327 | } |
| 2328 | // Look through local category implementations associated with the class. |
| 2329 | if (!Setter) { |
| 2330 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2331 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | cd19b57 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2332 | Setter = ObjCCategoryImpls[i]->getInstanceMethod(Context, SetterSel); |
Fariborz Jahanian | c05da42 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 2333 | } |
Daniel Dunbar | 60e8b16 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2334 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2335 | |
Steve Naroff | dede0c9 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2336 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2337 | return ExprError(); |
| 2338 | |
| 2339 | if (Getter || Setter) { |
| 2340 | QualType PType; |
| 2341 | |
| 2342 | if (Getter) |
| 2343 | PType = Getter->getResultType(); |
| 2344 | else { |
| 2345 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2346 | E = Setter->param_end(); PI != E; ++PI) |
| 2347 | PType = (*PI)->getType(); |
| 2348 | } |
| 2349 | // FIXME: we must check that the setter has property type. |
| 2350 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2351 | Setter, MemberLoc, BaseExpr)); |
| 2352 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2353 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2354 | << &Member << BaseType); |
Fariborz Jahanian | 4af7249 | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2355 | } |
Steve Naroff | d1d4440 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2356 | // Handle properties on qualified "id" protocols. |
Steve Naroff | c75c1a8 | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2357 | const ObjCObjectPointerType *QIdTy; |
Steve Naroff | d1d4440 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2358 | if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) { |
| 2359 | // Check protocols on qualified interfaces. |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2360 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2361 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2362 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2363 | // Check the use of this declaration |
| 2364 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2365 | return ExprError(); |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2366 | |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2367 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 51f6fb3 | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2368 | MemberLoc, BaseExpr)); |
| 2369 | } |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2370 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
Douglas Gregor | aa57e86 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2371 | // Check the use of this method. |
| 2372 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2373 | return ExprError(); |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2374 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2375 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Fariborz Jahanian | 854f400 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2376 | OMD->getResultType(), |
| 2377 | OMD, OpLoc, MemberLoc, |
| 2378 | NULL, 0)); |
Fariborz Jahanian | 94cc823 | 2008-12-10 00:21:50 +0000 | [diff] [blame] | 2379 | } |
| 2380 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2381 | |
| 2382 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2383 | << &Member << BaseType); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2384 | } |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2385 | // Handle properties on ObjC 'Class' types. |
| 2386 | if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) { |
| 2387 | // Also must look for a getter name which uses property syntax. |
| 2388 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2389 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
Steve Naroff | 6f9e59f | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2390 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2391 | ObjCMethodDecl *Getter; |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2392 | // FIXME: need to also look locally in the implementation. |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2393 | if ((Getter = IFace->lookupClassMethod(Context, Sel))) { |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2394 | // Check the use of this method. |
Steve Naroff | 6f9e59f | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2395 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2396 | return ExprError(); |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2397 | } |
Steve Naroff | 6f9e59f | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2398 | // If we found a getter then this may be a valid dot-reference, we |
| 2399 | // will look for the matching setter, in case it is needed. |
| 2400 | Selector SetterSel = |
| 2401 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2402 | PP.getSelectorTable(), &Member); |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2403 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(Context, SetterSel); |
Steve Naroff | 6f9e59f | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2404 | if (!Setter) { |
| 2405 | // If this reference is in an @implementation, also check for 'private' |
| 2406 | // methods. |
Fariborz Jahanian | 0119fd2 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2407 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 6f9e59f | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2408 | } |
| 2409 | // Look through local category implementations associated with the class. |
| 2410 | if (!Setter) { |
| 2411 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2412 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | cd19b57 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2413 | Setter = ObjCCategoryImpls[i]->getClassMethod(Context, SetterSel); |
Steve Naroff | 6f9e59f | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2414 | } |
| 2415 | } |
| 2416 | |
| 2417 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2418 | return ExprError(); |
| 2419 | |
| 2420 | if (Getter || Setter) { |
| 2421 | QualType PType; |
| 2422 | |
| 2423 | if (Getter) |
| 2424 | PType = Getter->getResultType(); |
| 2425 | else { |
| 2426 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2427 | E = Setter->param_end(); PI != E; ++PI) |
| 2428 | PType = (*PI)->getType(); |
| 2429 | } |
| 2430 | // FIXME: we must check that the setter has property type. |
| 2431 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2432 | Setter, MemberLoc, BaseExpr)); |
| 2433 | } |
| 2434 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2435 | << &Member << BaseType); |
Steve Naroff | e3aa06f | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2436 | } |
| 2437 | } |
| 2438 | |
Chris Lattner | a57cf47 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2439 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 09020ee | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2440 | if (BaseType->isExtVectorType()) { |
Chris Lattner | a57cf47 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2441 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2442 | if (ret.isNull()) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2443 | return ExprError(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2444 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2445 | MemberLoc)); |
Chris Lattner | a57cf47 | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2446 | } |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2447 | |
Douglas Gregor | 762da55 | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2448 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2449 | << BaseType << BaseExpr->getSourceRange(); |
| 2450 | |
| 2451 | // If the user is trying to apply -> or . to a function or function |
| 2452 | // pointer, it's probably because they forgot parentheses to call |
| 2453 | // the function. Suggest the addition of those parentheses. |
| 2454 | if (BaseType == Context.OverloadTy || |
| 2455 | BaseType->isFunctionType() || |
| 2456 | (BaseType->isPointerType() && |
| 2457 | BaseType->getAsPointerType()->isFunctionType())) { |
| 2458 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2459 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2460 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2461 | } |
| 2462 | |
| 2463 | return ExprError(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2464 | } |
| 2465 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2466 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2467 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2468 | /// function prototype Proto. Call is the call expression itself, and |
| 2469 | /// Fn is the function expression. For a C++ member function, this |
| 2470 | /// routine does not attempt to convert the object argument. Returns |
| 2471 | /// true if the call is ill-formed. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2472 | bool |
| 2473 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2474 | FunctionDecl *FDecl, |
Douglas Gregor | 4fa5890 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2475 | const FunctionProtoType *Proto, |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2476 | Expr **Args, unsigned NumArgs, |
| 2477 | SourceLocation RParenLoc) { |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2478 | // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2479 | // assignment, to the types of the corresponding parameter, ... |
| 2480 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2481 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 4ac887b | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2482 | bool Invalid = false; |
| 2483 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2484 | // If too few arguments are available (and we don't have default |
| 2485 | // arguments for the remaining parameters), don't make the call. |
| 2486 | if (NumArgs < NumArgsInProto) { |
| 2487 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2488 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2489 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2490 | // Use default arguments for missing arguments |
| 2491 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 0c97e04 | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2492 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2493 | } |
| 2494 | |
| 2495 | // If too many are passed and not variadic, error on the extras and drop |
| 2496 | // them. |
| 2497 | if (NumArgs > NumArgsInProto) { |
| 2498 | if (!Proto->isVariadic()) { |
| 2499 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2500 | diag::err_typecheck_call_too_many_args) |
| 2501 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2502 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2503 | Args[NumArgs-1]->getLocEnd()); |
| 2504 | // This deletes the extra arguments. |
Ted Kremenek | 0c97e04 | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2505 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 4ac887b | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2506 | Invalid = true; |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2507 | } |
| 2508 | NumArgsToCheck = NumArgsInProto; |
| 2509 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2510 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2511 | // Continue to check argument types (even if we have too few/many args). |
| 2512 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2513 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2514 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2515 | Expr *Arg; |
Douglas Gregor | 62ae25a | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2516 | if (i < NumArgs) { |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2517 | Arg = Args[i]; |
Douglas Gregor | 62ae25a | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2518 | |
Eli Friedman | 83dec9e | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2519 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2520 | ProtoArgType, |
| 2521 | diag::err_call_incomplete_argument, |
| 2522 | Arg->getSourceRange())) |
| 2523 | return true; |
| 2524 | |
Douglas Gregor | 62ae25a | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2525 | // Pass the argument. |
| 2526 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2527 | return true; |
Anders Carlsson | a116e6e | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2528 | } else { |
| 2529 | if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) { |
| 2530 | Diag (Call->getSourceRange().getBegin(), |
| 2531 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2532 | FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName(); |
| 2533 | Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)], |
| 2534 | diag::note_default_argument_declared_here); |
Anders Carlsson | 37bb2bd | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2535 | } else { |
| 2536 | Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg(); |
| 2537 | |
| 2538 | // If the default expression creates temporaries, we need to |
| 2539 | // push them to the current stack of expression temporaries so they'll |
| 2540 | // be properly destroyed. |
| 2541 | if (CXXExprWithTemporaries *E |
| 2542 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
| 2543 | assert(!E->shouldDestroyTemporaries() && |
| 2544 | "Can't destroy temporaries in a default argument expr!"); |
| 2545 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2546 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2547 | } |
Anders Carlsson | a116e6e | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2548 | } |
Anders Carlsson | 37bb2bd | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2549 | |
Douglas Gregor | 62ae25a | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2550 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2551 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Anders Carlsson | a116e6e | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2552 | } |
| 2553 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2554 | QualType ArgType = Arg->getType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2555 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2556 | Call->setArg(i, Arg); |
| 2557 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2558 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2559 | // If this is a variadic call, handle args passed through "...". |
| 2560 | if (Proto->isVariadic()) { |
Anders Carlsson | 4b8e38c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2561 | VariadicCallType CallType = VariadicFunction; |
| 2562 | if (Fn->getType()->isBlockPointerType()) |
| 2563 | CallType = VariadicBlock; // Block |
| 2564 | else if (isa<MemberExpr>(Fn)) |
| 2565 | CallType = VariadicMethod; |
| 2566 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2567 | // Promote the arguments (C99 6.5.2.2p7). |
| 2568 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2569 | Expr *Arg = Args[i]; |
Chris Lattner | 81f00ed | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2570 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2571 | Call->setArg(i, Arg); |
| 2572 | } |
| 2573 | } |
| 2574 | |
Douglas Gregor | 4ac887b | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2575 | return Invalid; |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2576 | } |
| 2577 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2578 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2579 | /// This provides the location of the left/right parens and a list of comma |
| 2580 | /// locations. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2581 | Action::OwningExprResult |
| 2582 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2583 | MultiExprArg args, |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2584 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2585 | unsigned NumArgs = args.size(); |
Anders Carlsson | c154a72 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2586 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2587 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2588 | assert(Fn && "no function call expression"); |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2589 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | c10357d | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2590 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2591 | DeclarationName UnqualifiedName; |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2592 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2593 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2594 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2595 | // in which case we won't do any semantic analysis now. |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2596 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2597 | // Fn. |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2598 | bool Dependent = false; |
| 2599 | if (Fn->isTypeDependent()) |
| 2600 | Dependent = true; |
| 2601 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2602 | Dependent = true; |
| 2603 | |
| 2604 | if (Dependent) |
Ted Kremenek | 362abcd | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2605 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2606 | Context.DependentTy, RParenLoc)); |
| 2607 | |
| 2608 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2609 | if (Fn->getType()->isRecordType()) |
| 2610 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2611 | CommaLocs, RParenLoc)); |
| 2612 | |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2613 | // Determine whether this is a call to a member function. |
Douglas Gregor | b60eb75 | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2614 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2615 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2616 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2617 | isa<CXXMethodDecl>(MemDecl) || |
| 2618 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2619 | isa<CXXMethodDecl>( |
| 2620 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2621 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2622 | CommaLocs, RParenLoc)); |
Douglas Gregor | b60eb75 | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2623 | } |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2624 | } |
| 2625 | |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2626 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 566782a | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2627 | DeclRefExpr *DRExpr = NULL; |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2628 | Expr *FnExpr = Fn; |
| 2629 | bool ADL = true; |
| 2630 | while (true) { |
| 2631 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2632 | FnExpr = IcExpr->getSubExpr(); |
| 2633 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2634 | // Parentheses around a function disable ADL |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2635 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2636 | ADL = false; |
| 2637 | FnExpr = PExpr->getSubExpr(); |
| 2638 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2639 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2640 | == UnaryOperator::AddrOf) { |
| 2641 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Chris Lattner | e50fb0b | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2642 | } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) { |
| 2643 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2644 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
| 2645 | break; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2646 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | e50fb0b | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2647 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2648 | UnqualifiedName = DepName->getName(); |
| 2649 | break; |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2650 | } else { |
Chris Lattner | e50fb0b | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2651 | // Any kind of name that does not refer to a declaration (or |
| 2652 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2653 | ADL = false; |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2654 | break; |
| 2655 | } |
Douglas Gregor | d2baafd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2656 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2657 | |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2658 | OverloadedFunctionDecl *Ovl = 0; |
Douglas Gregor | b60eb75 | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2659 | FunctionTemplateDecl *FunctionTemplate = 0; |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2660 | if (DRExpr) { |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2661 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | b60eb75 | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2662 | if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(DRExpr->getDecl()))) |
| 2663 | FDecl = FunctionTemplate->getTemplatedDecl(); |
| 2664 | else |
| 2665 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2666 | Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl()); |
Fariborz Jahanian | c10357d | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2667 | NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2668 | } |
Douglas Gregor | d2baafd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2669 | |
Douglas Gregor | b60eb75 | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2670 | if (Ovl || FunctionTemplate || |
| 2671 | (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 411889e | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2672 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | b5af738 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2673 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2674 | ADL = false; |
| 2675 | |
Douglas Gregor | fcb1919 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2676 | // We don't perform ADL in C. |
| 2677 | if (!getLangOptions().CPlusPlus) |
| 2678 | ADL = false; |
| 2679 | |
Douglas Gregor | b60eb75 | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2680 | if (Ovl || FunctionTemplate || ADL) { |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2681 | FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0, |
| 2682 | UnqualifiedName, LParenLoc, Args, |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2683 | NumArgs, CommaLocs, RParenLoc, ADL); |
| 2684 | if (!FDecl) |
| 2685 | return ExprError(); |
| 2686 | |
| 2687 | // Update Fn to refer to the actual function selected. |
| 2688 | Expr *NewFn = 0; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2689 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | 4646f9c | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2690 | = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr)) |
Douglas Gregor | 1e589cc | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2691 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2692 | QDRExpr->getLocation(), |
| 2693 | false, false, |
| 2694 | QDRExpr->getQualifierRange(), |
| 2695 | QDRExpr->getQualifier()); |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2696 | else |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2697 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | aa1da4a | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2698 | Fn->getSourceRange().getBegin()); |
| 2699 | Fn->Destroy(Context); |
| 2700 | Fn = NewFn; |
| 2701 | } |
Douglas Gregor | d2baafd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2702 | } |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2703 | |
| 2704 | // Promote the function operand. |
| 2705 | UsualUnaryConversions(Fn); |
| 2706 | |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2707 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2708 | // of arguments and function on error. |
Ted Kremenek | 362abcd | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2709 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2710 | Args, NumArgs, |
| 2711 | Context.BoolTy, |
| 2712 | RParenLoc)); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2713 | |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2714 | const FunctionType *FuncT; |
| 2715 | if (!Fn->getType()->isBlockPointerType()) { |
| 2716 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2717 | // have type pointer to function". |
| 2718 | const PointerType *PT = Fn->getType()->getAsPointerType(); |
| 2719 | if (PT == 0) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2720 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2721 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2722 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2723 | } else { // This is a block call. |
| 2724 | FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()-> |
| 2725 | getAsFunctionType(); |
| 2726 | } |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2727 | if (FuncT == 0) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2728 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2729 | << Fn->getType() << Fn->getSourceRange()); |
| 2730 | |
Eli Friedman | 83dec9e | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2731 | // Check for a valid return type |
| 2732 | if (!FuncT->getResultType()->isVoidType() && |
| 2733 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2734 | FuncT->getResultType(), |
| 2735 | diag::err_call_incomplete_return, |
| 2736 | TheCall->getSourceRange())) |
| 2737 | return ExprError(); |
| 2738 | |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2739 | // We know the result type of the call, set it. |
Douglas Gregor | 2aecd1f | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2740 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2741 | |
Douglas Gregor | 4fa5890 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2742 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2743 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2744 | RParenLoc)) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2745 | return ExprError(); |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2746 | } else { |
Douglas Gregor | 4fa5890 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2747 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2748 | |
Douglas Gregor | a8f2ae6 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2749 | if (FDecl) { |
| 2750 | // Check if we have too few/too many template arguments, based |
| 2751 | // on our knowledge of the function definition. |
| 2752 | const FunctionDecl *Def = 0; |
Eli Friedman | f7ed781 | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2753 | if (FDecl->getBody(Context, Def) && NumArgs != Def->param_size()) { |
| 2754 | const FunctionProtoType *Proto = |
| 2755 | Def->getType()->getAsFunctionProtoType(); |
| 2756 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2757 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2758 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2759 | } |
| 2760 | } |
Douglas Gregor | a8f2ae6 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2761 | } |
| 2762 | |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2763 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2764 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2765 | Expr *Arg = Args[i]; |
| 2766 | DefaultArgumentPromotion(Arg); |
Eli Friedman | 83dec9e | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2767 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2768 | Arg->getType(), |
| 2769 | diag::err_call_incomplete_argument, |
| 2770 | Arg->getSourceRange())) |
| 2771 | return ExprError(); |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2772 | TheCall->setArg(i, Arg); |
Steve Naroff | db65e05 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2773 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2774 | } |
Chris Lattner | 83bd5eb | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2775 | |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2776 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2777 | if (!Method->isStatic()) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2778 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2779 | << Fn->getSourceRange()); |
Douglas Gregor | 3257fb5 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2780 | |
Fariborz Jahanian | c10357d | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2781 | // Check for sentinels |
| 2782 | if (NDecl) |
| 2783 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Chris Lattner | 2e64c07 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2784 | // Do special checking on direct calls to functions. |
Fariborz Jahanian | c10357d | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2785 | if (FDecl) |
Eli Friedman | d0e9d09 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2786 | return CheckFunctionCall(FDecl, TheCall.take()); |
Fariborz Jahanian | f83c85f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 2787 | if (NDecl) |
| 2788 | return CheckBlockCall(NDecl, TheCall.take()); |
Chris Lattner | 2e64c07 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2789 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2790 | return Owned(TheCall.take()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2791 | } |
| 2792 | |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2793 | Action::OwningExprResult |
| 2794 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2795 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2796 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2797 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
| 2798 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2799 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2800 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | 9374b85 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2801 | |
Eli Friedman | 8c2173d | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2802 | if (literalType->isArrayType()) { |
Chris Lattner | a1923f6 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2803 | if (literalType->isVariableArrayType()) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2804 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2805 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | ed71c54 | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 2806 | } else if (!literalType->isDependentType() && |
| 2807 | RequireCompleteType(LParenLoc, literalType, |
| 2808 | diag::err_typecheck_decl_incomplete_type, |
Douglas Gregor | 46fe06e | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2809 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2810 | return ExprError(); |
Eli Friedman | 8c2173d | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2811 | |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2812 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 6214d8a | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2813 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2814 | return ExprError(); |
Steve Naroff | be37fc0 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2815 | |
Chris Lattner | e5cb586 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2816 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | be37fc0 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2817 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | f0b2354 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2818 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2819 | return ExprError(); |
Steve Naroff | f0b2354 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2820 | } |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2821 | InitExpr.release(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2822 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2823 | literalExpr, isFileScope)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2824 | } |
| 2825 | |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2826 | Action::OwningExprResult |
| 2827 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2828 | SourceLocation RBraceLoc) { |
| 2829 | unsigned NumInit = initlist.size(); |
| 2830 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2831 | |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2832 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2833 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2834 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2835 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | f603b47 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2836 | RBraceLoc); |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2837 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2838 | return Owned(E); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2839 | } |
| 2840 | |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2841 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 5ad49de | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 2842 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) { |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2843 | UsualUnaryConversions(castExpr); |
| 2844 | |
| 2845 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2846 | // type needs to be scalar. |
| 2847 | if (castType->isVoidType()) { |
| 2848 | // Cast to void allows any expr type. |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2849 | } else if (castType->isDependentType() || castExpr->isTypeDependent()) { |
| 2850 | // We can't check any more until template instantiation time. |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2851 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | 27b3395 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2852 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2853 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2854 | (castType->isStructureType() || castType->isUnionType())) { |
| 2855 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2856 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | 27b3395 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2857 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2858 | << castType << castExpr->getSourceRange(); |
| 2859 | } else if (castType->isUnionType()) { |
| 2860 | // GCC cast to union extension |
| 2861 | RecordDecl *RD = castType->getAsRecordType()->getDecl(); |
| 2862 | RecordDecl::field_iterator Field, FieldEnd; |
Douglas Gregor | c55b0b0 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2863 | for (Field = RD->field_begin(Context), FieldEnd = RD->field_end(Context); |
Seo Sanghyeon | 27b3395 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2864 | Field != FieldEnd; ++Field) { |
| 2865 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2866 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2867 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2868 | << castExpr->getSourceRange(); |
| 2869 | break; |
| 2870 | } |
| 2871 | } |
| 2872 | if (Field == FieldEnd) |
| 2873 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2874 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2875 | } else { |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2876 | // Reject any other conversions to non-scalar types. |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2877 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2878 | << castType << castExpr->getSourceRange(); |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2879 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2880 | } else if (!castExpr->getType()->isScalarType() && |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2881 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2882 | return Diag(castExpr->getLocStart(), |
| 2883 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2884 | << castExpr->getType() << castExpr->getSourceRange(); |
Nate Begeman | bd42e02 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2885 | } else if (castType->isExtVectorType()) { |
| 2886 | if (CheckExtVectorCast(TyR, castType, castExpr->getType())) |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2887 | return true; |
| 2888 | } else if (castType->isVectorType()) { |
| 2889 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 2890 | return true; |
Nate Begeman | bd42e02 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2891 | } else if (castExpr->getType()->isVectorType()) { |
| 2892 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 2893 | return true; |
Steve Naroff | ff6c802 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2894 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Steve Naroff | 49fd7ad | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 2895 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Eli Friedman | 970e56c | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 2896 | } else if (!castType->isArithmeticType()) { |
| 2897 | QualType castExprType = castExpr->getType(); |
| 2898 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 2899 | return Diag(castExpr->getLocStart(), |
| 2900 | diag::err_cast_pointer_from_non_pointer_int) |
| 2901 | << castExprType << castExpr->getSourceRange(); |
| 2902 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 2903 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 2904 | return Diag(castExpr->getLocStart(), |
| 2905 | diag::err_cast_pointer_to_non_pointer_int) |
| 2906 | << castType << castExpr->getSourceRange(); |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2907 | } |
Fariborz Jahanian | 4862e87 | 2009-05-22 21:42:52 +0000 | [diff] [blame] | 2908 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 2909 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2910 | return false; |
| 2911 | } |
| 2912 | |
Chris Lattner | d1f26b3 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 2913 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | f257b4c | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2914 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2915 | |
Anders Carlsson | f257b4c | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2916 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2917 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | f257b4c | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2918 | return Diag(R.getBegin(), |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2919 | Ty->isVectorType() ? |
Anders Carlsson | f257b4c | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2920 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2921 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2922 | << VectorTy << Ty << R; |
Anders Carlsson | f257b4c | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2923 | } else |
| 2924 | return Diag(R.getBegin(), |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2925 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2926 | << VectorTy << Ty << R; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2927 | |
Anders Carlsson | f257b4c | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2928 | return false; |
| 2929 | } |
| 2930 | |
Nate Begeman | bd42e02 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2931 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) { |
| 2932 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
| 2933 | |
Nate Begeman | 9e06370 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 2934 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 2935 | // an ExtVectorType. |
Nate Begeman | bd42e02 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2936 | if (SrcTy->isVectorType()) { |
| 2937 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 2938 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 2939 | << DestTy << SrcTy << R; |
| 2940 | return false; |
| 2941 | } |
| 2942 | |
Nate Begeman | 0e0eadd | 2009-06-28 02:36:38 +0000 | [diff] [blame^] | 2943 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | bd42e02 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2944 | // conversion will take place first from scalar to elt type, and then |
| 2945 | // splat from elt type to vector. |
Nate Begeman | 0e0eadd | 2009-06-28 02:36:38 +0000 | [diff] [blame^] | 2946 | if (SrcTy->isPointerType()) |
| 2947 | return Diag(R.getBegin(), |
| 2948 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 2949 | << DestTy << SrcTy << R; |
Nate Begeman | bd42e02 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2950 | return false; |
| 2951 | } |
| 2952 | |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2953 | Action::OwningExprResult |
| 2954 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 2955 | SourceLocation RParenLoc, ExprArg Op) { |
| 2956 | assert((Ty != 0) && (Op.get() != 0) && |
| 2957 | "ActOnCastExpr(): missing type or expr"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2958 | |
Anders Carlsson | c154a72 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2959 | Expr *castExpr = Op.takeAs<Expr>(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2960 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 2961 | |
Argiris Kirtzidis | 95de23a | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2962 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2963 | return ExprError(); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2964 | return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType, |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2965 | LParenLoc, RParenLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2966 | } |
| 2967 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2968 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 2969 | /// In that case, lhs = cond. |
Chris Lattner | 9c039b5 | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2970 | /// C99 6.5.15 |
| 2971 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 2972 | SourceLocation QuestionLoc) { |
Sebastian Redl | bd26196 | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2973 | // C++ is sufficiently different to merit its own checker. |
| 2974 | if (getLangOptions().CPlusPlus) |
| 2975 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 2976 | |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2977 | UsualUnaryConversions(Cond); |
| 2978 | UsualUnaryConversions(LHS); |
| 2979 | UsualUnaryConversions(RHS); |
| 2980 | QualType CondTy = Cond->getType(); |
| 2981 | QualType LHSTy = LHS->getType(); |
| 2982 | QualType RHSTy = RHS->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2983 | |
| 2984 | // first, check the condition. |
Sebastian Redl | bd26196 | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2985 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 2986 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 2987 | << CondTy; |
| 2988 | return QualType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2989 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2990 | |
Chris Lattner | 992ae93 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2991 | // Now check the two expressions. |
Douglas Gregor | 1b21c7f | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2992 | |
Chris Lattner | 992ae93 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2993 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 2994 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2995 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 2996 | UsualArithmeticConversions(LHS, RHS); |
| 2997 | return LHS->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 2998 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2999 | |
Chris Lattner | 992ae93 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3000 | // If both operands are the same structure or union type, the result is that |
| 3001 | // type. |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3002 | if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3 |
| 3003 | if (const RecordType *RHSRT = RHSTy->getAsRecordType()) |
Chris Lattner | 98a425c | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3004 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3005 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 992ae93 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3006 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3007 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3008 | // FIXME: Type of conditional expression must be complete in C mode. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3009 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3010 | |
Chris Lattner | 992ae93 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3011 | // C99 6.5.15p5: "If both operands have void type, the result has void type." |
Steve Naroff | 95cb389 | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3012 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3013 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3014 | if (!LHSTy->isVoidType()) |
| 3015 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3016 | << RHS->getSourceRange(); |
| 3017 | if (!RHSTy->isVoidType()) |
| 3018 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3019 | << LHS->getSourceRange(); |
| 3020 | ImpCastExprToType(LHS, Context.VoidTy); |
| 3021 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | f025aac | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3022 | return Context.VoidTy; |
Steve Naroff | 95cb389 | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3023 | } |
Steve Naroff | 12ebf27 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3024 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3025 | // the type of the other operand." |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3026 | if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() || |
| 3027 | Context.isObjCObjectPointerType(LHSTy)) && |
| 3028 | RHS->isNullPointerConstant(Context)) { |
| 3029 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 3030 | return LHSTy; |
Steve Naroff | 12ebf27 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3031 | } |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3032 | if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() || |
| 3033 | Context.isObjCObjectPointerType(RHSTy)) && |
| 3034 | LHS->isNullPointerConstant(Context)) { |
| 3035 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 3036 | return RHSTy; |
Steve Naroff | 12ebf27 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3037 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3038 | |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3039 | const PointerType *LHSPT = LHSTy->getAsPointerType(); |
| 3040 | const PointerType *RHSPT = RHSTy->getAsPointerType(); |
| 3041 | const BlockPointerType *LHSBPT = LHSTy->getAsBlockPointerType(); |
| 3042 | const BlockPointerType *RHSBPT = RHSTy->getAsBlockPointerType(); |
| 3043 | |
Chris Lattner | 0ac5163 | 2008-01-06 22:50:31 +0000 | [diff] [blame] | 3044 | // Handle the case where both operands are pointers before we handle null |
| 3045 | // pointer constants in case both operands are null pointer constants. |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3046 | if ((LHSPT || LHSBPT) && (RHSPT || RHSBPT)) { // C99 6.5.15p3,6 |
| 3047 | // get the "pointed to" types |
Mike Stump | ea3d74e | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3048 | QualType lhptee = (LHSPT ? LHSPT->getPointeeType() |
| 3049 | : LHSBPT->getPointeeType()); |
| 3050 | QualType rhptee = (RHSPT ? RHSPT->getPointeeType() |
| 3051 | : RHSBPT->getPointeeType()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3052 | |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3053 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3054 | if (lhptee->isVoidType() |
| 3055 | && (RHSBPT || rhptee->isIncompleteOrObjectType())) { |
| 3056 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 3057 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
| 3058 | QualType destType = Context.getPointerType(destPointee); |
| 3059 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3060 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3061 | return destType; |
| 3062 | } |
| 3063 | if (rhptee->isVoidType() |
| 3064 | && (LHSBPT || lhptee->isIncompleteOrObjectType())) { |
| 3065 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
| 3066 | QualType destType = Context.getPointerType(destPointee); |
| 3067 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3068 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3069 | return destType; |
| 3070 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3071 | |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3072 | bool sameKind = (LHSPT && RHSPT) || (LHSBPT && RHSBPT); |
| 3073 | if (sameKind |
| 3074 | && Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3075 | // Two identical pointer types are always compatible. |
| 3076 | return LHSTy; |
| 3077 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3078 | |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3079 | QualType compositeType = LHSTy; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3080 | |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3081 | // If either type is an Objective-C object type then check |
| 3082 | // compatibility according to Objective-C. |
| 3083 | if (Context.isObjCObjectPointerType(LHSTy) || |
| 3084 | Context.isObjCObjectPointerType(RHSTy)) { |
| 3085 | // If both operands are interfaces and either operand can be |
| 3086 | // assigned to the other, use that type as the composite |
| 3087 | // type. This allows |
| 3088 | // xxx ? (A*) a : (B*) b |
| 3089 | // where B is a subclass of A. |
| 3090 | // |
| 3091 | // Additionally, as for assignment, if either type is 'id' |
| 3092 | // allow silent coercion. Finally, if the types are |
| 3093 | // incompatible then make sure to use 'id' as the composite |
| 3094 | // type so the result is acceptable for sending messages to. |
Daniel Dunbar | a7b5fb9 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3095 | |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3096 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3097 | // It could return the composite type. |
| 3098 | const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType(); |
| 3099 | const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType(); |
| 3100 | if (LHSIface && RHSIface && |
| 3101 | Context.canAssignObjCInterfaces(LHSIface, RHSIface)) { |
| 3102 | compositeType = LHSTy; |
| 3103 | } else if (LHSIface && RHSIface && |
| 3104 | Context.canAssignObjCInterfaces(RHSIface, LHSIface)) { |
| 3105 | compositeType = RHSTy; |
| 3106 | } else if (Context.isObjCIdStructType(lhptee) || |
| 3107 | Context.isObjCIdStructType(rhptee)) { |
| 3108 | compositeType = Context.getObjCIdType(); |
| 3109 | } else if (LHSBPT || RHSBPT) { |
| 3110 | if (!sameKind |
Eli Friedman | b6eed6e | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3111 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3112 | rhptee.getUnqualifiedType())) |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3113 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3114 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3115 | return QualType(); |
| 3116 | } else { |
| 3117 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3118 | << LHSTy << RHSTy |
| 3119 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3120 | QualType incompatTy = Context.getObjCIdType(); |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3121 | ImpCastExprToType(LHS, incompatTy); |
| 3122 | ImpCastExprToType(RHS, incompatTy); |
Daniel Dunbar | cd23bb2 | 2008-08-26 00:41:39 +0000 | [diff] [blame] | 3123 | return incompatTy; |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 3124 | } |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3125 | } else if (!sameKind |
| 3126 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3127 | rhptee.getUnqualifiedType())) { |
| 3128 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3129 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3130 | // In this situation, we assume void* type. No especially good |
| 3131 | // reason, but this is what gcc does, and we do have to pick |
| 3132 | // to get a consistent AST. |
| 3133 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3134 | ImpCastExprToType(LHS, incompatTy); |
| 3135 | ImpCastExprToType(RHS, incompatTy); |
| 3136 | return incompatTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3137 | } |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3138 | // The pointer types are compatible. |
| 3139 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3140 | // differently qualified versions of compatible types, the result type is |
| 3141 | // a pointer to an appropriately qualified version of the *composite* |
| 3142 | // type. |
| 3143 | // FIXME: Need to calculate the composite type. |
| 3144 | // FIXME: Need to add qualifiers |
| 3145 | ImpCastExprToType(LHS, compositeType); |
| 3146 | ImpCastExprToType(RHS, compositeType); |
| 3147 | return compositeType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3148 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3149 | |
Steve Naroff | 6ba2268 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3150 | // GCC compatibility: soften pointer/integer mismatch. |
| 3151 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3152 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3153 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3154 | ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. |
| 3155 | return RHSTy; |
| 3156 | } |
| 3157 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3158 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3159 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3160 | ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. |
| 3161 | return LHSTy; |
| 3162 | } |
| 3163 | |
Daniel Dunbar | a7b5fb9 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3164 | // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type |
| 3165 | // evaluates to "struct objc_object *" (and is handled above when comparing |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3166 | // id with statically typed objects). |
| 3167 | if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) { |
Daniel Dunbar | a7b5fb9 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3168 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3169 | // id. Currently localizing to here until clear this should be |
| 3170 | // part of ObjCQualifiedIdTypesAreCompatible. |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3171 | if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) || |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3172 | (LHSTy->isObjCQualifiedIdType() && |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3173 | Context.isObjCObjectPointerType(RHSTy)) || |
| 3174 | (RHSTy->isObjCQualifiedIdType() && |
| 3175 | Context.isObjCObjectPointerType(LHSTy))) { |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3176 | // FIXME: This is not the correct composite type. This only happens to |
| 3177 | // work because id can more or less be used anywhere, however this may |
| 3178 | // change the type of method sends. |
| 3179 | |
Daniel Dunbar | a7b5fb9 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3180 | // FIXME: gcc adds some type-checking of the arguments and emits |
| 3181 | // (confusing) incompatible comparison warnings in some |
| 3182 | // cases. Investigate. |
| 3183 | QualType compositeType = Context.getObjCIdType(); |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3184 | ImpCastExprToType(LHS, compositeType); |
| 3185 | ImpCastExprToType(RHS, compositeType); |
Daniel Dunbar | a7b5fb9 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3186 | return compositeType; |
| 3187 | } |
| 3188 | } |
| 3189 | |
Chris Lattner | 992ae93 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3190 | // Otherwise, the operands are not compatible. |
Chris Lattner | e289726 | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3191 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3192 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3193 | return QualType(); |
| 3194 | } |
| 3195 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3196 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3197 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3198 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3199 | SourceLocation ColonLoc, |
| 3200 | ExprArg Cond, ExprArg LHS, |
| 3201 | ExprArg RHS) { |
| 3202 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3203 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | 98a425c | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3204 | |
| 3205 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3206 | // was the condition. |
| 3207 | bool isLHSNull = LHSExpr == 0; |
| 3208 | if (isLHSNull) |
| 3209 | LHSExpr = CondExpr; |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3210 | |
| 3211 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3212 | RHSExpr, QuestionLoc); |
| 3213 | if (result.isNull()) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3214 | return ExprError(); |
| 3215 | |
| 3216 | Cond.release(); |
| 3217 | LHS.release(); |
| 3218 | RHS.release(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3219 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3220 | isLHSNull ? 0 : LHSExpr, |
| 3221 | RHSExpr, result)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3222 | } |
| 3223 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3224 | |
| 3225 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3226 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3227 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3228 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3229 | // FIXME: add a couple examples in this comment. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3230 | Sema::AssignConvertType |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3231 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3232 | QualType lhptee, rhptee; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3233 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3234 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 7122514 | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 3235 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 3236 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3237 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3238 | // make sure we operate on the canonical type |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3239 | lhptee = Context.getCanonicalType(lhptee); |
| 3240 | rhptee = Context.getCanonicalType(rhptee); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3241 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3242 | AssignConvertType ConvTy = Compatible; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3243 | |
| 3244 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3245 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3246 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | b60352a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3247 | // FIXME: Handle ExtQualType |
Douglas Gregor | 6573cfd | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3248 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3249 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3250 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3251 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3252 | // incomplete type and the other is a pointer to a qualified or unqualified |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3253 | // version of void... |
Chris Lattner | 4ca3d77 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3254 | if (lhptee->isVoidType()) { |
Chris Lattner | 9db553e | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3255 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3256 | return ConvTy; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3257 | |
Chris Lattner | 4ca3d77 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3258 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | 9db553e | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3259 | assert(rhptee->isFunctionType()); |
| 3260 | return FunctionVoidPointer; |
Chris Lattner | 4ca3d77 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3261 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3262 | |
Chris Lattner | 4ca3d77 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3263 | if (rhptee->isVoidType()) { |
Chris Lattner | 9db553e | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3264 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3265 | return ConvTy; |
Chris Lattner | 4ca3d77 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3266 | |
| 3267 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | 9db553e | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3268 | assert(lhptee->isFunctionType()); |
| 3269 | return FunctionVoidPointer; |
Chris Lattner | 4ca3d77 | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3270 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3271 | // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3272 | // unqualified versions of compatible types, ... |
Eli Friedman | 6ca28cb | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3273 | lhptee = lhptee.getUnqualifiedType(); |
| 3274 | rhptee = rhptee.getUnqualifiedType(); |
| 3275 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3276 | // Check if the pointee types are compatible ignoring the sign. |
| 3277 | // We explicitly check for char so that we catch "char" vs |
| 3278 | // "unsigned char" on systems where "char" is unsigned. |
| 3279 | if (lhptee->isCharType()) { |
| 3280 | lhptee = Context.UnsignedCharTy; |
| 3281 | } else if (lhptee->isSignedIntegerType()) { |
| 3282 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 3283 | } |
| 3284 | if (rhptee->isCharType()) { |
| 3285 | rhptee = Context.UnsignedCharTy; |
| 3286 | } else if (rhptee->isSignedIntegerType()) { |
| 3287 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 3288 | } |
| 3289 | if (lhptee == rhptee) { |
| 3290 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3291 | // takes priority over sign incompatibility because the sign |
| 3292 | // warning can be disabled. |
| 3293 | if (ConvTy != Compatible) |
| 3294 | return ConvTy; |
| 3295 | return IncompatiblePointerSign; |
| 3296 | } |
| 3297 | // General pointer incompatibility takes priority over qualifiers. |
| 3298 | return IncompatiblePointer; |
| 3299 | } |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3300 | return ConvTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3301 | } |
| 3302 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3303 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3304 | /// block pointer types are compatible or whether a block and normal pointer |
| 3305 | /// are compatible. It is more restrict than comparing two function pointer |
| 3306 | // types. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3307 | Sema::AssignConvertType |
| 3308 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3309 | QualType rhsType) { |
| 3310 | QualType lhptee, rhptee; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3311 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3312 | // get the "pointed to" type (ignoring qualifiers at the top level) |
| 3313 | lhptee = lhsType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3314 | rhptee = rhsType->getAsBlockPointerType()->getPointeeType(); |
| 3315 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3316 | // make sure we operate on the canonical type |
| 3317 | lhptee = Context.getCanonicalType(lhptee); |
| 3318 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3319 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3320 | AssignConvertType ConvTy = Compatible; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3321 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3322 | // For blocks we enforce that qualifiers are identical. |
| 3323 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3324 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3325 | |
Eli Friedman | b6eed6e | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3326 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3327 | return IncompatibleBlockPointer; |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3328 | return ConvTy; |
| 3329 | } |
| 3330 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3331 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3332 | /// has code to accommodate several GCC extensions when type checking |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3333 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3334 | /// |
| 3335 | /// int a, *pint; |
| 3336 | /// short *pshort; |
| 3337 | /// struct foo *pfoo; |
| 3338 | /// |
| 3339 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3340 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3341 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3342 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3343 | /// |
| 3344 | /// As a result, the code for dealing with pointers is more complex than the |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3345 | /// C99 spec dictates. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3346 | /// |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3347 | Sema::AssignConvertType |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3348 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | 1853da2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3349 | // Get canonical types. We're not formatting these types, just comparing |
| 3350 | // them. |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3351 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3352 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3353 | |
| 3354 | if (lhsType == rhsType) |
Chris Lattner | fdd96d7 | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3355 | return Compatible; // Common case: fast path an exact match. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3356 | |
Douglas Gregor | 0d5d89d | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3357 | // If the left-hand side is a reference type, then we are in a |
| 3358 | // (rare!) case where we've allowed the use of references in C, |
| 3359 | // e.g., as a parameter type in a built-in function. In this case, |
| 3360 | // just make sure that the type referenced is compatible with the |
| 3361 | // right-hand side type. The caller is responsible for adjusting |
| 3362 | // lhsType so that the resulting expression does not have reference |
| 3363 | // type. |
| 3364 | if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) { |
| 3365 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | cebb8d6 | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3366 | return Compatible; |
Chris Lattner | 1853da2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3367 | return Incompatible; |
Fariborz Jahanian | 957442d | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3368 | } |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3369 | |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3370 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) { |
| 3371 | if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false)) |
Fariborz Jahanian | 957442d | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3372 | return Compatible; |
Steve Naroff | 936c436 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3373 | // Relax integer conversions like we do for pointers below. |
| 3374 | if (rhsType->isIntegerType()) |
| 3375 | return IntToPointer; |
| 3376 | if (lhsType->isIntegerType()) |
| 3377 | return PointerToInt; |
Steve Naroff | 1960843 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3378 | return IncompatibleObjCQualifiedId; |
Fariborz Jahanian | 957442d | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3379 | } |
Chris Lattner | db22bf4 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3380 | |
Nate Begeman | 0e0eadd | 2009-06-28 02:36:38 +0000 | [diff] [blame^] | 3381 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3382 | // to the same ExtVector type. |
| 3383 | if (lhsType->isExtVectorType()) { |
| 3384 | if (rhsType->isExtVectorType()) |
| 3385 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3386 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3387 | return Compatible; |
| 3388 | } |
| 3389 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3390 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3391 | // If we are allowing lax vector conversions, and LHS and RHS are both |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3392 | // vectors, the total size only needs to be the same. This is a bitcast; |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3393 | // no bits are changed but the result type is different. |
Chris Lattner | db22bf4 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3394 | if (getLangOptions().LaxVectorConversions && |
| 3395 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3396 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | 355ed05 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3397 | return IncompatibleVectors; |
Chris Lattner | db22bf4 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3398 | } |
| 3399 | return Incompatible; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3400 | } |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3401 | |
Chris Lattner | db22bf4 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3402 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3403 | return Compatible; |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3404 | |
Chris Lattner | 390564e | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3405 | if (isa<PointerType>(lhsType)) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3406 | if (rhsType->isIntegerType()) |
Chris Lattner | d951b7b | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3407 | return IntToPointer; |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3408 | |
Chris Lattner | 390564e | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3409 | if (isa<PointerType>(rhsType)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3410 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3411 | |
Steve Naroff | a982c71 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3412 | if (rhsType->getAsBlockPointerType()) { |
Steve Naroff | d6163f3 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3413 | if (lhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 7abc143 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3414 | return Compatible; |
Steve Naroff | a982c71 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3415 | |
| 3416 | // Treat block pointers as objects. |
| 3417 | if (getLangOptions().ObjC1 && |
| 3418 | lhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3419 | return Compatible; |
| 3420 | } |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3421 | return Incompatible; |
| 3422 | } |
| 3423 | |
| 3424 | if (isa<BlockPointerType>(lhsType)) { |
| 3425 | if (rhsType->isIntegerType()) |
Eli Friedman | c589830 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3426 | return IntToBlockPointer; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3427 | |
Steve Naroff | a982c71 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3428 | // Treat block pointers as objects. |
| 3429 | if (getLangOptions().ObjC1 && |
| 3430 | rhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3431 | return Compatible; |
| 3432 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3433 | if (rhsType->isBlockPointerType()) |
| 3434 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3435 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3436 | if (const PointerType *RHSPT = rhsType->getAsPointerType()) { |
| 3437 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 7abc143 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3438 | return Compatible; |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3439 | } |
Chris Lattner | 1853da2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3440 | return Incompatible; |
| 3441 | } |
| 3442 | |
Chris Lattner | 390564e | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3443 | if (isa<PointerType>(rhsType)) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3444 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3445 | if (lhsType == Context.BoolTy) |
| 3446 | return Compatible; |
| 3447 | |
| 3448 | if (lhsType->isIntegerType()) |
Chris Lattner | d951b7b | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3449 | return PointerToInt; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3450 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3451 | if (isa<PointerType>(lhsType)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3452 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3453 | |
| 3454 | if (isa<BlockPointerType>(lhsType) && |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3455 | rhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 7abc143 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3456 | return Compatible; |
Chris Lattner | 1853da2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3457 | return Incompatible; |
Chris Lattner | 1853da2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3458 | } |
Eli Friedman | 48d0bb0 | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3459 | |
Chris Lattner | 1853da2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3460 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 390564e | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3461 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3462 | return Compatible; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3463 | } |
| 3464 | return Incompatible; |
| 3465 | } |
| 3466 | |
Douglas Gregor | 144b06c | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3467 | /// \brief Constructs a transparent union from an expression that is |
| 3468 | /// used to initialize the transparent union. |
| 3469 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
| 3470 | QualType UnionType, FieldDecl *Field) { |
| 3471 | // Build an initializer list that designates the appropriate member |
| 3472 | // of the transparent union. |
| 3473 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3474 | &E, 1, |
| 3475 | SourceLocation()); |
| 3476 | Initializer->setType(UnionType); |
| 3477 | Initializer->setInitializedFieldInUnion(Field); |
| 3478 | |
| 3479 | // Build a compound literal constructing a value of the transparent |
| 3480 | // union type from this initializer list. |
| 3481 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3482 | false); |
| 3483 | } |
| 3484 | |
| 3485 | Sema::AssignConvertType |
| 3486 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3487 | QualType FromType = rExpr->getType(); |
| 3488 | |
| 3489 | // If the ArgType is a Union type, we want to handle a potential |
| 3490 | // transparent_union GCC extension. |
| 3491 | const RecordType *UT = ArgType->getAsUnionType(); |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 3492 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>(Context)) |
Douglas Gregor | 144b06c | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3493 | return Incompatible; |
| 3494 | |
| 3495 | // The field to initialize within the transparent union. |
| 3496 | RecordDecl *UD = UT->getDecl(); |
| 3497 | FieldDecl *InitField = 0; |
| 3498 | // It's compatible if the expression matches any of the fields. |
| 3499 | for (RecordDecl::field_iterator it = UD->field_begin(Context), |
| 3500 | itend = UD->field_end(Context); |
| 3501 | it != itend; ++it) { |
| 3502 | if (it->getType()->isPointerType()) { |
| 3503 | // If the transparent union contains a pointer type, we allow: |
| 3504 | // 1) void pointer |
| 3505 | // 2) null pointer constant |
| 3506 | if (FromType->isPointerType()) |
| 3507 | if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) { |
| 3508 | ImpCastExprToType(rExpr, it->getType()); |
| 3509 | InitField = *it; |
| 3510 | break; |
| 3511 | } |
| 3512 | |
| 3513 | if (rExpr->isNullPointerConstant(Context)) { |
| 3514 | ImpCastExprToType(rExpr, it->getType()); |
| 3515 | InitField = *it; |
| 3516 | break; |
| 3517 | } |
| 3518 | } |
| 3519 | |
| 3520 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 3521 | == Compatible) { |
| 3522 | InitField = *it; |
| 3523 | break; |
| 3524 | } |
| 3525 | } |
| 3526 | |
| 3527 | if (!InitField) |
| 3528 | return Incompatible; |
| 3529 | |
| 3530 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 3531 | return Compatible; |
| 3532 | } |
| 3533 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3534 | Sema::AssignConvertType |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3535 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 6573cfd | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3536 | if (getLangOptions().CPlusPlus) { |
| 3537 | if (!lhsType->isRecordType()) { |
| 3538 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3539 | // expression is implicitly converted (C++ 4) to the |
| 3540 | // cv-unqualified type of the left operand. |
Douglas Gregor | 6fd3557 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3541 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3542 | "assigning")) |
Douglas Gregor | 6573cfd | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3543 | return Incompatible; |
Chris Lattner | 79e9a42 | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 3544 | return Compatible; |
Douglas Gregor | 6573cfd | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3545 | } |
| 3546 | |
| 3547 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3548 | // structures. |
| 3549 | } |
| 3550 | |
Steve Naroff | cdee22d | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3551 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3552 | // a null pointer constant. |
Steve Naroff | d305a86 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3553 | if ((lhsType->isPointerType() || |
| 3554 | lhsType->isObjCQualifiedIdType() || |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3555 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | a13effb | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3556 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3557 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | cdee22d | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3558 | return Compatible; |
| 3559 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3560 | |
Chris Lattner | 5f505bf | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3561 | // This check seems unnatural, however it is necessary to ensure the proper |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3562 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 0acc9c9 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3563 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3564 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 5f505bf | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3565 | // |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3566 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 5f505bf | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3567 | if (!lhsType->isReferenceType()) |
| 3568 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3569 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3570 | Sema::AssignConvertType result = |
| 3571 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3572 | |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3573 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3574 | // type of the assignment expression. |
Douglas Gregor | 0d5d89d | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3575 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3576 | // so that we can use references in built-in functions even in C. |
| 3577 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3578 | // does not have reference type. |
Douglas Gregor | 144b06c | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3579 | if (result != Incompatible && rExpr->getType() != lhsType) |
Douglas Gregor | 0d5d89d | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3580 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | 0f32f43 | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3581 | return result; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3582 | } |
| 3583 | |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3584 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3585 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | da5c087 | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3586 | << lex->getType() << rex->getType() |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3587 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 2c8bff7 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3588 | return QualType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3589 | } |
| 3590 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3591 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3592 | Expr *&rex) { |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3593 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 0310557 | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3594 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3595 | QualType lhsType = |
| 3596 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3597 | QualType rhsType = |
| 3598 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3599 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3600 | // If the vector types are identical, return. |
Nate Begeman | 0310557 | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3601 | if (lhsType == rhsType) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3602 | return lhsType; |
Nate Begeman | ec2d106 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3603 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3604 | // Handle the case of a vector & extvector type of the same size and element |
| 3605 | // type. It would be nice if we only had one vector type someday. |
Anders Carlsson | 355ed05 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3606 | if (getLangOptions().LaxVectorConversions) { |
| 3607 | // FIXME: Should we warn here? |
| 3608 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3609 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3610 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | 355ed05 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3611 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3612 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | 355ed05 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3613 | } |
| 3614 | } |
| 3615 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3616 | |
Nate Begeman | 0e0eadd | 2009-06-28 02:36:38 +0000 | [diff] [blame^] | 3617 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 3618 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 3619 | bool swapped = false; |
| 3620 | if (rhsType->isExtVectorType()) { |
| 3621 | swapped = true; |
| 3622 | std::swap(rex, lex); |
| 3623 | std::swap(rhsType, lhsType); |
| 3624 | } |
| 3625 | |
| 3626 | // Handle the case of an ext vector and scalar |
| 3627 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) { |
| 3628 | QualType EltTy = LV->getElementType(); |
| 3629 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 3630 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
| 3631 | ImpCastExprToType(rex, EltTy); |
| 3632 | rex = new (Context) CStyleCastExpr(lhsType, rex, lhsType, |
| 3633 | rex->getSourceRange().getBegin(), |
| 3634 | rex->getSourceRange().getEnd()); |
| 3635 | if (swapped) std::swap(rex, lex); |
| 3636 | return lhsType; |
| 3637 | } |
| 3638 | } |
| 3639 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 3640 | rhsType->isRealFloatingType()) { |
| 3641 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
| 3642 | ImpCastExprToType(rex, EltTy); |
| 3643 | rex = new (Context) CStyleCastExpr(lhsType, rex, lhsType, |
| 3644 | rex->getSourceRange().getBegin(), |
| 3645 | rex->getSourceRange().getEnd()); |
| 3646 | if (swapped) std::swap(rex, lex); |
| 3647 | return lhsType; |
| 3648 | } |
Nate Begeman | ec2d106 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3649 | } |
| 3650 | } |
Nate Begeman | 0e0eadd | 2009-06-28 02:36:38 +0000 | [diff] [blame^] | 3651 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3652 | // You cannot convert between vector values of different size. |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3653 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3654 | << lex->getType() << rex->getType() |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3655 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3656 | return QualType(); |
Sebastian Redl | 95216a6 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3657 | } |
| 3658 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3659 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3660 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3661 | { |
Daniel Dunbar | 2f08d81 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3662 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3663 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3664 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3665 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3666 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3667 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3668 | return compType; |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3669 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3670 | } |
| 3671 | |
| 3672 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3673 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3674 | { |
Daniel Dunbar | b27282f | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3675 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3676 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3677 | return CheckVectorOperands(Loc, lex, rex); |
| 3678 | return InvalidOperands(Loc, lex, rex); |
| 3679 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3680 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3681 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3682 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3683 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3684 | return compType; |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3685 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3686 | } |
| 3687 | |
| 3688 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3689 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3690 | { |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3691 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3692 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3693 | if (CompLHSTy) *CompLHSTy = compType; |
| 3694 | return compType; |
| 3695 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3696 | |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3697 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d9b1fec | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3698 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3699 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3700 | if (lex->getType()->isArithmeticType() && |
| 3701 | rex->getType()->isArithmeticType()) { |
| 3702 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3703 | return compType; |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3704 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3705 | |
Eli Friedman | d9b1fec | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3706 | // Put any potential pointer into PExp |
| 3707 | Expr* PExp = lex, *IExp = rex; |
| 3708 | if (IExp->getType()->isPointerType()) |
| 3709 | std::swap(PExp, IExp); |
| 3710 | |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3711 | if (const PointerType *PTy = PExp->getType()->getAsPointerType()) { |
Eli Friedman | d9b1fec | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3712 | if (IExp->getType()->isIntegerType()) { |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3713 | QualType PointeeTy = PTy->getPointeeType(); |
| 3714 | // Check for arithmetic on pointers to incomplete types. |
| 3715 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3716 | if (getLangOptions().CPlusPlus) { |
| 3717 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | 8ba580c | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3718 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 46fe06e | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3719 | return QualType(); |
Eli Friedman | d9b1fec | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3720 | } |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3721 | |
| 3722 | // GNU extension: arithmetic on pointer to void |
| 3723 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3724 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3725 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3726 | if (getLangOptions().CPlusPlus) { |
| 3727 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3728 | << lex->getType() << lex->getSourceRange(); |
| 3729 | return QualType(); |
| 3730 | } |
| 3731 | |
| 3732 | // GNU extension: arithmetic on pointer to function |
| 3733 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3734 | << lex->getType() << lex->getSourceRange(); |
| 3735 | } else if (!PTy->isDependentType() && |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3736 | RequireCompleteType(Loc, PointeeTy, |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3737 | diag::err_typecheck_arithmetic_incomplete_type, |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3738 | PExp->getSourceRange(), SourceRange(), |
| 3739 | PExp->getType())) |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3740 | return QualType(); |
| 3741 | |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3742 | // Diagnose bad cases where we step over interface counts. |
| 3743 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3744 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3745 | << PointeeTy << PExp->getSourceRange(); |
| 3746 | return QualType(); |
| 3747 | } |
| 3748 | |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3749 | if (CompLHSTy) { |
| 3750 | QualType LHSTy = lex->getType(); |
| 3751 | if (LHSTy->isPromotableIntegerType()) |
| 3752 | LHSTy = Context.IntTy; |
Douglas Gregor | 6fcf2ca | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3753 | else { |
| 3754 | QualType T = isPromotableBitField(lex, Context); |
| 3755 | if (!T.isNull()) |
| 3756 | LHSTy = T; |
| 3757 | } |
| 3758 | |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3759 | *CompLHSTy = LHSTy; |
| 3760 | } |
Eli Friedman | d9b1fec | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3761 | return PExp->getType(); |
| 3762 | } |
| 3763 | } |
| 3764 | |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3765 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3766 | } |
| 3767 | |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3768 | // C99 6.5.6 |
| 3769 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3770 | SourceLocation Loc, QualType* CompLHSTy) { |
| 3771 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3772 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3773 | if (CompLHSTy) *CompLHSTy = compType; |
| 3774 | return compType; |
| 3775 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3776 | |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3777 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3778 | |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3779 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3780 | |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3781 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | ea3d74e | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3782 | if (lex->getType()->isArithmeticType() |
| 3783 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3784 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3785 | return compType; |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3786 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3787 | |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3788 | // Either ptr - int or ptr - ptr. |
| 3789 | if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) { |
Steve Naroff | 577f972 | 2008-01-29 18:58:14 +0000 | [diff] [blame] | 3790 | QualType lpointee = LHSPTy->getPointeeType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3791 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3792 | // The LHS must be an completely-defined object type. |
Douglas Gregor | b319324 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3793 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3794 | bool ComplainAboutVoid = false; |
| 3795 | Expr *ComplainAboutFunc = 0; |
| 3796 | if (lpointee->isVoidType()) { |
| 3797 | if (getLangOptions().CPlusPlus) { |
| 3798 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3799 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3800 | return QualType(); |
| 3801 | } |
| 3802 | |
| 3803 | // GNU C extension: arithmetic on pointer to void |
| 3804 | ComplainAboutVoid = true; |
| 3805 | } else if (lpointee->isFunctionType()) { |
| 3806 | if (getLangOptions().CPlusPlus) { |
| 3807 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3808 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3809 | return QualType(); |
| 3810 | } |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3811 | |
| 3812 | // GNU C extension: arithmetic on pointer to function |
| 3813 | ComplainAboutFunc = lex; |
| 3814 | } else if (!lpointee->isDependentType() && |
| 3815 | RequireCompleteType(Loc, lpointee, |
| 3816 | diag::err_typecheck_sub_ptr_object, |
| 3817 | lex->getSourceRange(), |
| 3818 | SourceRange(), |
| 3819 | lex->getType())) |
| 3820 | return QualType(); |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3821 | |
Chris Lattner | 184f92d | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3822 | // Diagnose bad cases where we step over interface counts. |
| 3823 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3824 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3825 | << lpointee << lex->getSourceRange(); |
| 3826 | return QualType(); |
| 3827 | } |
| 3828 | |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3829 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3830 | if (rex->getType()->isIntegerType()) { |
| 3831 | if (ComplainAboutVoid) |
| 3832 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3833 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3834 | if (ComplainAboutFunc) |
| 3835 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3836 | << ComplainAboutFunc->getType() |
| 3837 | << ComplainAboutFunc->getSourceRange(); |
| 3838 | |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3839 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3840 | return lex->getType(); |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3841 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3842 | |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3843 | // Handle pointer-pointer subtractions. |
| 3844 | if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) { |
Eli Friedman | 5072704 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 3845 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3846 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3847 | // RHS must be a completely-type object type. |
| 3848 | // Handle the GNU void* extension. |
| 3849 | if (rpointee->isVoidType()) { |
| 3850 | if (getLangOptions().CPlusPlus) { |
| 3851 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3852 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3853 | return QualType(); |
| 3854 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3855 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3856 | ComplainAboutVoid = true; |
| 3857 | } else if (rpointee->isFunctionType()) { |
| 3858 | if (getLangOptions().CPlusPlus) { |
| 3859 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3860 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3861 | return QualType(); |
| 3862 | } |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3863 | |
| 3864 | // GNU extension: arithmetic on pointer to function |
| 3865 | if (!ComplainAboutFunc) |
| 3866 | ComplainAboutFunc = rex; |
| 3867 | } else if (!rpointee->isDependentType() && |
| 3868 | RequireCompleteType(Loc, rpointee, |
| 3869 | diag::err_typecheck_sub_ptr_object, |
| 3870 | rex->getSourceRange(), |
| 3871 | SourceRange(), |
| 3872 | rex->getType())) |
| 3873 | return QualType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3874 | |
Eli Friedman | 143ddc9 | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 3875 | if (getLangOptions().CPlusPlus) { |
| 3876 | // Pointee types must be the same: C++ [expr.add] |
| 3877 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 3878 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 3879 | << lex->getType() << rex->getType() |
| 3880 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3881 | return QualType(); |
| 3882 | } |
| 3883 | } else { |
| 3884 | // Pointee types must be compatible C99 6.5.6p3 |
| 3885 | if (!Context.typesAreCompatible( |
| 3886 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 3887 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 3888 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 3889 | << lex->getType() << rex->getType() |
| 3890 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3891 | return QualType(); |
| 3892 | } |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3893 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3894 | |
Douglas Gregor | 05e28f6 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3895 | if (ComplainAboutVoid) |
| 3896 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3897 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3898 | if (ComplainAboutFunc) |
| 3899 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3900 | << ComplainAboutFunc->getType() |
| 3901 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3902 | |
| 3903 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | f6da291 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3904 | return Context.getPointerDiffType(); |
| 3905 | } |
| 3906 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3907 | |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3908 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3909 | } |
| 3910 | |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3911 | // C99 6.5.7 |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3912 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3913 | bool isCompAssign) { |
Chris Lattner | 2c8bff7 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3914 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 3915 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3916 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3917 | |
Chris Lattner | 2c8bff7 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3918 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 3919 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3920 | QualType LHSTy; |
| 3921 | if (lex->getType()->isPromotableIntegerType()) |
| 3922 | LHSTy = Context.IntTy; |
Douglas Gregor | 6fcf2ca | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3923 | else { |
| 3924 | LHSTy = isPromotableBitField(lex, Context); |
| 3925 | if (LHSTy.isNull()) |
| 3926 | LHSTy = lex->getType(); |
| 3927 | } |
Chris Lattner | bb19bc4 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 3928 | if (!isCompAssign) |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3929 | ImpCastExprToType(lex, LHSTy); |
| 3930 | |
Chris Lattner | 2c8bff7 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3931 | UsualUnaryConversions(rex); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3932 | |
Chris Lattner | 2c8bff7 | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3933 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3934 | return LHSTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3935 | } |
| 3936 | |
Douglas Gregor | 30eed0f | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3937 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3938 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3939 | unsigned OpaqueOpc, bool isRelational) { |
| 3940 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 3941 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3942 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3943 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3944 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3945 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | ecc4fa1 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 3946 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 3947 | UsualArithmeticConversions(lex, rex); |
| 3948 | else { |
| 3949 | UsualUnaryConversions(lex); |
| 3950 | UsualUnaryConversions(rex); |
| 3951 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 3952 | QualType lType = lex->getType(); |
| 3953 | QualType rType = rex->getType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3954 | |
Mike Stump | ea3d74e | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3955 | if (!lType->isFloatingType() |
| 3956 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3957 | // For non-floating point types, check for self-comparisons of the form |
| 3958 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3959 | // often indicate logic errors in the program. |
Ted Kremenek | 264b5cb | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 3960 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 3961 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3962 | Expr *LHSStripped = lex->IgnoreParens(); |
| 3963 | Expr *RHSStripped = rex->IgnoreParens(); |
| 3964 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 3965 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | f042dc6 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 3966 | if (DRL->getDecl() == DRR->getDecl() && |
| 3967 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3968 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3969 | |
| 3970 | if (isa<CastExpr>(LHSStripped)) |
| 3971 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 3972 | if (isa<CastExpr>(RHSStripped)) |
| 3973 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 3974 | |
| 3975 | // Warn about comparisons against a string constant (unless the other |
| 3976 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3977 | Expr *literalString = 0; |
| 3978 | Expr *literalStringStripped = 0; |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3979 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3980 | !RHSStripped->isNullPointerConstant(Context)) { |
| 3981 | literalString = lex; |
| 3982 | literalStringStripped = LHSStripped; |
| 3983 | } |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3984 | else if ((isa<StringLiteral>(RHSStripped) || |
| 3985 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3986 | !LHSStripped->isNullPointerConstant(Context)) { |
| 3987 | literalString = rex; |
| 3988 | literalStringStripped = RHSStripped; |
| 3989 | } |
| 3990 | |
| 3991 | if (literalString) { |
| 3992 | std::string resultComparison; |
| 3993 | switch (Opc) { |
| 3994 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 3995 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 3996 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 3997 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 3998 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 3999 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4000 | default: assert(false && "Invalid comparison operator"); |
| 4001 | } |
| 4002 | Diag(Loc, diag::warn_stringcompare) |
| 4003 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4004 | << literalString->getSourceRange() |
Douglas Gregor | 3faaa81 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4005 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4006 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4007 | "strcmp(") |
| 4008 | << CodeModificationHint::CreateInsertion( |
| 4009 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4010 | resultComparison); |
| 4011 | } |
Ted Kremenek | cf8b77d | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4012 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4013 | |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4014 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4015 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4016 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4017 | if (isRelational) { |
| 4018 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4019 | return ResultTy; |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4020 | } else { |
Ted Kremenek | 486509e | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4021 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 486509e | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4022 | if (lType->isFloatingType()) { |
Chris Lattner | 4e479f9 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4023 | assert(rType->isFloatingType()); |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4024 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 7543914 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4025 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4026 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4027 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4028 | return ResultTy; |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4029 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4030 | |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4031 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 4032 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4033 | |
Chris Lattner | 254f3bc | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4034 | // All of the following pointer related warnings are GCC extensions, except |
| 4035 | // when handling null pointer constants. One day, we can consider making them |
| 4036 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | c33c060 | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4037 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | 56a5cd6 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4038 | QualType LCanPointeeTy = |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4039 | Context.getCanonicalType(lType->getAsPointerType()->getPointeeType()); |
Chris Lattner | 56a5cd6 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4040 | QualType RCanPointeeTy = |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4041 | Context.getCanonicalType(rType->getAsPointerType()->getPointeeType()); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4042 | |
Douglas Gregor | 30eed0f | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4043 | // Simple check: if the pointee types are identical, we're done. |
| 4044 | if (LCanPointeeTy == RCanPointeeTy) |
| 4045 | return ResultTy; |
| 4046 | |
| 4047 | if (getLangOptions().CPlusPlus) { |
| 4048 | // C++ [expr.rel]p2: |
| 4049 | // [...] Pointer conversions (4.10) and qualification |
| 4050 | // conversions (4.4) are performed on pointer operands (or on |
| 4051 | // a pointer operand and a null pointer constant) to bring |
| 4052 | // them to their composite pointer type. [...] |
| 4053 | // |
| 4054 | // C++ [expr.eq]p2 uses the same notion for (in)equality |
| 4055 | // comparisons of pointers. |
Douglas Gregor | cf651d2 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4056 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 30eed0f | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4057 | if (T.isNull()) { |
| 4058 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4059 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4060 | return QualType(); |
| 4061 | } |
| 4062 | |
| 4063 | ImpCastExprToType(lex, T); |
| 4064 | ImpCastExprToType(rex, T); |
| 4065 | return ResultTy; |
| 4066 | } |
| 4067 | |
Steve Naroff | 3b43562 | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 4068 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | 56a5cd6 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4069 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 4070 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Eli Friedman | 0d9549b | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 4071 | RCanPointeeTy.getUnqualifiedType()) && |
Steve Naroff | 17c0382 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 4072 | !Context.areComparableObjCPointerTypes(lType, rType)) { |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4073 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4074 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4075 | } |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4076 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4077 | return ResultTy; |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4078 | } |
Sebastian Redl | 5d0ead7 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4079 | // C++ allows comparison of pointers with null pointer constants. |
| 4080 | if (getLangOptions().CPlusPlus) { |
| 4081 | if (lType->isPointerType() && RHSIsNull) { |
| 4082 | ImpCastExprToType(rex, lType); |
| 4083 | return ResultTy; |
| 4084 | } |
| 4085 | if (rType->isPointerType() && LHSIsNull) { |
| 4086 | ImpCastExprToType(lex, rType); |
| 4087 | return ResultTy; |
| 4088 | } |
| 4089 | // And comparison of nullptr_t with itself. |
| 4090 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4091 | return ResultTy; |
| 4092 | } |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4093 | // Handle block pointer types. |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4094 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4095 | QualType lpointee = lType->getAsBlockPointerType()->getPointeeType(); |
| 4096 | QualType rpointee = rType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4097 | |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4098 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | b6eed6e | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4099 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4100 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4101 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4102 | } |
| 4103 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4104 | return ResultTy; |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4105 | } |
Steve Naroff | f85d66c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4106 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4107 | if (!isRelational |
| 4108 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4109 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | f85d66c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4110 | if (!LHSIsNull && !RHSIsNull) { |
Mike Stump | e97a854 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4111 | if (!((rType->isPointerType() && rType->getAsPointerType() |
| 4112 | ->getPointeeType()->isVoidType()) |
| 4113 | || (lType->isPointerType() && lType->getAsPointerType() |
| 4114 | ->getPointeeType()->isVoidType()))) |
| 4115 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4116 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | f85d66c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4117 | } |
| 4118 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4119 | return ResultTy; |
Steve Naroff | f85d66c | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4120 | } |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4121 | |
Steve Naroff | 936c436 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4122 | if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) { |
Steve Naroff | 3d081ae | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4123 | if (lType->isPointerType() || rType->isPointerType()) { |
Steve Naroff | 030fcda | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4124 | const PointerType *LPT = lType->getAsPointerType(); |
| 4125 | const PointerType *RPT = rType->getAsPointerType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4126 | bool LPtrToVoid = LPT ? |
Steve Naroff | 030fcda | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4127 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4128 | bool RPtrToVoid = RPT ? |
Steve Naroff | 030fcda | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4129 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4130 | |
Steve Naroff | 030fcda | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4131 | if (!LPtrToVoid && !RPtrToVoid && |
| 4132 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4133 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4134 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 3d081ae | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4135 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4136 | return ResultTy; |
Steve Naroff | 3d081ae | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4137 | } |
Daniel Dunbar | 11c5f82 | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4138 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4139 | return ResultTy; |
Steve Naroff | 3b2ceea | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4140 | } |
Steve Naroff | 936c436 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4141 | if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) { |
| 4142 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4143 | return ResultTy; |
Steve Naroff | 1960843 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4144 | } else { |
| 4145 | if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) { |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4146 | Diag(Loc, diag::warn_incompatible_qualified_id_operands) |
Chris Lattner | 271d4c2 | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4147 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Daniel Dunbar | 11c5f82 | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4148 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4149 | return ResultTy; |
Steve Naroff | 1960843 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4150 | } |
Steve Naroff | 936c436 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4151 | } |
Fariborz Jahanian | 5319d9c | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4152 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4153 | if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) && |
Steve Naroff | 936c436 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4154 | rType->isIntegerType()) { |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4155 | if (!RHSIsNull) |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4156 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4157 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4158 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4159 | return ResultTy; |
Steve Naroff | 4462cb0 | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4160 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4161 | if (lType->isIntegerType() && |
Steve Naroff | 936c436 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4162 | (rType->isPointerType() || rType->isObjCQualifiedIdType())) { |
Chris Lattner | 22be842 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4163 | if (!LHSIsNull) |
Chris Lattner | 70b93d8 | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4164 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4165 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | e992d6c | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4166 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4167 | return ResultTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4168 | } |
Steve Naroff | 4fea7b6 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4169 | // Handle block pointers. |
Mike Stump | ea3d74e | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4170 | if (!isRelational && RHSIsNull |
| 4171 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Steve Naroff | 4fea7b6 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4172 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4173 | return ResultTy; |
Steve Naroff | 4fea7b6 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4174 | } |
Mike Stump | ea3d74e | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4175 | if (!isRelational && LHSIsNull |
| 4176 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Steve Naroff | 4fea7b6 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4177 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 849ea9c | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4178 | return ResultTy; |
Steve Naroff | 4fea7b6 | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4179 | } |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4180 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4181 | } |
| 4182 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4183 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4184 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4185 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4186 | /// types. |
| 4187 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4188 | SourceLocation Loc, |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4189 | bool isRelational) { |
| 4190 | // Check to make sure we're operating on vectors of the same type and width, |
| 4191 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4192 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4193 | if (vType.isNull()) |
| 4194 | return vType; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4195 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4196 | QualType lType = lex->getType(); |
| 4197 | QualType rType = rex->getType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4198 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4199 | // For non-floating point types, check for self-comparisons of the form |
| 4200 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4201 | // often indicate logic errors in the program. |
| 4202 | if (!lType->isFloatingType()) { |
| 4203 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4204 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4205 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4206 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4207 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4208 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4209 | // Check for comparisons of floating point operands using != and ==. |
| 4210 | if (!isRelational && lType->isFloatingType()) { |
| 4211 | assert (rType->isFloatingType()); |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4212 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4213 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4214 | |
Chris Lattner | 10687e3 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4215 | // FIXME: Vector compare support in the LLVM backend is not fully reliable, |
| 4216 | // just reject all vector comparisons for now. |
| 4217 | if (1) { |
| 4218 | Diag(Loc, diag::err_typecheck_vector_comparison) |
| 4219 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4220 | return QualType(); |
| 4221 | } |
| 4222 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4223 | // Return the type for the comparison, which is the same as vector type for |
| 4224 | // integer vectors, or an integer type of identical size and number of |
| 4225 | // elements for floating point vectors. |
| 4226 | if (lType->isIntegerType()) |
| 4227 | return lType; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4228 | |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4229 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4230 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | d6d2f77 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4231 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4232 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | 10687e3 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4233 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | d6d2f77 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4234 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4235 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4236 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | d6d2f77 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4237 | "Unhandled vector element size in vector compare"); |
Nate Begeman | c5f0f65 | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4238 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4239 | } |
| 4240 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4241 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4242 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4243 | { |
| 4244 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4245 | return CheckVectorOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4246 | |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4247 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4248 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4249 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 8f70836 | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4250 | return compType; |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4251 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4252 | } |
| 4253 | |
| 4254 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4255 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4256 | { |
| 4257 | UsualUnaryConversions(lex); |
| 4258 | UsualUnaryConversions(rex); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4259 | |
Eli Friedman | bea3f84 | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 4260 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4261 | return Context.IntTy; |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4262 | return InvalidOperands(Loc, lex, rex); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4263 | } |
| 4264 | |
Fariborz Jahanian | f96ee9e | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4265 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4266 | /// is a read-only property; return true if so. A readonly property expression |
| 4267 | /// depends on various declarations and thus must be treated specially. |
| 4268 | /// |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4269 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | f96ee9e | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4270 | { |
| 4271 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4272 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4273 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4274 | QualType BaseType = PropExpr->getBase()->getType(); |
| 4275 | if (const PointerType *PTy = BaseType->getAsPointerType()) |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4276 | if (const ObjCInterfaceType *IFTy = |
Fariborz Jahanian | f96ee9e | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4277 | PTy->getPointeeType()->getAsObjCInterfaceType()) |
| 4278 | if (ObjCInterfaceDecl *IFace = IFTy->getDecl()) |
| 4279 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4280 | return true; |
| 4281 | } |
| 4282 | } |
| 4283 | return false; |
| 4284 | } |
| 4285 | |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4286 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4287 | /// emit an error and return true. If so, return false. |
| 4288 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | f7fa9dc | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4289 | SourceLocation OrigLoc = Loc; |
| 4290 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
| 4291 | &Loc); |
Fariborz Jahanian | f96ee9e | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4292 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4293 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4294 | if (IsLV == Expr::MLV_Valid) |
| 4295 | return false; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4296 | |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4297 | unsigned Diag = 0; |
| 4298 | bool NeedType = false; |
| 4299 | switch (IsLV) { // C99 6.5.16p2 |
| 4300 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4301 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4302 | case Expr::MLV_ArrayType: |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4303 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4304 | NeedType = true; |
| 4305 | break; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4306 | case Expr::MLV_NotObjectType: |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4307 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4308 | NeedType = true; |
| 4309 | break; |
Chris Lattner | 37fb940 | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4310 | case Expr::MLV_LValueCast: |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4311 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4312 | break; |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4313 | case Expr::MLV_InvalidExpression: |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4314 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4315 | break; |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4316 | case Expr::MLV_IncompleteType: |
| 4317 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | c84d893 | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4318 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 46fe06e | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4319 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 4320 | E->getSourceRange()); |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4321 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4322 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4323 | break; |
Steve Naroff | 076d6cb | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4324 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4325 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4326 | break; |
Fariborz Jahanian | f18d4c8 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4327 | case Expr::MLV_ReadonlyProperty: |
| 4328 | Diag = diag::error_readonly_property_assignment; |
| 4329 | break; |
Fariborz Jahanian | c05da42 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4330 | case Expr::MLV_NoSetterProperty: |
| 4331 | Diag = diag::error_nosetter_property_assignment; |
| 4332 | break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4333 | } |
Steve Naroff | 7cbb146 | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4334 | |
Daniel Dunbar | f7fa9dc | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4335 | SourceRange Assign; |
| 4336 | if (Loc != OrigLoc) |
| 4337 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4338 | if (NeedType) |
Daniel Dunbar | f7fa9dc | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4339 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4340 | else |
Daniel Dunbar | f7fa9dc | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4341 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4342 | return true; |
| 4343 | } |
| 4344 | |
| 4345 | |
| 4346 | |
| 4347 | // C99 6.5.16.1 |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4348 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4349 | SourceLocation Loc, |
| 4350 | QualType CompoundType) { |
| 4351 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4352 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | 4c2642c | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4353 | return QualType(); |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4354 | |
| 4355 | QualType LHSType = LHS->getType(); |
| 4356 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4357 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4358 | AssignConvertType ConvTy; |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4359 | if (CompoundType.isNull()) { |
Chris Lattner | 34c8508 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4360 | // Simple assignment "x = y". |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4361 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | 82f5496 | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4362 | // Special case of NSObject attributes on c-style pointer types. |
| 4363 | if (ConvTy == IncompatiblePointer && |
| 4364 | ((Context.isObjCNSObjectType(LHSType) && |
| 4365 | Context.isObjCObjectPointerType(RHSType)) || |
| 4366 | (Context.isObjCNSObjectType(RHSType) && |
| 4367 | Context.isObjCObjectPointerType(LHSType)))) |
| 4368 | ConvTy = Compatible; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4369 | |
Chris Lattner | 34c8508 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4370 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4371 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4372 | // instead of "x += 4". |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4373 | Expr *RHSCheck = RHS; |
Chris Lattner | 34c8508 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4374 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4375 | RHSCheck = ICE->getSubExpr(); |
| 4376 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4377 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4378 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4379 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 34c8508 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4380 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 55a1724 | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4381 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4382 | // And there is a space or other character before the subexpr of the |
| 4383 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | f1e5d4a | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4384 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4385 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | 77d52da | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4386 | Diag(Loc, diag::warn_not_compound_assign) |
| 4387 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4388 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 55a1724 | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4389 | } |
Chris Lattner | 34c8508 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4390 | } |
| 4391 | } else { |
| 4392 | // Compound assignment "x += y" |
Eli Friedman | b653af4 | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4393 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 34c8508 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4394 | } |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4395 | |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4396 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4397 | RHS, "assigning")) |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4398 | return QualType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4399 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4400 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4401 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4402 | // it is the unqualified version of the type of the left operand. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4403 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4404 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4405 | // C++ 5.17p1: the type of the assignment expression is that of its left |
Douglas Gregor | 6fcf2ca | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4406 | // operand. |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4407 | return LHSType.getUnqualifiedType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4408 | } |
| 4409 | |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4410 | // C99 6.5.17 |
| 4411 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 03c430f | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4412 | // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions. |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4413 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4414 | |
| 4415 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4416 | // incomplete in C++). |
| 4417 | |
Chris Lattner | 1eafdea | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4418 | return RHS->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4419 | } |
| 4420 | |
| 4421 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4422 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | 0440c8c | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4423 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4424 | bool isInc) { |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4425 | if (Op->isTypeDependent()) |
| 4426 | return Context.DependentTy; |
| 4427 | |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4428 | QualType ResType = Op->getType(); |
| 4429 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4430 | |
Sebastian Redl | 0440c8c | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4431 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4432 | // Decrement of bool is not allowed. |
| 4433 | if (!isInc) { |
| 4434 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 4435 | return QualType(); |
| 4436 | } |
| 4437 | // Increment of bool sets it to true, but is deprecated. |
| 4438 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 4439 | } else if (ResType->isRealType()) { |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4440 | // OK! |
| 4441 | } else if (const PointerType *PT = ResType->getAsPointerType()) { |
| 4442 | // C99 6.5.2.4p2, 6.5.6p2 |
Douglas Gregor | cde3a2d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4443 | if (PT->getPointeeType()->isVoidType()) { |
Douglas Gregor | b319324 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4444 | if (getLangOptions().CPlusPlus) { |
| 4445 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 4446 | << Op->getSourceRange(); |
| 4447 | return QualType(); |
| 4448 | } |
| 4449 | |
| 4450 | // Pointer to void is a GNU extension in C. |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4451 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Douglas Gregor | 46fe06e | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4452 | } else if (PT->getPointeeType()->isFunctionType()) { |
Douglas Gregor | b319324 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4453 | if (getLangOptions().CPlusPlus) { |
| 4454 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 4455 | << Op->getType() << Op->getSourceRange(); |
| 4456 | return QualType(); |
| 4457 | } |
| 4458 | |
| 4459 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4460 | << ResType << Op->getSourceRange(); |
Douglas Gregor | cde3a2d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4461 | } else if (RequireCompleteType(OpLoc, PT->getPointeeType(), |
| 4462 | diag::err_typecheck_arithmetic_incomplete_type, |
| 4463 | Op->getSourceRange(), SourceRange(), |
| 4464 | ResType)) |
Douglas Gregor | 46fe06e | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4465 | return QualType(); |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4466 | } else if (ResType->isComplexType()) { |
| 4467 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 4468 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4469 | << ResType << Op->getSourceRange(); |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4470 | } else { |
| 4471 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4472 | << ResType << Op->getSourceRange(); |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4473 | return QualType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4474 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4475 | // At this point, we know we have a real, complex or pointer type. |
Steve Naroff | 6acc0f4 | 2007-08-23 21:37:33 +0000 | [diff] [blame] | 4476 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4477 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4478 | return QualType(); |
Chris Lattner | e65182c | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4479 | return ResType; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4480 | } |
| 4481 | |
Anders Carlsson | 4b3db2b | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4482 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4483 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | b45f75c | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4484 | /// where the declaration is needed for type checking. We only need to |
| 4485 | /// handle cases when the expression references a function designator |
| 4486 | /// or is an lvalue. Here are some examples: |
| 4487 | /// - &(x) => x |
| 4488 | /// - &*****f => f for f a function designator. |
| 4489 | /// - &s.xx => s |
| 4490 | /// - &s.zz[1].yy -> s, if zz is an array |
| 4491 | /// - *(x + 1) -> x, if x is an array |
| 4492 | /// - &"123"[2] -> 0 |
| 4493 | /// - & __real__ x -> x |
Douglas Gregor | d2baafd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4494 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4495 | switch (E->getStmtClass()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4496 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 566782a | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 4497 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4498 | return cast<DeclRefExpr>(E)->getDecl(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4499 | case Stmt::MemberExprClass: |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4500 | // If this is an arrow operator, the address is an offset from |
| 4501 | // the base's value, so the object the base refers to is |
| 4502 | // irrelevant. |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4503 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | a324907 | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4504 | return 0; |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4505 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4506 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 4b3db2b | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4507 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4508 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 4509 | // promotion of register arrays earlier. |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4510 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 4511 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 4512 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 4513 | return getPrimaryDecl(ICE->getSubExpr()); |
| 4514 | } |
| 4515 | return 0; |
Anders Carlsson | 4b3db2b | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4516 | } |
Daniel Dunbar | b45f75c | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4517 | case Stmt::UnaryOperatorClass: { |
| 4518 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4519 | |
Daniel Dunbar | b45f75c | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4520 | switch(UO->getOpcode()) { |
Daniel Dunbar | b45f75c | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4521 | case UnaryOperator::Real: |
| 4522 | case UnaryOperator::Imag: |
| 4523 | case UnaryOperator::Extension: |
| 4524 | return getPrimaryDecl(UO->getSubExpr()); |
| 4525 | default: |
| 4526 | return 0; |
| 4527 | } |
| 4528 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4529 | case Stmt::ParenExprClass: |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4530 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | a324907 | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4531 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4532 | // If the result of an implicit cast is an l-value, we care about |
| 4533 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | 48d7f38 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4534 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4535 | default: |
| 4536 | return 0; |
| 4537 | } |
| 4538 | } |
| 4539 | |
| 4540 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4541 | /// designator or an lvalue designating an object. If it is an lvalue, the |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4542 | /// object cannot be declared with storage class register or be a bit field. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4543 | /// Note: The usual conversions are *not* applied to the operand of the & |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4544 | /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4545 | /// In C++, the operand might be an overloaded function name, in which case |
Douglas Gregor | 45014fd | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4546 | /// we allow the '&' but retain the overloaded-function type. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4547 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4548 | // Make sure to ignore parentheses in subsequent checks |
| 4549 | op = op->IgnoreParens(); |
| 4550 | |
Douglas Gregor | e6be68a | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 4551 | if (op->isTypeDependent()) |
| 4552 | return Context.DependentTy; |
| 4553 | |
Steve Naroff | 9c6c359 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4554 | if (getLangOptions().C99) { |
| 4555 | // Implement C99-only parts of addressof rules. |
| 4556 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 4557 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 4558 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 4559 | // (assuming the deref expression is valid). |
| 4560 | return uOp->getSubExpr()->getType(); |
| 4561 | } |
| 4562 | // Technically, there should be a check for array subscript |
| 4563 | // expressions here, but the result of one is always an lvalue anyway. |
| 4564 | } |
Douglas Gregor | d2baafd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4565 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 25168a5 | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 4566 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 1a68ecf | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 4567 | |
Eli Friedman | 14ab4c4 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4568 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 4569 | // C99 6.5.3.2p1 |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4570 | // The operand must be either an l-value or a function designator |
Eli Friedman | 14ab4c4 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4571 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | a324907 | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4572 | // FIXME: emit more specific diag... |
Chris Lattner | 9d2cf08 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4573 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 4574 | << op->getSourceRange(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4575 | return QualType(); |
| 4576 | } |
Douglas Gregor | 531434b | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 4577 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4578 | // The operand cannot be a bit-field |
| 4579 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4580 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 82d4477 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 4581 | return QualType(); |
Nate Begeman | a9187ab | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4582 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 4583 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 93ecce2 | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4584 | // The operand cannot be an element of a vector |
Chris Lattner | 77d52da | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4585 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | a9187ab | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4586 | << "vector element" << op->getSourceRange(); |
Steve Naroff | 73cf87e | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 4587 | return QualType(); |
| 4588 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4589 | // We have an lvalue with a decl. Make sure the decl is not declared |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4590 | // with the register storage-class specifier. |
| 4591 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 4592 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | 77d52da | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4593 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4594 | << "register variable" << op->getSourceRange(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4595 | return QualType(); |
| 4596 | } |
Douglas Gregor | 5b82d61 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4597 | } else if (isa<OverloadedFunctionDecl>(dcl)) { |
Douglas Gregor | 45014fd | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4598 | return Context.OverloadTy; |
Douglas Gregor | 5b82d61 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4599 | } else if (isa<FieldDecl>(dcl)) { |
| 4600 | // Okay: we can take the address of a field. |
Sebastian Redl | 0c9da21 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4601 | // Could be a pointer to member, though, if there is an explicit |
| 4602 | // scope qualifier for the class. |
| 4603 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 4604 | DeclContext *Ctx = dcl->getDeclContext(); |
| 4605 | if (Ctx && Ctx->isRecord()) |
| 4606 | return Context.getMemberPointerType(op->getType(), |
| 4607 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 4608 | } |
Anders Carlsson | e9cc4c4 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4609 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | df23952 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 4610 | // Okay: we can take the address of a function. |
Sebastian Redl | 7434fc3 | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4611 | // As above. |
Anders Carlsson | e9cc4c4 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4612 | if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance()) |
| 4613 | return Context.getMemberPointerType(op->getType(), |
| 4614 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 4615 | } else if (!isa<FunctionDecl>(dcl)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4616 | assert(0 && "Unknown/unexpected decl type"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4617 | } |
Sebastian Redl | 7434fc3 | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4618 | |
Eli Friedman | 14ab4c4 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4619 | if (lval == Expr::LV_IncompleteVoidType) { |
| 4620 | // Taking the address of a void variable is technically illegal, but we |
| 4621 | // allow it in cases which are otherwise valid. |
| 4622 | // Example: "extern void x; void* y = &x;". |
| 4623 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 4624 | } |
| 4625 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4626 | // If the operand has type "type", the result has type "pointer to type". |
| 4627 | return Context.getPointerType(op->getType()); |
| 4628 | } |
| 4629 | |
Chris Lattner | da5c087 | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4630 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4631 | if (Op->isTypeDependent()) |
| 4632 | return Context.DependentTy; |
| 4633 | |
Chris Lattner | da5c087 | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4634 | UsualUnaryConversions(Op); |
| 4635 | QualType Ty = Op->getType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4636 | |
Chris Lattner | da5c087 | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4637 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 4638 | // incomplete type or void. It would be possible to warn about dereferencing |
| 4639 | // a void pointer, but it's completely well-defined, and such a warning is |
| 4640 | // unlikely to catch any mistakes. |
| 4641 | if (const PointerType *PT = Ty->getAsPointerType()) |
Steve Naroff | 9c6c359 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4642 | return PT->getPointeeType(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4643 | |
Chris Lattner | 77d52da | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4644 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | da5c087 | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4645 | << Ty << Op->getSourceRange(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4646 | return QualType(); |
| 4647 | } |
| 4648 | |
| 4649 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 4650 | tok::TokenKind Kind) { |
| 4651 | BinaryOperator::Opcode Opc; |
| 4652 | switch (Kind) { |
| 4653 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 95216a6 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4654 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 4655 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4656 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 4657 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 4658 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 4659 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 4660 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 4661 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 4662 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 4663 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4664 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4665 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4666 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4667 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4668 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4669 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4670 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4671 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4672 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4673 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4674 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4675 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4676 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4677 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4678 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4679 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4680 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4681 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4682 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4683 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4684 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4685 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4686 | } |
| 4687 | return Opc; |
| 4688 | } |
| 4689 | |
| 4690 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4691 | tok::TokenKind Kind) { |
| 4692 | UnaryOperator::Opcode Opc; |
| 4693 | switch (Kind) { |
| 4694 | default: assert(0 && "Unknown unary op!"); |
| 4695 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4696 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4697 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4698 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4699 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4700 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4701 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4702 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4703 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4704 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4705 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4706 | } |
| 4707 | return Opc; |
| 4708 | } |
| 4709 | |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4710 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4711 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4712 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4713 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4714 | unsigned Op, |
| 4715 | Expr *lhs, Expr *rhs) { |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4716 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4717 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4718 | // The following two variables are used for compound assignment operators |
| 4719 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 4720 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4721 | |
| 4722 | switch (Opc) { |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4723 | case BinaryOperator::Assign: |
| 4724 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4725 | break; |
Sebastian Redl | 95216a6 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4726 | case BinaryOperator::PtrMemD: |
| 4727 | case BinaryOperator::PtrMemI: |
| 4728 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4729 | Opc == BinaryOperator::PtrMemI); |
| 4730 | break; |
| 4731 | case BinaryOperator::Mul: |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4732 | case BinaryOperator::Div: |
| 4733 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4734 | break; |
| 4735 | case BinaryOperator::Rem: |
| 4736 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4737 | break; |
| 4738 | case BinaryOperator::Add: |
| 4739 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4740 | break; |
| 4741 | case BinaryOperator::Sub: |
| 4742 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4743 | break; |
Sebastian Redl | 95216a6 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4744 | case BinaryOperator::Shl: |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4745 | case BinaryOperator::Shr: |
| 4746 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4747 | break; |
| 4748 | case BinaryOperator::LE: |
| 4749 | case BinaryOperator::LT: |
| 4750 | case BinaryOperator::GE: |
| 4751 | case BinaryOperator::GT: |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4752 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4753 | break; |
| 4754 | case BinaryOperator::EQ: |
| 4755 | case BinaryOperator::NE: |
Douglas Gregor | 1f12c35 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4756 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4757 | break; |
| 4758 | case BinaryOperator::And: |
| 4759 | case BinaryOperator::Xor: |
| 4760 | case BinaryOperator::Or: |
| 4761 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4762 | break; |
| 4763 | case BinaryOperator::LAnd: |
| 4764 | case BinaryOperator::LOr: |
| 4765 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4766 | break; |
| 4767 | case BinaryOperator::MulAssign: |
| 4768 | case BinaryOperator::DivAssign: |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4769 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4770 | CompLHSTy = CompResultTy; |
| 4771 | if (!CompResultTy.isNull()) |
| 4772 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4773 | break; |
| 4774 | case BinaryOperator::RemAssign: |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4775 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4776 | CompLHSTy = CompResultTy; |
| 4777 | if (!CompResultTy.isNull()) |
| 4778 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4779 | break; |
| 4780 | case BinaryOperator::AddAssign: |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4781 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4782 | if (!CompResultTy.isNull()) |
| 4783 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4784 | break; |
| 4785 | case BinaryOperator::SubAssign: |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4786 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4787 | if (!CompResultTy.isNull()) |
| 4788 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4789 | break; |
| 4790 | case BinaryOperator::ShlAssign: |
| 4791 | case BinaryOperator::ShrAssign: |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4792 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4793 | CompLHSTy = CompResultTy; |
| 4794 | if (!CompResultTy.isNull()) |
| 4795 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4796 | break; |
| 4797 | case BinaryOperator::AndAssign: |
| 4798 | case BinaryOperator::XorAssign: |
| 4799 | case BinaryOperator::OrAssign: |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4800 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 4801 | CompLHSTy = CompResultTy; |
| 4802 | if (!CompResultTy.isNull()) |
| 4803 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4804 | break; |
| 4805 | case BinaryOperator::Comma: |
| 4806 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 4807 | break; |
| 4808 | } |
| 4809 | if (ResultTy.isNull()) |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4810 | return ExprError(); |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4811 | if (CompResultTy.isNull()) |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4812 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 4813 | else |
| 4814 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | 3cd9288 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4815 | CompLHSTy, CompResultTy, |
| 4816 | OpLoc)); |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4817 | } |
| 4818 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4819 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4820 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 4821 | tok::TokenKind Kind, |
| 4822 | ExprArg LHS, ExprArg RHS) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4823 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | 39ecdcf | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 4824 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4825 | |
Steve Naroff | 87d58b4 | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4826 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 4827 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4828 | |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4829 | if (getLangOptions().CPlusPlus && |
| 4830 | (lhs->getType()->isOverloadableType() || |
| 4831 | rhs->getType()->isOverloadableType())) { |
| 4832 | // Find all of the overloaded operators visible from this |
| 4833 | // point. We perform both an operator-name lookup from the local |
| 4834 | // scope and an argument-dependent lookup based on the types of |
| 4835 | // the arguments. |
Douglas Gregor | 3fc092f | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 4836 | FunctionSet Functions; |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4837 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 4838 | if (OverOp != OO_None) { |
| 4839 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 4840 | Functions); |
| 4841 | Expr *Args[2] = { lhs, rhs }; |
| 4842 | DeclarationName OpName |
| 4843 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4844 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | 70d2612 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 4845 | } |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4846 | |
Douglas Gregor | 00fe3f6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4847 | // Build the (potentially-overloaded, potentially-dependent) |
| 4848 | // binary operation. |
| 4849 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | 5457c5e | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4850 | } |
| 4851 | |
Douglas Gregor | d7f915e | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4852 | // Build a built-in binary operation. |
| 4853 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4854 | } |
| 4855 | |
Douglas Gregor | c78182d | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4856 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 4857 | unsigned OpcIn, |
| 4858 | ExprArg InputArg) { |
| 4859 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4860 | |
Mike Stump | e127ae3 | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4861 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | c78182d | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4862 | Expr *Input = (Expr *)InputArg.get(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4863 | QualType resultType; |
| 4864 | switch (Opc) { |
Douglas Gregor | c78182d | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4865 | case UnaryOperator::PostInc: |
| 4866 | case UnaryOperator::PostDec: |
| 4867 | case UnaryOperator::OffsetOf: |
| 4868 | assert(false && "Invalid unary operator"); |
| 4869 | break; |
| 4870 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4871 | case UnaryOperator::PreInc: |
| 4872 | case UnaryOperator::PreDec: |
Sebastian Redl | 0440c8c | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4873 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
| 4874 | Opc == UnaryOperator::PreInc); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4875 | break; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4876 | case UnaryOperator::AddrOf: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4877 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 4878 | break; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4879 | case UnaryOperator::Deref: |
Steve Naroff | ccc26a7 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 4880 | DefaultFunctionArrayConversion(Input); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4881 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 4882 | break; |
| 4883 | case UnaryOperator::Plus: |
| 4884 | case UnaryOperator::Minus: |
| 4885 | UsualUnaryConversions(Input); |
| 4886 | resultType = Input->getType(); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4887 | if (resultType->isDependentType()) |
| 4888 | break; |
Douglas Gregor | 4f6904d | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4889 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 4890 | break; |
| 4891 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 4892 | resultType->isEnumeralType()) |
| 4893 | break; |
| 4894 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 4895 | Opc == UnaryOperator::Plus && |
| 4896 | resultType->isPointerType()) |
| 4897 | break; |
| 4898 | |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4899 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4900 | << resultType << Input->getSourceRange()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4901 | case UnaryOperator::Not: // bitwise complement |
| 4902 | UsualUnaryConversions(Input); |
| 4903 | resultType = Input->getType(); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4904 | if (resultType->isDependentType()) |
| 4905 | break; |
Chris Lattner | bd69502 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4906 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 4907 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 4908 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | 77d52da | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4909 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | 4bfd223 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4910 | << resultType << Input->getSourceRange(); |
Chris Lattner | bd69502 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4911 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4912 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4913 | << resultType << Input->getSourceRange()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4914 | break; |
| 4915 | case UnaryOperator::LNot: // logical negation |
| 4916 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
| 4917 | DefaultFunctionArrayConversion(Input); |
| 4918 | resultType = Input->getType(); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4919 | if (resultType->isDependentType()) |
| 4920 | break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4921 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4922 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4923 | << resultType << Input->getSourceRange()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4924 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4925 | // In C++, it's bool. C++ 5.3.1p8 |
| 4926 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4927 | break; |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4928 | case UnaryOperator::Real: |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4929 | case UnaryOperator::Imag: |
Chris Lattner | 57e5f7e | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 4930 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | 03931a7 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4931 | break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4932 | case UnaryOperator::Extension: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4933 | resultType = Input->getType(); |
| 4934 | break; |
| 4935 | } |
| 4936 | if (resultType.isNull()) |
Sebastian Redl | 8b76997 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4937 | return ExprError(); |
Douglas Gregor | c78182d | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4938 | |
| 4939 | InputArg.release(); |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4940 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4941 | } |
| 4942 | |
Douglas Gregor | c78182d | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4943 | // Unary Operators. 'Tok' is the token for the operator. |
| 4944 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 4945 | tok::TokenKind Op, ExprArg input) { |
| 4946 | Expr *Input = (Expr*)input.get(); |
| 4947 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 4948 | |
| 4949 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 4950 | // Find all of the overloaded operators visible from this |
| 4951 | // point. We perform both an operator-name lookup from the local |
| 4952 | // scope and an argument-dependent lookup based on the types of |
| 4953 | // the arguments. |
| 4954 | FunctionSet Functions; |
| 4955 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 4956 | if (OverOp != OO_None) { |
| 4957 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 4958 | Functions); |
| 4959 | DeclarationName OpName |
| 4960 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4961 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 4962 | } |
| 4963 | |
| 4964 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 4965 | } |
| 4966 | |
| 4967 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 4968 | } |
| 4969 | |
Steve Naroff | 5cbb02f | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 4970 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4971 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 4972 | SourceLocation LabLoc, |
| 4973 | IdentifierInfo *LabelII) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4974 | // Look up the record for this label identifier. |
Chris Lattner | 2616d8c | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 4975 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4976 | |
Daniel Dunbar | 879788d | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 4977 | // If we haven't seen this label yet, create a forward reference. It |
| 4978 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | b88d81c | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 4979 | if (LabelDecl == 0) |
Steve Naroff | 774e415 | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4980 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4981 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4982 | // Create the AST node. The address of a label always has type 'void*'. |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4983 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 4984 | Context.getPointerType(Context.VoidTy))); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4985 | } |
| 4986 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4987 | Sema::OwningExprResult |
| 4988 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 4989 | SourceLocation RPLoc) { // "({..})" |
| 4990 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4991 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 4992 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 4993 | |
Eli Friedman | bc941e1 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4994 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | aa25759 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 4995 | if (isFileScope) |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4996 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | bc941e1 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4997 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 4998 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 4999 | // example, it is not possible to goto into a stmt expression apparently. |
| 5000 | // More semantic analysis is needed. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5001 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 5002 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5003 | // as the type of the stmtexpr. |
| 5004 | QualType Ty = Context.VoidTy; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5005 | |
Chris Lattner | 200964f | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5006 | if (!Compound->body_empty()) { |
| 5007 | Stmt *LastStmt = Compound->body_back(); |
| 5008 | // If LastStmt is a label, skip down through into the body. |
| 5009 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5010 | LastStmt = Label->getSubStmt(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5011 | |
Chris Lattner | 200964f | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5012 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 5013 | Ty = LastExpr->getType(); |
Chris Lattner | 200964f | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5014 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5015 | |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5016 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5017 | // expressions are not lvalues. |
| 5018 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5019 | substmt.release(); |
| 5020 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 5021 | } |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5022 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5023 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5024 | SourceLocation BuiltinLoc, |
| 5025 | SourceLocation TypeLoc, |
| 5026 | TypeTy *argty, |
| 5027 | OffsetOfComponent *CompPtr, |
| 5028 | unsigned NumComponents, |
| 5029 | SourceLocation RPLoc) { |
| 5030 | // FIXME: This function leaks all expressions in the offset components on |
| 5031 | // error. |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5032 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 5033 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5034 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5035 | bool Dependent = ArgTy->isDependentType(); |
| 5036 | |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5037 | // We must have at least one component that refers to the type, and the first |
| 5038 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5039 | // a struct/union/class. |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5040 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5041 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5042 | |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5043 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5044 | // with an incomplete type would be illegal. |
Douglas Gregor | 6e7c27c | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5045 | |
Eli Friedman | 342d943 | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5046 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5047 | // the offsetof designators. |
| 5048 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5049 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5050 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 342d943 | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5051 | ArgTy, SourceLocation()); |
Eli Friedman | c67f86a | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5052 | |
Chris Lattner | b37522e | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5053 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5054 | // GCC extension, diagnose them. |
Eli Friedman | 342d943 | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5055 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5056 | // a system header! |
Chris Lattner | b37522e | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5057 | if (NumComponents != 1) |
Chris Lattner | 9d2cf08 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5058 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5059 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5060 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5061 | if (!Dependent) { |
Eli Friedman | c24ae00 | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5062 | bool DidWarnAboutNonPOD = false; |
Anders Carlsson | 68c926c | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5063 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5064 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5065 | // leaks like a sieve. |
| 5066 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5067 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5068 | if (OC.isBrackets) { |
| 5069 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5070 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5071 | if (!AT) { |
| 5072 | Res->Destroy(Context); |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5073 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5074 | << Res->getType()); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5075 | } |
| 5076 | |
| 5077 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5078 | |
Eli Friedman | 342d943 | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5079 | // Promote the array so it looks more like a normal array subscript |
| 5080 | // expression. |
| 5081 | DefaultFunctionArrayConversion(Res); |
| 5082 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5083 | // C99 6.5.2.1p1 |
| 5084 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5085 | // FIXME: Leaks Res |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5086 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5087 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 7264d21 | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5088 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5089 | << Idx->getSourceRange()); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5090 | |
| 5091 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5092 | OC.LocEnd); |
| 5093 | continue; |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5094 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5095 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5096 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 5097 | if (!RC) { |
| 5098 | Res->Destroy(Context); |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5099 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5100 | << Res->getType()); |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5101 | } |
Chris Lattner | 2af6a80 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5102 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5103 | // Get the decl corresponding to this. |
| 5104 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 356946e | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5105 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 68c926c | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5106 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | bbceaea | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5107 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5108 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5109 | << Res->getType()); |
Anders Carlsson | 68c926c | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5110 | DidWarnAboutNonPOD = true; |
| 5111 | } |
Anders Carlsson | 356946e | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5112 | } |
| 5113 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5114 | FieldDecl *MemberDecl |
| 5115 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 5116 | LookupMemberName) |
| 5117 | .getAsDecl()); |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5118 | // FIXME: Leaks Res |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5119 | if (!MemberDecl) |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5120 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 5121 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5122 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5123 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5124 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | 35719da | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5125 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | c154a72 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5126 | Res = BuildAnonymousStructUnionMemberReference( |
| 5127 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | 35719da | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5128 | } else { |
| 5129 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5130 | // doesn't matter here. |
| 5131 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5132 | MemberDecl->getType().getNonReferenceType()); |
| 5133 | } |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5134 | } |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5135 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5136 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5137 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5138 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5139 | } |
| 5140 | |
| 5141 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5142 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5143 | TypeTy *arg1,TypeTy *arg2, |
| 5144 | SourceLocation RPLoc) { |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5145 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 5146 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5147 | |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5148 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5149 | |
Douglas Gregor | e621150 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5150 | if (getLangOptions().CPlusPlus) { |
| 5151 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5152 | << SourceRange(BuiltinLoc, RPLoc); |
| 5153 | return ExprError(); |
| 5154 | } |
| 5155 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5156 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5157 | argT1, argT2, RPLoc)); |
Steve Naroff | 63bad2d | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5158 | } |
| 5159 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5160 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5161 | ExprArg cond, |
| 5162 | ExprArg expr1, ExprArg expr2, |
| 5163 | SourceLocation RPLoc) { |
| 5164 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5165 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5166 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5167 | |
Steve Naroff | 93c5301 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5168 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5169 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5170 | QualType resType; |
Douglas Gregor | dd4ae3f | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5171 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5172 | resType = Context.DependentTy; |
| 5173 | } else { |
| 5174 | // The conditional expression is required to be a constant expression. |
| 5175 | llvm::APSInt condEval(32); |
| 5176 | SourceLocation ExpLoc; |
| 5177 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5178 | return ExprError(Diag(ExpLoc, |
| 5179 | diag::err_typecheck_choose_expr_requires_constant) |
| 5180 | << CondExpr->getSourceRange()); |
Steve Naroff | 93c5301 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5181 | |
Sebastian Redl | 6fdb28d | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5182 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5183 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 5184 | } |
| 5185 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5186 | cond.release(); expr1.release(); expr2.release(); |
| 5187 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 5188 | resType, RPLoc)); |
Steve Naroff | 93c5301 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5189 | } |
| 5190 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5191 | //===----------------------------------------------------------------------===// |
| 5192 | // Clang Extensions. |
| 5193 | //===----------------------------------------------------------------------===// |
| 5194 | |
| 5195 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5196 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5197 | // Analyze block parameters. |
| 5198 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5199 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5200 | // Add BSI to CurBlock. |
| 5201 | BSI->PrevBlockInfo = CurBlock; |
| 5202 | CurBlock = BSI; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5203 | |
Fariborz Jahanian | 89942a0 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5204 | BSI->ReturnType = QualType(); |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5205 | BSI->TheScope = BlockScope; |
Mike Stump | ae93d65 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5206 | BSI->hasBlockDeclRefExprs = false; |
Chris Lattner | e7765e1 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5207 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5208 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5209 | |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5210 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 8acb727 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5211 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5212 | } |
| 5213 | |
Mike Stump | c1fddff | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5214 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | ea3d74e | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5215 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | c1fddff | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5216 | |
| 5217 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5218 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 2a2e040 | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5219 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | c1fddff | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5220 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5221 | |
Mike Stump | 458287d | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5222 | if (T->isArrayType()) { |
| 5223 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5224 | diag::err_block_returns_array); |
| 5225 | return; |
| 5226 | } |
| 5227 | |
Mike Stump | c1fddff | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5228 | // The parameter list is optional, if there was none, assume (). |
| 5229 | if (!T->isFunctionType()) |
| 5230 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5231 | |
| 5232 | CurBlock->hasPrototype = true; |
| 5233 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 157c426 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5234 | // Check for a valid sentinel attribute on this block. |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 5235 | if (CurBlock->TheDecl->getAttr<SentinelAttr>(Context)) { |
Fariborz Jahanian | 157c426 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5236 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 6dac16d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5237 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 157c426 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5238 | // FIXME: remove the attribute. |
| 5239 | } |
Chris Lattner | c65b8bb | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5240 | QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType(); |
| 5241 | |
| 5242 | // Do not allow returning a objc interface by-value. |
| 5243 | if (RetTy->isObjCInterfaceType()) { |
| 5244 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5245 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5246 | return; |
| 5247 | } |
Mike Stump | c1fddff | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5248 | return; |
| 5249 | } |
| 5250 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5251 | // Analyze arguments to block. |
| 5252 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5253 | "Not a function declarator!"); |
| 5254 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5255 | |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5256 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5257 | CurBlock->isVariadic = true; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5258 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5259 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5260 | // no arguments, not a function that takes a single void argument. |
| 5261 | if (FTI.hasPrototype && |
| 5262 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | 5261d0c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5263 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5264 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5265 | // empty arg list, don't push any params. |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5266 | CurBlock->isVariadic = false; |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5267 | } else if (FTI.hasPrototype) { |
| 5268 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | 5261d0c | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5269 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5270 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5271 | } |
Jay Foad | 9e6bef4 | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5272 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | c65b8bb | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5273 | CurBlock->Params.size()); |
Fariborz Jahanian | 536f73d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5274 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 2a2e040 | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5275 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5276 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5277 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5278 | // If this has an identifier, add it to the scope stack. |
| 5279 | if ((*AI)->getIdentifier()) |
| 5280 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | c65b8bb | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5281 | |
Fariborz Jahanian | 157c426 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5282 | // Check for a valid sentinel attribute on this block. |
Douglas Gregor | 98da6ae | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 5283 | if (!CurBlock->isVariadic && |
| 5284 | CurBlock->TheDecl->getAttr<SentinelAttr>(Context)) { |
Fariborz Jahanian | 157c426 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5285 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 6dac16d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5286 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 157c426 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5287 | // FIXME: remove the attribute. |
| 5288 | } |
| 5289 | |
Chris Lattner | c65b8bb | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5290 | // Analyze the return type. |
| 5291 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5292 | QualType RetTy = T->getAsFunctionType()->getResultType(); |
| 5293 | |
| 5294 | // Do not allow returning a objc interface by-value. |
| 5295 | if (RetTy->isObjCInterfaceType()) { |
| 5296 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5297 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5298 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 89942a0 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5299 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5300 | } |
| 5301 | |
| 5302 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5303 | /// is invoked to pop the information about the block from the action impl. |
| 5304 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5305 | // Ensure that CurBlock is deleted. |
| 5306 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5307 | |
Chris Lattner | e7765e1 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5308 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5309 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5310 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | eb4d4a5 | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5311 | PopDeclContext(); |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5312 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5313 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5314 | } |
| 5315 | |
| 5316 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5317 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5318 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5319 | StmtArg body, Scope *CurScope) { |
Chris Lattner | c14c7f0 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5320 | // If blocks are disabled, emit an error. |
| 5321 | if (!LangOpts.Blocks) |
| 5322 | Diag(CaretLoc, diag::err_blocks_disable); |
| 5323 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5324 | // Ensure that CurBlock is deleted. |
| 5325 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5326 | |
Steve Naroff | 5205938 | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5327 | PopDeclContext(); |
| 5328 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5329 | // Pop off CurBlock, handle nested blocks. |
| 5330 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5331 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5332 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 89942a0 | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5333 | if (!BSI->ReturnType.isNull()) |
| 5334 | RetTy = BSI->ReturnType; |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5335 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5336 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 5337 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 5338 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5339 | |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5340 | QualType BlockTy; |
| 5341 | if (!BSI->hasPrototype) |
Eli Friedman | 45b1e22 | 2009-06-08 04:24:21 +0000 | [diff] [blame] | 5342 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0); |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5343 | else |
Jay Foad | 9e6bef4 | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5344 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Argiris Kirtzidis | 65b9964 | 2008-10-26 16:43:14 +0000 | [diff] [blame] | 5345 | BSI->isVariadic, 0); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5346 | |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5347 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5348 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5349 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5350 | |
Chris Lattner | e7765e1 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5351 | // If needed, diagnose invalid gotos and switches in the block. |
| 5352 | if (CurFunctionNeedsScopeChecking) |
| 5353 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 5354 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
| 5355 | |
Anders Carlsson | 39ecdcf | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5356 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5357 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 5358 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 52a81c0 | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5359 | } |
| 5360 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5361 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 5362 | ExprArg expr, TypeTy *type, |
| 5363 | SourceLocation RPLoc) { |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5364 | QualType T = QualType::getFromOpaquePtr(type); |
Chris Lattner | da13948 | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5365 | Expr *E = static_cast<Expr*>(expr.get()); |
| 5366 | Expr *OrigExpr = E; |
| 5367 | |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5368 | InitBuiltinVaListType(); |
Eli Friedman | dd2b9af | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5369 | |
| 5370 | // Get the va_list type |
| 5371 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 6f6e892 | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5372 | if (VaListType->isArrayType()) { |
| 5373 | // Deal with implicit array decay; for example, on x86-64, |
| 5374 | // va_list is an array, but it's supposed to decay to |
| 5375 | // a pointer for va_arg. |
Eli Friedman | dd2b9af | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5376 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 6f6e892 | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5377 | // Make sure the input expression also decays appropriately. |
| 5378 | UsualUnaryConversions(E); |
| 5379 | } else { |
| 5380 | // Otherwise, the va_list argument must be an l-value because |
| 5381 | // it is modified by va_arg. |
Douglas Gregor | 2599097 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5382 | if (!E->isTypeDependent() && |
| 5383 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 6f6e892 | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5384 | return ExprError(); |
| 5385 | } |
Eli Friedman | dd2b9af | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5386 | |
Douglas Gregor | 2599097 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5387 | if (!E->isTypeDependent() && |
| 5388 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5389 | return ExprError(Diag(E->getLocStart(), |
| 5390 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | da13948 | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5391 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 89a72c5 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 5392 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5393 | |
Eli Friedman | 2b12832 | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5394 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5395 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5396 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5397 | expr.release(); |
| 5398 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 5399 | RPLoc)); |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5400 | } |
| 5401 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5402 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | ad4b379 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5403 | // The type of __null will be int or long, depending on the size of |
| 5404 | // pointers on the target. |
| 5405 | QualType Ty; |
| 5406 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 5407 | Ty = Context.IntTy; |
| 5408 | else |
| 5409 | Ty = Context.LongTy; |
| 5410 | |
Sebastian Redl | 76bb8ec | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5411 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | ad4b379 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5412 | } |
| 5413 | |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5414 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 5415 | SourceLocation Loc, |
| 5416 | QualType DstType, QualType SrcType, |
| 5417 | Expr *SrcExpr, const char *Flavor) { |
| 5418 | // Decode the result (notice that AST's are still created for extensions). |
| 5419 | bool isInvalid = false; |
| 5420 | unsigned DiagKind; |
| 5421 | switch (ConvTy) { |
| 5422 | default: assert(0 && "Unknown conversion type"); |
| 5423 | case Compatible: return false; |
Chris Lattner | d951b7b | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5424 | case PointerToInt: |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5425 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 5426 | break; |
Chris Lattner | d951b7b | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5427 | case IntToPointer: |
| 5428 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 5429 | break; |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5430 | case IncompatiblePointer: |
| 5431 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 5432 | break; |
Eli Friedman | 6ca28cb | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5433 | case IncompatiblePointerSign: |
| 5434 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 5435 | break; |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5436 | case FunctionVoidPointer: |
| 5437 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 5438 | break; |
| 5439 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 1815b3b | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 5440 | // If the qualifiers lost were because we were applying the |
| 5441 | // (deprecated) C++ conversion from a string literal to a char* |
| 5442 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 5443 | // Ideally, this check would be performed in |
| 5444 | // CheckPointerTypesForAssignment. However, that would require a |
| 5445 | // bit of refactoring (so that the second argument is an |
| 5446 | // expression, rather than a type), which should be done as part |
| 5447 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 5448 | // C++ semantics. |
| 5449 | if (getLangOptions().CPlusPlus && |
| 5450 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 5451 | return false; |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5452 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 5453 | break; |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5454 | case IntToBlockPointer: |
| 5455 | DiagKind = diag::err_int_to_block_pointer; |
| 5456 | break; |
| 5457 | case IncompatibleBlockPointer: |
Mike Stump | d331e75 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 5458 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 3454b6c | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5459 | break; |
Steve Naroff | 1960843 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5460 | case IncompatibleObjCQualifiedId: |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5461 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 1960843 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5462 | // it can give a more specific diagnostic. |
| 5463 | DiagKind = diag::warn_incompatible_qualified_id; |
| 5464 | break; |
Anders Carlsson | 355ed05 | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5465 | case IncompatibleVectors: |
| 5466 | DiagKind = diag::warn_incompatible_vectors; |
| 5467 | break; |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5468 | case Incompatible: |
| 5469 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 5470 | isInvalid = true; |
| 5471 | break; |
| 5472 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5473 | |
Chris Lattner | 271d4c2 | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 5474 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 5475 | << SrcExpr->getSourceRange(); |
Chris Lattner | 005ed75 | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5476 | return isInvalid; |
| 5477 | } |
Anders Carlsson | d5201b9 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5478 | |
Chris Lattner | eec8ae2 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 5479 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | ce32941 | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5480 | llvm::APSInt ICEResult; |
| 5481 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 5482 | if (Result) |
| 5483 | *Result = ICEResult; |
| 5484 | return false; |
| 5485 | } |
| 5486 | |
Anders Carlsson | d5201b9 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5487 | Expr::EvalResult EvalResult; |
| 5488 | |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5489 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | d5201b9 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5490 | EvalResult.HasSideEffects) { |
| 5491 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 5492 | |
| 5493 | if (EvalResult.Diag) { |
| 5494 | // We only show the note if it's not the usual "invalid subexpression" |
| 5495 | // or if it's actually in a subexpression. |
| 5496 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 5497 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 5498 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 5499 | } |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5500 | |
Anders Carlsson | d5201b9 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5501 | return true; |
| 5502 | } |
| 5503 | |
Eli Friedman | ce32941 | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5504 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 5505 | E->getSourceRange(); |
Anders Carlsson | d5201b9 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5506 | |
Eli Friedman | ce32941 | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5507 | if (EvalResult.Diag && |
| 5508 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 5509 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | 9afab10 | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5510 | |
Anders Carlsson | d5201b9 | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5511 | if (Result) |
| 5512 | *Result = EvalResult.Val.getInt(); |
| 5513 | return false; |
| 5514 | } |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5515 | |
Douglas Gregor | a8b2fbf | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 5516 | Sema::ExpressionEvaluationContext |
| 5517 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
| 5518 | // Introduce a new set of potentially referenced declarations to the stack. |
| 5519 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 5520 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
| 5521 | |
| 5522 | std::swap(ExprEvalContext, NewContext); |
| 5523 | return NewContext; |
| 5524 | } |
| 5525 | |
| 5526 | void |
| 5527 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 5528 | ExpressionEvaluationContext NewContext) { |
| 5529 | ExprEvalContext = NewContext; |
| 5530 | |
| 5531 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 5532 | // Mark any remaining declarations in the current position of the stack |
| 5533 | // as "referenced". If they were not meant to be referenced, semantic |
| 5534 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 5535 | PotentiallyReferencedDecls RemainingDecls; |
| 5536 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 5537 | PotentiallyReferencedDeclStack.pop_back(); |
| 5538 | |
| 5539 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 5540 | IEnd = RemainingDecls.end(); |
| 5541 | I != IEnd; ++I) |
| 5542 | MarkDeclarationReferenced(I->first, I->second); |
| 5543 | } |
| 5544 | } |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5545 | |
| 5546 | /// \brief Note that the given declaration was referenced in the source code. |
| 5547 | /// |
| 5548 | /// This routine should be invoke whenever a given declaration is referenced |
| 5549 | /// in the source code, and where that reference occurred. If this declaration |
| 5550 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 5551 | /// C99 6.9p3), then the declaration will be marked as used. |
| 5552 | /// |
| 5553 | /// \param Loc the location where the declaration was referenced. |
| 5554 | /// |
| 5555 | /// \param D the declaration that has been referenced by the source code. |
| 5556 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 5557 | assert(D && "No declaration?"); |
| 5558 | |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5559 | if (D->isUsed()) |
| 5560 | return; |
| 5561 | |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5562 | // Mark a parameter declaration "used", regardless of whether we're in a |
| 5563 | // template or not. |
| 5564 | if (isa<ParmVarDecl>(D)) |
| 5565 | D->setUsed(true); |
| 5566 | |
| 5567 | // Do not mark anything as "used" within a dependent context; wait for |
| 5568 | // an instantiation. |
| 5569 | if (CurContext->isDependentContext()) |
| 5570 | return; |
| 5571 | |
Douglas Gregor | a8b2fbf | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 5572 | switch (ExprEvalContext) { |
| 5573 | case Unevaluated: |
| 5574 | // We are in an expression that is not potentially evaluated; do nothing. |
| 5575 | return; |
| 5576 | |
| 5577 | case PotentiallyEvaluated: |
| 5578 | // We are in a potentially-evaluated expression, so this declaration is |
| 5579 | // "used"; handle this below. |
| 5580 | break; |
| 5581 | |
| 5582 | case PotentiallyPotentiallyEvaluated: |
| 5583 | // We are in an expression that may be potentially evaluated; queue this |
| 5584 | // declaration reference until we know whether the expression is |
| 5585 | // potentially evaluated. |
| 5586 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 5587 | return; |
| 5588 | } |
| 5589 | |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5590 | // Note that this declaration has been used. |
Fariborz Jahanian | 8915a3d | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 5591 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 599778e | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 5592 | unsigned TypeQuals; |
Fariborz Jahanian | 2f5a0a3 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 5593 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 5594 | if (!Constructor->isUsed()) |
| 5595 | DefineImplicitDefaultConstructor(Loc, Constructor); |
| 5596 | } |
Fariborz Jahanian | 599778e | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 5597 | else if (Constructor->isImplicit() && |
| 5598 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
| 5599 | if (!Constructor->isUsed()) |
| 5600 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 5601 | } |
Fariborz Jahanian | 368cc6c | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 5602 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 5603 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 5604 | DefineImplicitDestructor(Loc, Destructor); |
| 5605 | |
Fariborz Jahanian | d67364c | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 5606 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 5607 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 5608 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 5609 | if (!MethodDecl->isUsed()) |
| 5610 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 5611 | } |
| 5612 | } |
Fariborz Jahanian | b12bd43 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 5613 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 6f5e054 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 5614 | // Implicit instantiation of function templates and member functions of |
| 5615 | // class templates. |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5616 | if (!Function->getBody(Context)) { |
Douglas Gregor | 6f5e054 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 5617 | // FIXME: distinguish between implicit instantiations of function |
| 5618 | // templates and explicit specializations (the latter don't get |
| 5619 | // instantiated, naturally). |
| 5620 | if (Function->getInstantiatedFromMemberFunction() || |
| 5621 | Function->getPrimaryTemplate()) |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5622 | PendingImplicitInstantiations.push(std::make_pair(Function, Loc)); |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5623 | } |
| 5624 | |
| 5625 | |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5626 | // FIXME: keep track of references to static functions |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5627 | Function->setUsed(true); |
| 5628 | return; |
Douglas Gregor | cad27f6 | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5629 | } |
Douglas Gregor | 9818926 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5630 | |
| 5631 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 5632 | (void)Var; |
| 5633 | // FIXME: implicit template instantiation |
| 5634 | // FIXME: keep track of references to static data? |
| 5635 | D->setUsed(true); |
| 5636 | } |
| 5637 | } |
| 5638 | |