Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | #include "clang/Lex/Preprocessor.h" |
| 21 | #include "clang/Lex/LiteralSupport.h" |
| 22 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 24 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 25 | #include "clang/Parse/Designator.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 26 | #include "clang/Parse/Scope.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | using namespace clang; |
| 28 | |
Douglas Gregor | 48f3bb9 | 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 | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 41 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 42 | if (D->getAttr<DeprecatedAttr>()) { |
Douglas Gregor | 48f3bb9 | 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 | f15970c | 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. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 51 | isSilenced = ND->getAttr<DeprecatedAttr>(); |
Chris Lattner | f15970c | 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 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 61 | MD = Impl->getClassInterface()->getMethod(MD->getSelector(), |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 62 | MD->isInstanceMethod()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 63 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | if (!isSilenced) |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 69 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 70 | } |
| 71 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 72 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 73 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 74 | if (FD->isDeleted()) { |
| 75 | Diag(Loc, diag::err_deleted_function_use); |
| 76 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 77 | return true; |
| 78 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 79 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 80 | |
| 81 | // See if the decl is unavailable |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 82 | if (D->getAttr<UnavailableAttr>()) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 83 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 84 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 85 | } |
| 86 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 87 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 90 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
| 91 | /// (and other functions in future), which have been declared with sentinel |
| 92 | /// attribute. It warns if call does not have the sentinel argument. |
| 93 | /// |
| 94 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
| 95 | Expr **Args, unsigned NumArgs) |
| 96 | { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 97 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 98 | if (!attr) |
| 99 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 100 | int sentinelPos = attr->getSentinel(); |
| 101 | int nullPos = attr->getNullPos(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 102 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 103 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 104 | // base class. Then we won't be needing two versions of the same code. |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 105 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 106 | bool warnNotEnoughArgs = false; |
| 107 | int isMethod = 0; |
| 108 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 109 | // skip over named parameters. |
| 110 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 111 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 112 | if (nullPos) |
| 113 | --nullPos; |
| 114 | else |
| 115 | ++i; |
| 116 | } |
| 117 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 118 | isMethod = 1; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 119 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 120 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 121 | // skip over named parameters. |
| 122 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 123 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 124 | if (nullPos) |
| 125 | --nullPos; |
| 126 | else |
| 127 | ++i; |
| 128 | } |
| 129 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 130 | } |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 131 | else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
| 132 | // block or function pointer call. |
| 133 | QualType Ty = V->getType(); |
| 134 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
| 135 | const FunctionType *FT = Ty->isFunctionPointerType() |
| 136 | ? Ty->getAsPointerType()->getPointeeType()->getAsFunctionType() |
| 137 | : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType(); |
| 138 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 139 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 140 | unsigned k; |
| 141 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 142 | if (nullPos) |
| 143 | --nullPos; |
| 144 | else |
| 145 | ++i; |
| 146 | } |
| 147 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 148 | } |
| 149 | if (Ty->isBlockPointerType()) |
| 150 | isMethod = 2; |
| 151 | } |
| 152 | else |
| 153 | return; |
| 154 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 155 | else |
| 156 | return; |
| 157 | |
| 158 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 159 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 160 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 161 | return; |
| 162 | } |
| 163 | int sentinel = i; |
| 164 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 165 | --sentinelPos; |
| 166 | ++i; |
| 167 | } |
| 168 | if (sentinelPos > 0) { |
| 169 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 170 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 171 | return; |
| 172 | } |
| 173 | while (i < NumArgs-1) { |
| 174 | ++i; |
| 175 | ++sentinel; |
| 176 | } |
| 177 | Expr *sentinelExpr = Args[sentinel]; |
| 178 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
| 179 | !sentinelExpr->isNullPointerConstant(Context))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 180 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 181 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 182 | } |
| 183 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 186 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 187 | Expr *Ex = (Expr *)E; |
| 188 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 189 | } |
| 190 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 191 | //===----------------------------------------------------------------------===// |
| 192 | // Standard Promotions and Conversions |
| 193 | //===----------------------------------------------------------------------===// |
| 194 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 195 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 196 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 197 | QualType Ty = E->getType(); |
| 198 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 199 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 200 | if (Ty->isFunctionType()) |
| 201 | ImpCastExprToType(E, Context.getPointerType(Ty)); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 202 | else if (Ty->isArrayType()) { |
| 203 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 204 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 205 | // type 'array of type' is converted to an expression that has type 'pointer |
| 206 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 207 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 208 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 209 | // |
| 210 | // C++ 4.2p1: |
| 211 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 212 | // T" can be converted to an rvalue of type "pointer to T". |
| 213 | // |
| 214 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 215 | E->isLvalue(Context) == Expr::LV_Valid) |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 216 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); |
| 217 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 220 | /// \brief Whether this is a promotable bitfield reference according |
| 221 | /// to C99 6.3.1.1p2, bullet 2. |
| 222 | /// |
| 223 | /// \returns the type this bit-field will promote to, or NULL if no |
| 224 | /// promotion occurs. |
| 225 | static QualType isPromotableBitField(Expr *E, ASTContext &Context) { |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 226 | FieldDecl *Field = E->getBitField(); |
| 227 | if (!Field) |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 228 | return QualType(); |
| 229 | |
| 230 | const BuiltinType *BT = Field->getType()->getAsBuiltinType(); |
| 231 | if (!BT) |
| 232 | return QualType(); |
| 233 | |
| 234 | if (BT->getKind() != BuiltinType::Bool && |
| 235 | BT->getKind() != BuiltinType::Int && |
| 236 | BT->getKind() != BuiltinType::UInt) |
| 237 | return QualType(); |
| 238 | |
| 239 | llvm::APSInt BitWidthAP; |
| 240 | if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context)) |
| 241 | return QualType(); |
| 242 | |
| 243 | uint64_t BitWidth = BitWidthAP.getZExtValue(); |
| 244 | uint64_t IntSize = Context.getTypeSize(Context.IntTy); |
| 245 | if (BitWidth < IntSize || |
| 246 | (Field->getType()->isSignedIntegerType() && BitWidth == IntSize)) |
| 247 | return Context.IntTy; |
| 248 | |
| 249 | if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType()) |
| 250 | return Context.UnsignedIntTy; |
| 251 | |
| 252 | return QualType(); |
| 253 | } |
| 254 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 255 | /// UsualUnaryConversions - Performs various conversions that are common to most |
| 256 | /// operators (C99 6.3). The conversions of array and function types are |
| 257 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 258 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 259 | /// In these instances, this routine should *not* be called. |
| 260 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 261 | QualType Ty = Expr->getType(); |
| 262 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
| 263 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 264 | // C99 6.3.1.1p2: |
| 265 | // |
| 266 | // The following may be used in an expression wherever an int or |
| 267 | // unsigned int may be used: |
| 268 | // - an object or expression with an integer type whose integer |
| 269 | // conversion rank is less than or equal to the rank of int |
| 270 | // and unsigned int. |
| 271 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 272 | // |
| 273 | // If an int can represent all values of the original type, the |
| 274 | // value is converted to an int; otherwise, it is converted to an |
| 275 | // unsigned int. These are called the integer promotions. All |
| 276 | // other types are unchanged by the integer promotions. |
| 277 | if (Ty->isPromotableIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 278 | ImpCastExprToType(Expr, Context.IntTy); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 279 | return Expr; |
| 280 | } else { |
| 281 | QualType T = isPromotableBitField(Expr, Context); |
| 282 | if (!T.isNull()) { |
| 283 | ImpCastExprToType(Expr, T); |
| 284 | return Expr; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 289 | return Expr; |
| 290 | } |
| 291 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 292 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 293 | /// do not have a prototype. Arguments that have type float are promoted to |
| 294 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 295 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 296 | QualType Ty = Expr->getType(); |
| 297 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
| 298 | |
| 299 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
| 300 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 301 | if (BT->getKind() == BuiltinType::Float) |
| 302 | return ImpCastExprToType(Expr, Context.DoubleTy); |
| 303 | |
| 304 | UsualUnaryConversions(Expr); |
| 305 | } |
| 306 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 307 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 308 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 309 | /// interfaces passed by value. This returns true if the argument type is |
| 310 | /// completely illegal. |
| 311 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 312 | DefaultArgumentPromotion(Expr); |
| 313 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 314 | if (Expr->getType()->isObjCInterfaceType()) { |
| 315 | Diag(Expr->getLocStart(), |
| 316 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 317 | << Expr->getType() << CT; |
| 318 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 319 | } |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 320 | |
| 321 | if (!Expr->getType()->isPODType()) |
| 322 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 323 | << Expr->getType() << CT; |
| 324 | |
| 325 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 329 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 330 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 331 | /// routine returns the first non-arithmetic type found. The client is |
| 332 | /// responsible for emitting appropriate error diagnostics. |
| 333 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 334 | /// GCC. |
| 335 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 336 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 337 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 338 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 339 | |
| 340 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 341 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 342 | // For conversion purposes, we ignore any qualifiers. |
| 343 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 344 | QualType lhs = |
| 345 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
| 346 | QualType rhs = |
| 347 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 348 | |
| 349 | // If both types are identical, no conversion is needed. |
| 350 | if (lhs == rhs) |
| 351 | return lhs; |
| 352 | |
| 353 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 354 | // The caller can deal with this (e.g. pointer + int). |
| 355 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 356 | return lhs; |
| 357 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 358 | // Perform bitfield promotions. |
| 359 | QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context); |
| 360 | if (!LHSBitfieldPromoteTy.isNull()) |
| 361 | lhs = LHSBitfieldPromoteTy; |
| 362 | QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context); |
| 363 | if (!RHSBitfieldPromoteTy.isNull()) |
| 364 | rhs = RHSBitfieldPromoteTy; |
| 365 | |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 366 | QualType destType = UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 367 | if (!isCompAssign) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 368 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 369 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 370 | return destType; |
| 371 | } |
| 372 | |
| 373 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 374 | // Perform the usual unary conversions. We do this early so that |
| 375 | // integral promotions to "int" can allow us to exit early, in the |
| 376 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 377 | // qualifiers. For example, "const float" and "float" are |
| 378 | // equivalent. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 379 | if (lhs->isPromotableIntegerType()) |
| 380 | lhs = Context.IntTy; |
| 381 | else |
| 382 | lhs = lhs.getUnqualifiedType(); |
| 383 | if (rhs->isPromotableIntegerType()) |
| 384 | rhs = Context.IntTy; |
| 385 | else |
| 386 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 387 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 388 | // If both types are identical, no conversion is needed. |
| 389 | if (lhs == rhs) |
| 390 | return lhs; |
| 391 | |
| 392 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 393 | // The caller can deal with this (e.g. pointer + int). |
| 394 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 395 | return lhs; |
| 396 | |
| 397 | // At this point, we have two different arithmetic types. |
| 398 | |
| 399 | // Handle complex types first (C99 6.3.1.8p1). |
| 400 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 401 | // if we have an integer operand, the result is the complex type. |
| 402 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 403 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 404 | return lhs; |
| 405 | } |
| 406 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 407 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 408 | return rhs; |
| 409 | } |
| 410 | // This handles complex/complex, complex/float, or float/complex. |
| 411 | // When both operands are complex, the shorter operand is converted to the |
| 412 | // type of the longer, and that is the type of the result. This corresponds |
| 413 | // to what is done when combining two real floating-point operands. |
| 414 | // The fun begins when size promotion occur across type domains. |
| 415 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 416 | // floating-point type, the less precise type is converted, within it's |
| 417 | // real or complex domain, to the precision of the other type. For example, |
| 418 | // when combining a "long double" with a "double _Complex", the |
| 419 | // "double _Complex" is promoted to "long double _Complex". |
| 420 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 421 | |
| 422 | if (result > 0) { // The left side is bigger, convert rhs. |
| 423 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 424 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 425 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 426 | } |
| 427 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 428 | // domains match. This is a requirement for our implementation, C99 |
| 429 | // does not require this promotion. |
| 430 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 431 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 432 | return rhs; |
| 433 | } else { // handle "_Complex double, double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 434 | return lhs; |
| 435 | } |
| 436 | } |
| 437 | return lhs; // The domain/size match exactly. |
| 438 | } |
| 439 | // Now handle "real" floating types (i.e. float, double, long double). |
| 440 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 441 | // if we have an integer operand, the result is the real floating type. |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 442 | if (rhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 443 | // convert rhs to the lhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 444 | return lhs; |
| 445 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 446 | if (rhs->isComplexIntegerType()) { |
| 447 | // convert rhs to the complex floating point type. |
| 448 | return Context.getComplexType(lhs); |
| 449 | } |
| 450 | if (lhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 451 | // convert lhs to the rhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 452 | return rhs; |
| 453 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 454 | if (lhs->isComplexIntegerType()) { |
| 455 | // convert lhs to the complex floating point type. |
| 456 | return Context.getComplexType(rhs); |
| 457 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 458 | // We have two real floating types, float/complex combos were handled above. |
| 459 | // Convert the smaller operand to the bigger result. |
| 460 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 461 | if (result > 0) // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 462 | return lhs; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 463 | assert(result < 0 && "illegal float comparison"); |
| 464 | return rhs; // convert the lhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 465 | } |
| 466 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 467 | // Handle GCC complex int extension. |
| 468 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 469 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 470 | |
| 471 | if (lhsComplexInt && rhsComplexInt) { |
| 472 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 473 | rhsComplexInt->getElementType()) >= 0) |
| 474 | return lhs; // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 475 | return rhs; |
| 476 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 477 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 478 | return lhs; |
| 479 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 480 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 481 | return rhs; |
| 482 | } |
| 483 | } |
| 484 | // Finally, we have two differing integer types. |
| 485 | // The rules for this case are in C99 6.3.1.8 |
| 486 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 487 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 488 | rhsSigned = rhs->isSignedIntegerType(); |
| 489 | QualType destType; |
| 490 | if (lhsSigned == rhsSigned) { |
| 491 | // Same signedness; use the higher-ranked type |
| 492 | destType = compare >= 0 ? lhs : rhs; |
| 493 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 494 | // The unsigned type has greater than or equal rank to the |
| 495 | // signed type, so use the unsigned type |
| 496 | destType = lhsSigned ? rhs : lhs; |
| 497 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 498 | // The two types are different widths; if we are here, that |
| 499 | // means the signed type is larger than the unsigned type, so |
| 500 | // use the signed type. |
| 501 | destType = lhsSigned ? lhs : rhs; |
| 502 | } else { |
| 503 | // The signed type is higher-ranked than the unsigned type, |
| 504 | // but isn't actually any bigger (like unsigned int and long |
| 505 | // on most 32-bit systems). Use the unsigned type corresponding |
| 506 | // to the signed type. |
| 507 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 508 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 509 | return destType; |
| 510 | } |
| 511 | |
| 512 | //===----------------------------------------------------------------------===// |
| 513 | // Semantic Analysis for various Expression Types |
| 514 | //===----------------------------------------------------------------------===// |
| 515 | |
| 516 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 517 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 518 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 519 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 520 | /// multiple tokens. However, the common case is that StringToks points to one |
| 521 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 522 | /// |
| 523 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 524 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 525 | assert(NumStringToks && "Must have at least one string!"); |
| 526 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 527 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 528 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 529 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 530 | |
| 531 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 532 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 533 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 534 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 535 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 536 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 537 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 538 | |
| 539 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 540 | if (getLangOptions().CPlusPlus) |
| 541 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 542 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 543 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 544 | // the nul terminator character as well as the string length for pascal |
| 545 | // strings. |
| 546 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 547 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 548 | ArrayType::Normal, 0); |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 549 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 550 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 551 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 552 | Literal.GetStringLength(), |
| 553 | Literal.AnyWide, StrTy, |
| 554 | &StringTokLocs[0], |
| 555 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 556 | } |
| 557 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 558 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 559 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 560 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 561 | /// for values inside the block or for globals). |
| 562 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 563 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 564 | /// up-to-date. |
| 565 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 566 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 567 | ValueDecl *VD) { |
| 568 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 569 | // we wanted to. |
| 570 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 571 | return false; |
| 572 | |
| 573 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 574 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 575 | return false; |
| 576 | |
| 577 | // If this is a reference to an extern, static, or global variable, no need to |
| 578 | // snapshot it. |
| 579 | // FIXME: What about 'const' variables in C++? |
| 580 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 581 | if (!Var->hasLocalStorage()) |
| 582 | return false; |
| 583 | |
| 584 | // Blocks that have these can't be constant. |
| 585 | CurBlock->hasBlockDeclRefExprs = true; |
| 586 | |
| 587 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 588 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 589 | // be defined outside all of the current blocks (in which case the blocks do |
| 590 | // all get the bit). Walk the nesting chain. |
| 591 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 592 | NextBlock = NextBlock->PrevBlockInfo) { |
| 593 | // If we found the defining block for the variable, don't mark the block as |
| 594 | // having a reference outside it. |
| 595 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 596 | break; |
| 597 | |
| 598 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 599 | // a snapshot as well. |
| 600 | NextBlock->hasBlockDeclRefExprs = true; |
| 601 | } |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 602 | |
| 603 | return true; |
| 604 | } |
| 605 | |
| 606 | |
| 607 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 608 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 609 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 610 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 611 | /// SS is only used for a C++ qualified-id (foo::bar) to indicate the |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 612 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 613 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 614 | IdentifierInfo &II, |
| 615 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 616 | const CXXScopeSpec *SS, |
| 617 | bool isAddressOfOperand) { |
| 618 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 619 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 622 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 623 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 624 | /// nested-name-specifier. |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 625 | Sema::OwningExprResult |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 626 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 627 | bool TypeDependent, bool ValueDependent, |
| 628 | const CXXScopeSpec *SS) { |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 629 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 630 | Diag(Loc, |
| 631 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
| 632 | << D->getDeclName(); |
| 633 | return ExprError(); |
| 634 | } |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 635 | |
| 636 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 637 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 638 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 639 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
| 640 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
| 641 | << D->getIdentifier() << FD->getDeclName(); |
| 642 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
| 643 | << D->getIdentifier(); |
| 644 | return ExprError(); |
| 645 | } |
| 646 | } |
| 647 | } |
| 648 | } |
| 649 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 650 | MarkDeclarationReferenced(Loc, D); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 651 | |
| 652 | Expr *E; |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 653 | if (SS && !SS->isEmpty()) { |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 654 | E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 655 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 656 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 657 | } else |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 658 | E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
| 659 | |
| 660 | return Owned(E); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 661 | } |
| 662 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 663 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 664 | /// variable corresponding to the anonymous union or struct whose type |
| 665 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 666 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 667 | RecordDecl *Record) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 668 | assert(Record->isAnonymousStructOrUnion() && |
| 669 | "Record must be an anonymous struct or union!"); |
| 670 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 671 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 672 | // operation rather than a slow walk through DeclContext's vector (which |
| 673 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 674 | DeclContext *Ctx = Record->getDeclContext(); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 675 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
| 676 | DEnd = Ctx->decls_end(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 677 | D != DEnd; ++D) { |
| 678 | if (*D == Record) { |
| 679 | // The object for the anonymous struct/union directly |
| 680 | // follows its type in the list of declarations. |
| 681 | ++D; |
| 682 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 683 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 684 | return *D; |
| 685 | } |
| 686 | } |
| 687 | |
| 688 | assert(false && "Missing object for anonymous record"); |
| 689 | return 0; |
| 690 | } |
| 691 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 692 | /// \brief Given a field that represents a member of an anonymous |
| 693 | /// struct/union, build the path from that field's context to the |
| 694 | /// actual member. |
| 695 | /// |
| 696 | /// Construct the sequence of field member references we'll have to |
| 697 | /// perform to get to the field in the anonymous union/struct. The |
| 698 | /// list of members is built from the field outward, so traverse it |
| 699 | /// backwards to go from an object in the current context to the field |
| 700 | /// we found. |
| 701 | /// |
| 702 | /// \returns The variable from which the field access should begin, |
| 703 | /// for an anonymous struct/union that is not a member of another |
| 704 | /// class. Otherwise, returns NULL. |
| 705 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 706 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 707 | assert(Field->getDeclContext()->isRecord() && |
| 708 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 709 | && "Field must be stored inside an anonymous struct or union"); |
| 710 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 711 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 712 | VarDecl *BaseObject = 0; |
| 713 | DeclContext *Ctx = Field->getDeclContext(); |
| 714 | do { |
| 715 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 716 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 717 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 718 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 719 | else { |
| 720 | BaseObject = cast<VarDecl>(AnonObject); |
| 721 | break; |
| 722 | } |
| 723 | Ctx = Ctx->getParent(); |
| 724 | } while (Ctx->isRecord() && |
| 725 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 726 | |
| 727 | return BaseObject; |
| 728 | } |
| 729 | |
| 730 | Sema::OwningExprResult |
| 731 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 732 | FieldDecl *Field, |
| 733 | Expr *BaseObjectExpr, |
| 734 | SourceLocation OpLoc) { |
| 735 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 736 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
| 737 | AnonFields); |
| 738 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 739 | // Build the expression that refers to the base object, from |
| 740 | // which we will build a sequence of member references to each |
| 741 | // of the anonymous union objects and, eventually, the field we |
| 742 | // found via name lookup. |
| 743 | bool BaseObjectIsPointer = false; |
| 744 | unsigned ExtraQuals = 0; |
| 745 | if (BaseObject) { |
| 746 | // BaseObject is an anonymous struct/union variable (and is, |
| 747 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 748 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 749 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 750 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 751 | SourceLocation()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 752 | ExtraQuals |
| 753 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 754 | } else if (BaseObjectExpr) { |
| 755 | // The caller provided the base object expression. Determine |
| 756 | // whether its a pointer and whether it adds any qualifiers to the |
| 757 | // anonymous struct/union fields we're looking into. |
| 758 | QualType ObjectType = BaseObjectExpr->getType(); |
| 759 | if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) { |
| 760 | BaseObjectIsPointer = true; |
| 761 | ObjectType = ObjectPtr->getPointeeType(); |
| 762 | } |
| 763 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 764 | } else { |
| 765 | // We've found a member of an anonymous struct/union that is |
| 766 | // inside a non-anonymous struct/union, so in a well-formed |
| 767 | // program our base object expression is "this". |
| 768 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 769 | if (!MD->isStatic()) { |
| 770 | QualType AnonFieldType |
| 771 | = Context.getTagDeclType( |
| 772 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 773 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 774 | if ((Context.getCanonicalType(AnonFieldType) |
| 775 | == Context.getCanonicalType(ThisType)) || |
| 776 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 777 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 778 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 779 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 780 | BaseObjectIsPointer = true; |
| 781 | } |
| 782 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 783 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 784 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 785 | } |
| 786 | ExtraQuals = MD->getTypeQualifiers(); |
| 787 | } |
| 788 | |
| 789 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 790 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 791 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | // Build the implicit member references to the field of the |
| 795 | // anonymous struct/union. |
| 796 | Expr *Result = BaseObjectExpr; |
| 797 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 798 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 799 | FI != FIEnd; ++FI) { |
| 800 | QualType MemberType = (*FI)->getType(); |
| 801 | if (!(*FI)->isMutable()) { |
| 802 | unsigned combinedQualifiers |
| 803 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 804 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 805 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 806 | MarkDeclarationReferenced(Loc, *FI); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 807 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 808 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 809 | BaseObjectIsPointer = false; |
| 810 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 813 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 816 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 817 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 818 | /// performs lookup on that name and returns an expression that refers |
| 819 | /// to that name. This routine isn't directly called from the parser, |
| 820 | /// because the parser doesn't know about DeclarationName. Rather, |
| 821 | /// this routine is called by ActOnIdentifierExpr, |
| 822 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 823 | /// which form the DeclarationName from the corresponding syntactic |
| 824 | /// forms. |
| 825 | /// |
| 826 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 827 | /// function call context. LookupCtx is only used for a C++ |
| 828 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 829 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 830 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 831 | /// isAddressOfOperand means that this expression is the direct operand |
| 832 | /// of an address-of operator. This matters because this is the only |
| 833 | /// situation where a qualified name referencing a non-static member may |
| 834 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 835 | Sema::OwningExprResult |
| 836 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 837 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 838 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 839 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 840 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 841 | if (SS && SS->isInvalid()) |
| 842 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 843 | |
| 844 | // C++ [temp.dep.expr]p3: |
| 845 | // An id-expression is type-dependent if it contains: |
| 846 | // -- a nested-name-specifier that contains a class-name that |
| 847 | // names a dependent type. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 848 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 849 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 850 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 851 | Loc, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 852 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()))); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 853 | } |
| 854 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 855 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 856 | false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 857 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 858 | if (Lookup.isAmbiguous()) { |
| 859 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 860 | SS && SS->isSet() ? SS->getRange() |
| 861 | : SourceRange()); |
| 862 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | NamedDecl *D = Lookup.getAsDecl(); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 866 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 867 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 868 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 869 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 870 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 871 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 872 | // in which case we should look for an ivar. 2) scoped lookup could have |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 873 | // found a decl, but that decl is outside the current instance method (i.e. |
| 874 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 875 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 876 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 877 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 878 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 879 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 880 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 881 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 882 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 883 | |
| 884 | // If we're referencing an invalid decl, just return this as a silent |
| 885 | // error node. The error diagnostic was already emitted on the decl. |
| 886 | if (IV->isInvalidDecl()) |
| 887 | return ExprError(); |
| 888 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 889 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 890 | // If a class method attemps to use a free standing ivar, this is |
| 891 | // an error. |
| 892 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 893 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 894 | << IV->getDeclName()); |
| 895 | // If a class method uses a global variable, even if an ivar with |
| 896 | // same name exists, use the global. |
| 897 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 898 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 899 | ClassDeclared != IFace) |
| 900 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 901 | // FIXME: This should use a new expr for a direct reference, don't |
| 902 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 903 | IdentifierInfo &II = Context.Idents.get("self"); |
| 904 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 905 | MarkDeclarationReferenced(Loc, IV); |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 906 | return Owned(new (Context) |
| 907 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 908 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 909 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 910 | } |
| 911 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 912 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 913 | // We should warn if a local variable hides an ivar. |
| 914 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 915 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 916 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 917 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 918 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 919 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 920 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 921 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 922 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 923 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 924 | QualType T; |
| 925 | |
| 926 | if (getCurMethodDecl()->isInstanceMethod()) |
| 927 | T = Context.getPointerType(Context.getObjCInterfaceType( |
| 928 | getCurMethodDecl()->getClassInterface())); |
| 929 | else |
| 930 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 931 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 932 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 933 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 934 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 935 | // Determine whether this name might be a candidate for |
| 936 | // argument-dependent lookup. |
| 937 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 938 | HasTrailingLParen; |
| 939 | |
| 940 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 941 | // We've seen something of the form |
| 942 | // |
| 943 | // identifier( |
| 944 | // |
| 945 | // and we did not find any entity by the name |
| 946 | // "identifier". However, this identifier is still subject to |
| 947 | // argument-dependent lookup, so keep track of the name. |
| 948 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 949 | Context.OverloadTy, |
| 950 | Loc)); |
| 951 | } |
| 952 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 953 | if (D == 0) { |
| 954 | // Otherwise, this could be an implicitly declared function reference (legal |
| 955 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 956 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 957 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 958 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 959 | else { |
| 960 | // If this name wasn't predeclared and if this is not a function call, |
| 961 | // diagnose the problem. |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 962 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 963 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 964 | << Name << SS->getRange()); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 965 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 966 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 967 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 968 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 969 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 970 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 971 | } |
| 972 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame^] | 973 | |
| 974 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 975 | // Warn about constructs like: |
| 976 | // if (void *X = foo()) { ... } else { X }. |
| 977 | // In the else block, the pointer is always false. |
| 978 | |
| 979 | // FIXME: In a template instantiation, we don't have scope |
| 980 | // information to check this property. |
| 981 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 982 | Scope *CheckS = S; |
| 983 | while (CheckS) { |
| 984 | if (CheckS->isWithinElse() && |
| 985 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
| 986 | if (Var->getType()->isBooleanType()) |
| 987 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 988 | << Var->getDeclName()); |
| 989 | else |
| 990 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 991 | << Var->getDeclName()); |
| 992 | break; |
| 993 | } |
| 994 | |
| 995 | // Move up one more control parent to check again. |
| 996 | CheckS = CheckS->getControlParent(); |
| 997 | if (CheckS) |
| 998 | CheckS = CheckS->getParent(); |
| 999 | } |
| 1000 | } |
| 1001 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) { |
| 1002 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 1003 | // C99 DR 316 says that, if a function type comes from a |
| 1004 | // function definition (without a prototype), that type is only |
| 1005 | // used for checking compatibility. Therefore, when referencing |
| 1006 | // the function, we pretend that we don't have the full function |
| 1007 | // type. |
| 1008 | if (DiagnoseUseOfDecl(Func, Loc)) |
| 1009 | return ExprError(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1010 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame^] | 1011 | QualType T = Func->getType(); |
| 1012 | QualType NoProtoType = T; |
| 1013 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 1014 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
| 1015 | return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS); |
| 1016 | } |
| 1017 | } |
| 1018 | |
| 1019 | return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand); |
| 1020 | } |
| 1021 | |
| 1022 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 1023 | Sema::OwningExprResult |
| 1024 | Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, |
| 1025 | bool HasTrailingLParen, |
| 1026 | const CXXScopeSpec *SS, |
| 1027 | bool isAddressOfOperand) { |
| 1028 | assert(D && "Cannot refer to a NULL declaration"); |
| 1029 | DeclarationName Name = D->getDeclName(); |
| 1030 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1031 | // If this is an expression of the form &Class::member, don't build an |
| 1032 | // implicit member ref, because we want a pointer to the member in general, |
| 1033 | // not any specific instance's member. |
| 1034 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1035 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1036 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1037 | QualType DType; |
| 1038 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 1039 | DType = FD->getType().getNonReferenceType(); |
| 1040 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 1041 | DType = Method->getType(); |
| 1042 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 1043 | DType = Context.OverloadTy; |
| 1044 | } |
| 1045 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 1046 | if (!DType.isNull()) { |
| 1047 | // The pointer is type- and value-dependent if it points into something |
| 1048 | // dependent. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 1049 | bool Dependent = DC->isDependentContext(); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1050 | return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1051 | } |
| 1052 | } |
| 1053 | } |
| 1054 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1055 | // We may have found a field within an anonymous union or struct |
| 1056 | // (C++ [class.union]). |
| 1057 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 1058 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 1059 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1060 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1061 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1062 | if (!MD->isStatic()) { |
| 1063 | // C++ [class.mfct.nonstatic]p2: |
| 1064 | // [...] if name lookup (3.4.1) resolves the name in the |
| 1065 | // id-expression to a nonstatic nontype member of class X or of |
| 1066 | // a base class of X, the id-expression is transformed into a |
| 1067 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 1068 | // as the postfix-expression to the left of the '.' operator. |
| 1069 | DeclContext *Ctx = 0; |
| 1070 | QualType MemberType; |
| 1071 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 1072 | Ctx = FD->getDeclContext(); |
| 1073 | MemberType = FD->getType(); |
| 1074 | |
| 1075 | if (const ReferenceType *RefType = MemberType->getAsReferenceType()) |
| 1076 | MemberType = RefType->getPointeeType(); |
| 1077 | else if (!FD->isMutable()) { |
| 1078 | unsigned combinedQualifiers |
| 1079 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 1080 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 1081 | } |
| 1082 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 1083 | if (!Method->isStatic()) { |
| 1084 | Ctx = Method->getParent(); |
| 1085 | MemberType = Method->getType(); |
| 1086 | } |
| 1087 | } else if (OverloadedFunctionDecl *Ovl |
| 1088 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 1089 | for (OverloadedFunctionDecl::function_iterator |
| 1090 | Func = Ovl->function_begin(), |
| 1091 | FuncEnd = Ovl->function_end(); |
| 1092 | Func != FuncEnd; ++Func) { |
| 1093 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 1094 | if (!DMethod->isStatic()) { |
| 1095 | Ctx = Ovl->getDeclContext(); |
| 1096 | MemberType = Context.OverloadTy; |
| 1097 | break; |
| 1098 | } |
| 1099 | } |
| 1100 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1101 | |
| 1102 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1103 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 1104 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 1105 | if ((Context.getCanonicalType(CtxType) |
| 1106 | == Context.getCanonicalType(ThisType)) || |
| 1107 | IsDerivedFrom(ThisType, CtxType)) { |
| 1108 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1109 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1110 | MD->getThisType(Context)); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1111 | MarkDeclarationReferenced(Loc, D); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1112 | return Owned(new (Context) MemberExpr(This, true, D, |
Eli Friedman | 7252713 | 2009-04-29 17:56:47 +0000 | [diff] [blame] | 1113 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1114 | } |
| 1115 | } |
| 1116 | } |
| 1117 | } |
| 1118 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1119 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1120 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1121 | if (MD->isStatic()) |
| 1122 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1123 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 1124 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1125 | } |
| 1126 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1127 | // Any other ways we could have found the field in a well-formed |
| 1128 | // program would have been turned into implicit member expressions |
| 1129 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1130 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 1131 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1132 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1133 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1134 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1135 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1136 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1137 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1138 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1139 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1140 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1141 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 1142 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1143 | return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 1144 | false, false, SS); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 1145 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1146 | return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 1147 | false, false, SS); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1148 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1149 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1150 | // Check whether this declaration can be used. Note that we suppress |
| 1151 | // this check when we're going to perform argument-dependent lookup |
| 1152 | // on this function name, because this might not be the function |
| 1153 | // that overload resolution actually selects. |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame^] | 1154 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 1155 | HasTrailingLParen; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1156 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 1157 | return ExprError(); |
| 1158 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1159 | // Only create DeclRefExpr's for valid Decl's. |
| 1160 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1161 | return ExprError(); |
| 1162 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1163 | // If the identifier reference is inside a block, and it refers to a value |
| 1164 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1165 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1166 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1167 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1168 | // We do not do this for things like enum constants, global variables, etc, |
| 1169 | // as they do not get snapshotted. |
| 1170 | // |
| 1171 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1172 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1173 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1174 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1175 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1176 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1177 | // This is to record that a 'const' was actually synthesize and added. |
| 1178 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1179 | // Variable will be bound by-copy, make it const within the closure. |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1180 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1181 | ExprTy.addConst(); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1182 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
| 1183 | constAdded)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1184 | } |
| 1185 | // If this reference is not in a block or if the referenced variable is |
| 1186 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1187 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1188 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1189 | bool ValueDependent = false; |
| 1190 | if (getLangOptions().CPlusPlus) { |
| 1191 | // C++ [temp.dep.expr]p3: |
| 1192 | // An id-expression is type-dependent if it contains: |
| 1193 | // - an identifier that was declared with a dependent type, |
| 1194 | if (VD->getType()->isDependentType()) |
| 1195 | TypeDependent = true; |
| 1196 | // - FIXME: a template-id that is dependent, |
| 1197 | // - a conversion-function-id that specifies a dependent type, |
| 1198 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1199 | Name.getCXXNameType()->isDependentType()) |
| 1200 | TypeDependent = true; |
| 1201 | // - a nested-name-specifier that contains a class-name that |
| 1202 | // names a dependent type. |
| 1203 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1204 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1205 | DC; DC = DC->getParent()) { |
| 1206 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1207 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1208 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1209 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1210 | TypeDependent = true; |
| 1211 | break; |
| 1212 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1213 | } |
| 1214 | } |
| 1215 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1216 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1217 | // C++ [temp.dep.constexpr]p2: |
| 1218 | // |
| 1219 | // An identifier is value-dependent if it is: |
| 1220 | // - a name declared with a dependent type, |
| 1221 | if (TypeDependent) |
| 1222 | ValueDependent = true; |
| 1223 | // - the name of a non-type template parameter, |
| 1224 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1225 | ValueDependent = true; |
| 1226 | // - a constant with integral or enumeration type and is |
| 1227 | // initialized with an expression that is value-dependent |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1228 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
| 1229 | if (Dcl->getType().getCVRQualifiers() == QualType::Const && |
| 1230 | Dcl->getInit()) { |
| 1231 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1232 | } |
| 1233 | } |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1234 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1235 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1236 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1237 | TypeDependent, ValueDependent, SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1238 | } |
| 1239 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1240 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1241 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1242 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1243 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1244 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1245 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1246 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1247 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1248 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1249 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1250 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1251 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1252 | // string. |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1253 | unsigned Length; |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 1254 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1255 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1256 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1257 | Length = MD->getSynthesizedMethodSize(); |
| 1258 | else { |
| 1259 | Diag(Loc, diag::ext_predef_outside_function); |
| 1260 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1261 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1262 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1263 | |
| 1264 | |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1265 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1266 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1267 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1268 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1269 | } |
| 1270 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1271 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1272 | llvm::SmallString<16> CharBuffer; |
| 1273 | CharBuffer.resize(Tok.getLength()); |
| 1274 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1275 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1276 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1277 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1278 | Tok.getLocation(), PP); |
| 1279 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1280 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1281 | |
| 1282 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1283 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1284 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1285 | Literal.isWide(), |
| 1286 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1287 | } |
| 1288 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1289 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1290 | // Fast path for a single digit (which is quite common). A single digit |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1291 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1292 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1293 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1294 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1295 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1296 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1297 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1298 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1299 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1300 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1301 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1302 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1303 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1304 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1305 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1306 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1307 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1308 | Tok.getLocation(), PP); |
| 1309 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1310 | return ExprError(); |
| 1311 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1312 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1313 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1314 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1315 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1316 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1317 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1318 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1319 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1320 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1321 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1322 | |
| 1323 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1324 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1325 | // isExact will be set by GetFloatValue(). |
| 1326 | bool isExact = false; |
Chris Lattner | 001d64d | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1327 | llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); |
| 1328 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1329 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1330 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1331 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1332 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1333 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1334 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1335 | // long long is a C99 feature. |
| 1336 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1337 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1338 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1339 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1340 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1341 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1342 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1343 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1344 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1345 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1346 | Ty = Context.UnsignedLongLongTy; |
| 1347 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1348 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1349 | } else { |
| 1350 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1351 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1352 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1353 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1354 | // be an unsigned int. |
| 1355 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1356 | |
| 1357 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1358 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1359 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1360 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1361 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1362 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1363 | // Does it fit in a unsigned int? |
| 1364 | if (ResultVal.isIntN(IntSize)) { |
| 1365 | // Does it fit in a signed int? |
| 1366 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1367 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1368 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1369 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1370 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1371 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1372 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1373 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1374 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1375 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1376 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1377 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1378 | // Does it fit in a unsigned long? |
| 1379 | if (ResultVal.isIntN(LongSize)) { |
| 1380 | // Does it fit in a signed long? |
| 1381 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1382 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1383 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1384 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1385 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1386 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1387 | } |
| 1388 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1389 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1390 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1391 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1392 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1393 | // Does it fit in a unsigned long long? |
| 1394 | if (ResultVal.isIntN(LongLongSize)) { |
| 1395 | // Does it fit in a signed long long? |
| 1396 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1397 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1398 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1399 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1400 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1401 | } |
| 1402 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1403 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1404 | // If we still couldn't decide a type, we probably have something that |
| 1405 | // does not fit in a signed long long, but has no U suffix. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1406 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1407 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1408 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1409 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1410 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1411 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1412 | if (ResultVal.getBitWidth() != Width) |
| 1413 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1414 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1415 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1416 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1417 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1418 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1419 | if (Literal.isImaginary) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1420 | Res = new (Context) ImaginaryLiteral(Res, |
| 1421 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1422 | |
| 1423 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1426 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1427 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1428 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1429 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1430 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1431 | } |
| 1432 | |
| 1433 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1434 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1435 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1436 | SourceLocation OpLoc, |
| 1437 | const SourceRange &ExprRange, |
| 1438 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1439 | if (exprType->isDependentType()) |
| 1440 | return false; |
| 1441 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1442 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1443 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1444 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1445 | if (isSizeof) |
| 1446 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1447 | return false; |
| 1448 | } |
| 1449 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1450 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1451 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1452 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1453 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1454 | return false; |
| 1455 | } |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1456 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1457 | if (RequireCompleteType(OpLoc, exprType, |
| 1458 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1459 | diag::err_alignof_incomplete_type, |
| 1460 | ExprRange)) |
| 1461 | return true; |
| 1462 | |
| 1463 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1464 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1465 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1466 | << exprType << isSizeof << ExprRange; |
| 1467 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1468 | } |
| 1469 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1470 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1471 | } |
| 1472 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1473 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1474 | const SourceRange &ExprRange) { |
| 1475 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1476 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1477 | // alignof decl is always ok. |
| 1478 | if (isa<DeclRefExpr>(E)) |
| 1479 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1480 | |
| 1481 | // Cannot know anything else if the expression is dependent. |
| 1482 | if (E->isTypeDependent()) |
| 1483 | return false; |
| 1484 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1485 | if (E->getBitField()) { |
| 1486 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1487 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1488 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1489 | |
| 1490 | // Alignment of a field access is always okay, so long as it isn't a |
| 1491 | // bit-field. |
| 1492 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
| 1493 | if (dyn_cast<FieldDecl>(ME->getMemberDecl())) |
| 1494 | return false; |
| 1495 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1496 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1497 | } |
| 1498 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1499 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1500 | Action::OwningExprResult |
| 1501 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1502 | bool isSizeOf, SourceRange R) { |
| 1503 | if (T.isNull()) |
| 1504 | return ExprError(); |
| 1505 | |
| 1506 | if (!T->isDependentType() && |
| 1507 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1508 | return ExprError(); |
| 1509 | |
| 1510 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1511 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1512 | Context.getSizeType(), OpLoc, |
| 1513 | R.getEnd())); |
| 1514 | } |
| 1515 | |
| 1516 | /// \brief Build a sizeof or alignof expression given an expression |
| 1517 | /// operand. |
| 1518 | Action::OwningExprResult |
| 1519 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1520 | bool isSizeOf, SourceRange R) { |
| 1521 | // Verify that the operand is valid. |
| 1522 | bool isInvalid = false; |
| 1523 | if (E->isTypeDependent()) { |
| 1524 | // Delay type-checking for type-dependent expressions. |
| 1525 | } else if (!isSizeOf) { |
| 1526 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1527 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1528 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1529 | isInvalid = true; |
| 1530 | } else { |
| 1531 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1532 | } |
| 1533 | |
| 1534 | if (isInvalid) |
| 1535 | return ExprError(); |
| 1536 | |
| 1537 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1538 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1539 | Context.getSizeType(), OpLoc, |
| 1540 | R.getEnd())); |
| 1541 | } |
| 1542 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1543 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1544 | /// the same for @c alignof and @c __alignof |
| 1545 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1546 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1547 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1548 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1549 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1550 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1551 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1552 | if (isType) { |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1553 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1554 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1555 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1556 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1557 | // Get the end location. |
| 1558 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1559 | Action::OwningExprResult Result |
| 1560 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1561 | |
| 1562 | if (Result.isInvalid()) |
| 1563 | DeleteExpr(ArgEx); |
| 1564 | |
| 1565 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1566 | } |
| 1567 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1568 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1569 | if (V->isTypeDependent()) |
| 1570 | return Context.DependentTy; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1571 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1572 | // These operators return the element type of a complex type. |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1573 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1574 | return CT->getElementType(); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1575 | |
| 1576 | // Otherwise they pass through real integer and floating point types here. |
| 1577 | if (V->getType()->isArithmeticType()) |
| 1578 | return V->getType(); |
| 1579 | |
| 1580 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1581 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1582 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1583 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1587 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1588 | Action::OwningExprResult |
| 1589 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1590 | tok::TokenKind Kind, ExprArg Input) { |
| 1591 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1592 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1593 | UnaryOperator::Opcode Opc; |
| 1594 | switch (Kind) { |
| 1595 | default: assert(0 && "Unknown unary op!"); |
| 1596 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1597 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1598 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1599 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1600 | if (getLangOptions().CPlusPlus && |
| 1601 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1602 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1603 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1604 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1605 | |
| 1606 | // C++ [over.inc]p1: |
| 1607 | // |
| 1608 | // [...] If the function is a member function with one |
| 1609 | // parameter (which shall be of type int) or a non-member |
| 1610 | // function with two parameters (the second of which shall be |
| 1611 | // of type int), it defines the postfix increment operator ++ |
| 1612 | // for objects of that type. When the postfix increment is |
| 1613 | // called as a result of using the ++ operator, the int |
| 1614 | // argument will have value zero. |
| 1615 | Expr *Args[2] = { |
| 1616 | Arg, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1617 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1618 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1619 | }; |
| 1620 | |
| 1621 | // Build the candidate set for overloading |
| 1622 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1623 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1624 | |
| 1625 | // Perform overload resolution. |
| 1626 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1627 | switch (BestViableFunction(CandidateSet, OpLoc, Best)) { |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1628 | case OR_Success: { |
| 1629 | // We found a built-in operator or an overloaded operator. |
| 1630 | FunctionDecl *FnDecl = Best->Function; |
| 1631 | |
| 1632 | if (FnDecl) { |
| 1633 | // We matched an overloaded operator. Build a call to that |
| 1634 | // operator. |
| 1635 | |
| 1636 | // Convert the arguments. |
| 1637 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1638 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1639 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1640 | } else { |
| 1641 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1642 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1643 | FnDecl->getParamDecl(0)->getType(), |
| 1644 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1645 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1646 | } |
| 1647 | |
| 1648 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1649 | QualType ResultTy |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1650 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1651 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1652 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1653 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1654 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1655 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1656 | UsualUnaryConversions(FnExpr); |
| 1657 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1658 | Input.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1659 | Args[0] = Arg; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1660 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1661 | Args, 2, ResultTy, |
| 1662 | OpLoc)); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1663 | } else { |
| 1664 | // We matched a built-in operator. Convert the arguments, then |
| 1665 | // break out so that we will build the appropriate built-in |
| 1666 | // operator node. |
| 1667 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1668 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1669 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1670 | |
| 1671 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1672 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1673 | } |
| 1674 | |
| 1675 | case OR_No_Viable_Function: |
| 1676 | // No viable function; fall through to handling this as a |
| 1677 | // built-in operator, which will produce an error message for us. |
| 1678 | break; |
| 1679 | |
| 1680 | case OR_Ambiguous: |
| 1681 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1682 | << UnaryOperator::getOpcodeStr(Opc) |
| 1683 | << Arg->getSourceRange(); |
| 1684 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1685 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1686 | |
| 1687 | case OR_Deleted: |
| 1688 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1689 | << Best->Function->isDeleted() |
| 1690 | << UnaryOperator::getOpcodeStr(Opc) |
| 1691 | << Arg->getSourceRange(); |
| 1692 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1693 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1694 | } |
| 1695 | |
| 1696 | // Either we found no viable overloaded operator or we matched a |
| 1697 | // built-in operator. In either case, fall through to trying to |
| 1698 | // build a built-in operation. |
| 1699 | } |
| 1700 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 1701 | QualType result = CheckIncrementDecrementOperand(Arg, OpLoc, |
| 1702 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1703 | if (result.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1704 | return ExprError(); |
| 1705 | Input.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1706 | return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1707 | } |
| 1708 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1709 | Action::OwningExprResult |
| 1710 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1711 | ExprArg Idx, SourceLocation RLoc) { |
| 1712 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1713 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1714 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1715 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1716 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1717 | Base.release(); |
| 1718 | Idx.release(); |
| 1719 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1720 | Context.DependentTy, RLoc)); |
| 1721 | } |
| 1722 | |
| 1723 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1724 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1725 | LHSExp->getType()->isEnumeralType() || |
| 1726 | RHSExp->getType()->isRecordType() || |
| 1727 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1728 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1729 | // to the candidate set. |
| 1730 | OverloadCandidateSet CandidateSet; |
| 1731 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1732 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1733 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1734 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1735 | // Perform overload resolution. |
| 1736 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1737 | switch (BestViableFunction(CandidateSet, LLoc, Best)) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1738 | case OR_Success: { |
| 1739 | // We found a built-in operator or an overloaded operator. |
| 1740 | FunctionDecl *FnDecl = Best->Function; |
| 1741 | |
| 1742 | if (FnDecl) { |
| 1743 | // We matched an overloaded operator. Build a call to that |
| 1744 | // operator. |
| 1745 | |
| 1746 | // Convert the arguments. |
| 1747 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1748 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1749 | PerformCopyInitialization(RHSExp, |
| 1750 | FnDecl->getParamDecl(0)->getType(), |
| 1751 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1752 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1753 | } else { |
| 1754 | // Convert the arguments. |
| 1755 | if (PerformCopyInitialization(LHSExp, |
| 1756 | FnDecl->getParamDecl(0)->getType(), |
| 1757 | "passing") || |
| 1758 | PerformCopyInitialization(RHSExp, |
| 1759 | FnDecl->getParamDecl(1)->getType(), |
| 1760 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1761 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1762 | } |
| 1763 | |
| 1764 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1765 | QualType ResultTy |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1766 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1767 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1768 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1769 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1770 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1771 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1772 | UsualUnaryConversions(FnExpr); |
| 1773 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1774 | Base.release(); |
| 1775 | Idx.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1776 | Args[0] = LHSExp; |
| 1777 | Args[1] = RHSExp; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1778 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1779 | FnExpr, Args, 2, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1780 | ResultTy, LLoc)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1781 | } else { |
| 1782 | // We matched a built-in operator. Convert the arguments, then |
| 1783 | // break out so that we will build the appropriate built-in |
| 1784 | // operator node. |
| 1785 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1786 | "passing") || |
| 1787 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1788 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1789 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1790 | |
| 1791 | break; |
| 1792 | } |
| 1793 | } |
| 1794 | |
| 1795 | case OR_No_Viable_Function: |
| 1796 | // No viable function; fall through to handling this as a |
| 1797 | // built-in operator, which will produce an error message for us. |
| 1798 | break; |
| 1799 | |
| 1800 | case OR_Ambiguous: |
| 1801 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1802 | << "[]" |
| 1803 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1804 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1805 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1806 | |
| 1807 | case OR_Deleted: |
| 1808 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1809 | << Best->Function->isDeleted() |
| 1810 | << "[]" |
| 1811 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1812 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1813 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1814 | } |
| 1815 | |
| 1816 | // Either we found no viable overloaded operator or we matched a |
| 1817 | // built-in operator. In either case, fall through to trying to |
| 1818 | // build a built-in operation. |
| 1819 | } |
| 1820 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1821 | // Perform default conversions. |
| 1822 | DefaultFunctionArrayConversion(LHSExp); |
| 1823 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1824 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1825 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1826 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1827 | // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 1828 | // to the expression *((e1)+(e2)). This means the array "Base" may actually be |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1829 | // in the subscript position. As a result, we need to derive the array base |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1830 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1831 | Expr *BaseExpr, *IndexExpr; |
| 1832 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1833 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1834 | BaseExpr = LHSExp; |
| 1835 | IndexExpr = RHSExp; |
| 1836 | ResultType = Context.DependentTy; |
| 1837 | } else if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1838 | BaseExpr = LHSExp; |
| 1839 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1840 | ResultType = PTy->getPointeeType(); |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1841 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1842 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1843 | BaseExpr = RHSExp; |
| 1844 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1845 | ResultType = PTy->getPointeeType(); |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1846 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1847 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1848 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1849 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1850 | // FIXME: need to deal with const... |
| 1851 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1852 | } else if (LHSTy->isArrayType()) { |
| 1853 | // If we see an array that wasn't promoted by |
| 1854 | // DefaultFunctionArrayConversion, it must be an array that |
| 1855 | // wasn't promoted because of the C90 rule that doesn't |
| 1856 | // allow promoting non-lvalue arrays. Warn, then |
| 1857 | // force the promotion here. |
| 1858 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1859 | LHSExp->getSourceRange(); |
| 1860 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); |
| 1861 | LHSTy = LHSExp->getType(); |
| 1862 | |
| 1863 | BaseExpr = LHSExp; |
| 1864 | IndexExpr = RHSExp; |
| 1865 | ResultType = LHSTy->getAsPointerType()->getPointeeType(); |
| 1866 | } else if (RHSTy->isArrayType()) { |
| 1867 | // Same as previous, except for 123[f().a] case |
| 1868 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1869 | RHSExp->getSourceRange(); |
| 1870 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); |
| 1871 | RHSTy = RHSExp->getType(); |
| 1872 | |
| 1873 | BaseExpr = RHSExp; |
| 1874 | IndexExpr = LHSExp; |
| 1875 | ResultType = RHSTy->getAsPointerType()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1876 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1877 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1878 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1879 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1880 | // C99 6.5.2.1p1 |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1881 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1882 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1883 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1884 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1885 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1886 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1887 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1888 | // incomplete types are not object types. |
| 1889 | if (ResultType->isFunctionType()) { |
| 1890 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1891 | << ResultType << BaseExpr->getSourceRange(); |
| 1892 | return ExprError(); |
| 1893 | } |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1894 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1895 | if (!ResultType->isDependentType() && |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1896 | RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1897 | BaseExpr->getSourceRange())) |
| 1898 | return ExprError(); |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1899 | |
| 1900 | // Diagnose bad cases where we step over interface counts. |
| 1901 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1902 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1903 | << ResultType << BaseExpr->getSourceRange(); |
| 1904 | return ExprError(); |
| 1905 | } |
| 1906 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1907 | Base.release(); |
| 1908 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1909 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1910 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1911 | } |
| 1912 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1913 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1914 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1915 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1916 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1917 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1918 | // The vector accessor can't exceed the number of elements. |
| 1919 | const char *compStr = CompName.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1920 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1921 | // This flag determines whether or not the component is one of the four |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1922 | // special names that indicate a subset of exactly half the elements are |
| 1923 | // to be selected. |
| 1924 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1925 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1926 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1927 | // indicating that it is a string of hex values to be used as vector indices. |
Nate Begeman | 131f465 | 2009-06-25 21:06:09 +0000 | [diff] [blame] | 1928 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1929 | |
| 1930 | // Check that we've found one of the special components, or that the component |
| 1931 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1932 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1933 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1934 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1935 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1936 | do |
| 1937 | compStr++; |
| 1938 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1939 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1940 | do |
| 1941 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1942 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1943 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1944 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1945 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1946 | // We didn't get to the end of the string. This means the component names |
| 1947 | // didn't come from the same set *or* we encountered an illegal name. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1948 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1949 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1950 | return QualType(); |
| 1951 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1952 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1953 | // Ensure no component accessor exceeds the width of the vector type it |
| 1954 | // operates on. |
| 1955 | if (!HalvingSwizzle) { |
| 1956 | compStr = CompName.getName(); |
| 1957 | |
| 1958 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1959 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1960 | |
| 1961 | while (*compStr) { |
| 1962 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1963 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1964 | << baseType << SourceRange(CompLoc); |
| 1965 | return QualType(); |
| 1966 | } |
| 1967 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1968 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1969 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1970 | // If this is a halving swizzle, verify that the base type has an even |
| 1971 | // number of elements. |
| 1972 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1973 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1974 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1975 | return QualType(); |
| 1976 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1977 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1978 | // The component accessor looks fine - now we need to compute the actual type. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1979 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1980 | // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1981 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1982 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1983 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 1984 | : CompName.getLength(); |
| 1985 | if (HexSwizzle) |
| 1986 | CompSize--; |
| 1987 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1988 | if (CompSize == 1) |
| 1989 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1990 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1991 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1992 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1993 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1994 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1995 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1996 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1997 | } |
| 1998 | return VT; // should never get here (a typedef type should always be found). |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1999 | } |
| 2000 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2001 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 2002 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2003 | const Selector &Sel, |
| 2004 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2005 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2006 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2007 | return PD; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2008 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2009 | return OMD; |
| 2010 | |
| 2011 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 2012 | E = PDecl->protocol_end(); I != E; ++I) { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2013 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
| 2014 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2015 | return D; |
| 2016 | } |
| 2017 | return 0; |
| 2018 | } |
| 2019 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2020 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2021 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2022 | const Selector &Sel, |
| 2023 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2024 | // Check protocols on qualified interfaces. |
| 2025 | Decl *GDecl = 0; |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2026 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2027 | E = QIdTy->qual_end(); I != E; ++I) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2028 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2029 | GDecl = PD; |
| 2030 | break; |
| 2031 | } |
| 2032 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2033 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2034 | GDecl = OMD; |
| 2035 | break; |
| 2036 | } |
| 2037 | } |
| 2038 | if (!GDecl) { |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2039 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2040 | E = QIdTy->qual_end(); I != E; ++I) { |
| 2041 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2042 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2043 | if (GDecl) |
| 2044 | return GDecl; |
| 2045 | } |
| 2046 | } |
| 2047 | return GDecl; |
| 2048 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 2049 | |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2050 | /// FindMethodInNestedImplementations - Look up a method in current and |
| 2051 | /// all base class implementations. |
| 2052 | /// |
| 2053 | ObjCMethodDecl *Sema::FindMethodInNestedImplementations( |
| 2054 | const ObjCInterfaceDecl *IFace, |
| 2055 | const Selector &Sel) { |
| 2056 | ObjCMethodDecl *Method = 0; |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 2057 | if (ObjCImplementationDecl *ImpDecl |
| 2058 | = LookupObjCImplementation(IFace->getIdentifier())) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2059 | Method = ImpDecl->getInstanceMethod(Sel); |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2060 | |
| 2061 | if (!Method && IFace->getSuperClass()) |
| 2062 | return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel); |
| 2063 | return Method; |
| 2064 | } |
| 2065 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2066 | Action::OwningExprResult |
| 2067 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 2068 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2069 | IdentifierInfo &Member, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2070 | DeclPtrTy ObjCImpDecl) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2071 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2072 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 2073 | |
| 2074 | // Perform default conversions. |
| 2075 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2076 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2077 | QualType BaseType = BaseExpr->getType(); |
| 2078 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2079 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2080 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2081 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2082 | if (OpKind == tok::arrow) { |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2083 | if (BaseType->isDependentType()) |
Douglas Gregor | 1c0ca59 | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2084 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2085 | BaseExpr, true, |
| 2086 | OpLoc, |
| 2087 | DeclarationName(&Member), |
| 2088 | MemberLoc)); |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2089 | else if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2090 | BaseType = PT->getPointeeType(); |
Douglas Gregor | 8ba1074 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 2091 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2092 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 2093 | MemberLoc, Member)); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2094 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2095 | return ExprError(Diag(MemberLoc, |
| 2096 | diag::err_typecheck_member_reference_arrow) |
| 2097 | << BaseType << BaseExpr->getSourceRange()); |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2098 | } else { |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2099 | if (BaseType->isDependentType()) { |
| 2100 | // Require that the base type isn't a pointer type |
| 2101 | // (so we'll report an error for) |
| 2102 | // T* t; |
| 2103 | // t.f; |
| 2104 | // |
| 2105 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2106 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2107 | // allows this, while still reporting an error if T is a struct pointer. |
| 2108 | const PointerType *PT = BaseType->getAsPointerType(); |
| 2109 | |
| 2110 | if (!PT || (getLangOptions().ObjC1 && |
| 2111 | !PT->getPointeeType()->isRecordType())) |
Douglas Gregor | 1c0ca59 | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2112 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2113 | BaseExpr, false, |
| 2114 | OpLoc, |
| 2115 | DeclarationName(&Member), |
| 2116 | MemberLoc)); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2117 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2118 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2119 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2120 | // Handle field access to simple records. This also handles access to fields |
| 2121 | // of the ObjC 'id' struct. |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 2122 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2123 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2124 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2125 | diag::err_typecheck_incomplete_tag, |
| 2126 | BaseExpr->getSourceRange())) |
| 2127 | return ExprError(); |
| 2128 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2129 | // The record definition is complete, now make sure the member is valid. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2130 | // FIXME: Qualified name lookup for C++ is a bit more complicated than this. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2131 | LookupResult Result |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2132 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 2133 | LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2134 | |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2135 | if (!Result) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2136 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 2137 | << &Member << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2138 | if (Result.isAmbiguous()) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2139 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 2140 | MemberLoc, BaseExpr->getSourceRange()); |
| 2141 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | NamedDecl *MemberDecl = Result; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2145 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2146 | // If the decl being referenced had an error, return an error for this |
| 2147 | // sub-expr without emitting another error, in order to avoid cascading |
| 2148 | // error cases. |
| 2149 | if (MemberDecl->isInvalidDecl()) |
| 2150 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2151 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2152 | // Check the use of this field |
| 2153 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 2154 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2155 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2156 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2157 | // We may have found a field within an anonymous union or struct |
| 2158 | // (C++ [class.union]). |
| 2159 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2160 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2161 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2162 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2163 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 2164 | // FIXME: Handle address space modifiers |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2165 | QualType MemberType = FD->getType(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2166 | if (const ReferenceType *Ref = MemberType->getAsReferenceType()) |
| 2167 | MemberType = Ref->getPointeeType(); |
| 2168 | else { |
| 2169 | unsigned combinedQualifiers = |
| 2170 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2171 | if (FD->isMutable()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2172 | combinedQualifiers &= ~QualType::Const; |
| 2173 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 2174 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2175 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2176 | MarkDeclarationReferenced(MemberLoc, FD); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2177 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 2178 | MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2179 | } |
| 2180 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2181 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2182 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2183 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2184 | Var, MemberLoc, |
| 2185 | Var->getType().getNonReferenceType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2186 | } |
| 2187 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2188 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2189 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2190 | MemberFn, MemberLoc, |
| 2191 | MemberFn->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2192 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2193 | if (OverloadedFunctionDecl *Ovl |
| 2194 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2195 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2196 | MemberLoc, Context.OverloadTy)); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2197 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2198 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2199 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 2200 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2201 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2202 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2203 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 2204 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2205 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2206 | // We found a declaration kind that we didn't expect. This is a |
| 2207 | // generic error message that tells the user that she can't refer |
| 2208 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2209 | return ExprError(Diag(MemberLoc, |
| 2210 | diag::err_typecheck_member_reference_unknown) |
| 2211 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2212 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2213 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2214 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2215 | // (*Obj).ivar. |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2216 | if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2217 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2218 | if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(&Member, |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2219 | ClassDeclared)) { |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2220 | // If the decl being referenced had an error, return an error for this |
| 2221 | // sub-expr without emitting another error, in order to avoid cascading |
| 2222 | // error cases. |
| 2223 | if (IV->isInvalidDecl()) |
| 2224 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2225 | |
| 2226 | // Check whether we can reference this field. |
| 2227 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2228 | return ExprError(); |
Steve Naroff | 8bfd1b8 | 2009-03-26 16:01:08 +0000 | [diff] [blame] | 2229 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2230 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2231 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2232 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2233 | ClassOfMethodDecl = MD->getClassInterface(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2234 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2235 | // Case of a c-function declared inside an objc implementation. |
| 2236 | // FIXME: For a c-style function nested inside an objc implementation |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2237 | // class, there is no implementation context available, so we pass |
| 2238 | // down the context as argument to this routine. Ideally, this context |
| 2239 | // need be passed down in the AST node and somehow calculated from the |
| 2240 | // AST for a function decl. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2241 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2242 | if (ObjCImplementationDecl *IMPD = |
| 2243 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2244 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2245 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2246 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2247 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2248 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2249 | |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2250 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2251 | if (ClassDeclared != IFTy->getDecl() || |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2252 | ClassOfMethodDecl != ClassDeclared) |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2253 | Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 2254 | } |
| 2255 | // @protected |
| 2256 | else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl)) |
| 2257 | Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName(); |
| 2258 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2259 | |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2260 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2261 | MemberLoc, BaseExpr, |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2262 | OpKind == tok::arrow)); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2263 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2264 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 2265 | << IFTy->getDecl()->getDeclName() << &Member |
| 2266 | << BaseExpr->getSourceRange()); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2267 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2268 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2269 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2270 | // pointer to a (potentially qualified) interface type. |
| 2271 | const PointerType *PTy; |
| 2272 | const ObjCInterfaceType *IFTy; |
| 2273 | if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) && |
| 2274 | (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) { |
| 2275 | ObjCInterfaceDecl *IFace = IFTy->getDecl(); |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 2276 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2277 | // Search for a declared property first. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2278 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2279 | // Check whether we can reference this property. |
| 2280 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2281 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2282 | QualType ResTy = PD->getType(); |
| 2283 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2284 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2285 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2286 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2287 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2288 | MemberLoc, BaseExpr)); |
| 2289 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2290 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2291 | // Check protocols on qualified interfaces. |
Chris Lattner | 9baefc2 | 2008-07-21 05:20:01 +0000 | [diff] [blame] | 2292 | for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(), |
| 2293 | E = IFTy->qual_end(); I != E; ++I) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2294 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2295 | // Check whether we can reference this property. |
| 2296 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2297 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2298 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2299 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2300 | MemberLoc, BaseExpr)); |
| 2301 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2302 | |
| 2303 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2304 | // selector is implemented. |
| 2305 | |
| 2306 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2307 | // shared with the code in ActOnInstanceMessage. |
| 2308 | |
| 2309 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2310 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2311 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2312 | // If this reference is in an @implementation, check for 'private' methods. |
| 2313 | if (!Getter) |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2314 | Getter = FindMethodInNestedImplementations(IFace, Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2315 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2316 | // Look through local category implementations associated with the class. |
| 2317 | if (!Getter) { |
| 2318 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) { |
| 2319 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2320 | Getter = ObjCCategoryImpls[i]->getInstanceMethod(Sel); |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2321 | } |
| 2322 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2323 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2324 | // Check if we can reference this property. |
| 2325 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2326 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2327 | } |
| 2328 | // If we found a getter then this may be a valid dot-reference, we |
| 2329 | // will look for the matching setter, in case it is needed. |
| 2330 | Selector SetterSel = |
| 2331 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2332 | PP.getSelectorTable(), &Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2333 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2334 | if (!Setter) { |
| 2335 | // If this reference is in an @implementation, also check for 'private' |
| 2336 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2337 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2338 | } |
| 2339 | // Look through local category implementations associated with the class. |
| 2340 | if (!Setter) { |
| 2341 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2342 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2343 | Setter = ObjCCategoryImpls[i]->getInstanceMethod(SetterSel); |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 2344 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2345 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2346 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2347 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2348 | return ExprError(); |
| 2349 | |
| 2350 | if (Getter || Setter) { |
| 2351 | QualType PType; |
| 2352 | |
| 2353 | if (Getter) |
| 2354 | PType = Getter->getResultType(); |
| 2355 | else { |
| 2356 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2357 | E = Setter->param_end(); PI != E; ++PI) |
| 2358 | PType = (*PI)->getType(); |
| 2359 | } |
| 2360 | // FIXME: we must check that the setter has property type. |
| 2361 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2362 | Setter, MemberLoc, BaseExpr)); |
| 2363 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2364 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2365 | << &Member << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2366 | } |
Steve Naroff | 18bc164 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2367 | // Handle properties on qualified "id" protocols. |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2368 | const ObjCObjectPointerType *QIdTy; |
Steve Naroff | 18bc164 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2369 | if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) { |
| 2370 | // Check protocols on qualified interfaces. |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2371 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2372 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2373 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2374 | // Check the use of this declaration |
| 2375 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2376 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2377 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2378 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2379 | MemberLoc, BaseExpr)); |
| 2380 | } |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2381 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2382 | // Check the use of this method. |
| 2383 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2384 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2385 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2386 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2387 | OMD->getResultType(), |
| 2388 | OMD, OpLoc, MemberLoc, |
| 2389 | NULL, 0)); |
Fariborz Jahanian | 391d895 | 2008-12-10 00:21:50 +0000 | [diff] [blame] | 2390 | } |
| 2391 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2392 | |
| 2393 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2394 | << &Member << BaseType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2395 | } |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2396 | // Handle properties on ObjC 'Class' types. |
| 2397 | if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) { |
| 2398 | // Also must look for a getter name which uses property syntax. |
| 2399 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2400 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2401 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2402 | ObjCMethodDecl *Getter; |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2403 | // FIXME: need to also look locally in the implementation. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2404 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2405 | // Check the use of this method. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2406 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2407 | return ExprError(); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2408 | } |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2409 | // If we found a getter then this may be a valid dot-reference, we |
| 2410 | // will look for the matching setter, in case it is needed. |
| 2411 | Selector SetterSel = |
| 2412 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2413 | PP.getSelectorTable(), &Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2414 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2415 | if (!Setter) { |
| 2416 | // If this reference is in an @implementation, also check for 'private' |
| 2417 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2418 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2419 | } |
| 2420 | // Look through local category implementations associated with the class. |
| 2421 | if (!Setter) { |
| 2422 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2423 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2424 | Setter = ObjCCategoryImpls[i]->getClassMethod(SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2425 | } |
| 2426 | } |
| 2427 | |
| 2428 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2429 | return ExprError(); |
| 2430 | |
| 2431 | if (Getter || Setter) { |
| 2432 | QualType PType; |
| 2433 | |
| 2434 | if (Getter) |
| 2435 | PType = Getter->getResultType(); |
| 2436 | else { |
| 2437 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2438 | E = Setter->param_end(); PI != E; ++PI) |
| 2439 | PType = (*PI)->getType(); |
| 2440 | } |
| 2441 | // FIXME: we must check that the setter has property type. |
| 2442 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2443 | Setter, MemberLoc, BaseExpr)); |
| 2444 | } |
| 2445 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2446 | << &Member << BaseType); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2447 | } |
| 2448 | } |
| 2449 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2450 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2451 | if (BaseType->isExtVectorType()) { |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2452 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2453 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2454 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2455 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2456 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2457 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2458 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2459 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2460 | << BaseType << BaseExpr->getSourceRange(); |
| 2461 | |
| 2462 | // If the user is trying to apply -> or . to a function or function |
| 2463 | // pointer, it's probably because they forgot parentheses to call |
| 2464 | // the function. Suggest the addition of those parentheses. |
| 2465 | if (BaseType == Context.OverloadTy || |
| 2466 | BaseType->isFunctionType() || |
| 2467 | (BaseType->isPointerType() && |
| 2468 | BaseType->getAsPointerType()->isFunctionType())) { |
| 2469 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2470 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2471 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2472 | } |
| 2473 | |
| 2474 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2475 | } |
| 2476 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2477 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2478 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2479 | /// function prototype Proto. Call is the call expression itself, and |
| 2480 | /// Fn is the function expression. For a C++ member function, this |
| 2481 | /// routine does not attempt to convert the object argument. Returns |
| 2482 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2483 | bool |
| 2484 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2485 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2486 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2487 | Expr **Args, unsigned NumArgs, |
| 2488 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2489 | // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2490 | // assignment, to the types of the corresponding parameter, ... |
| 2491 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2492 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2493 | bool Invalid = false; |
| 2494 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2495 | // If too few arguments are available (and we don't have default |
| 2496 | // arguments for the remaining parameters), don't make the call. |
| 2497 | if (NumArgs < NumArgsInProto) { |
| 2498 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2499 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2500 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2501 | // Use default arguments for missing arguments |
| 2502 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2503 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2504 | } |
| 2505 | |
| 2506 | // If too many are passed and not variadic, error on the extras and drop |
| 2507 | // them. |
| 2508 | if (NumArgs > NumArgsInProto) { |
| 2509 | if (!Proto->isVariadic()) { |
| 2510 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2511 | diag::err_typecheck_call_too_many_args) |
| 2512 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2513 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2514 | Args[NumArgs-1]->getLocEnd()); |
| 2515 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2516 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2517 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2518 | } |
| 2519 | NumArgsToCheck = NumArgsInProto; |
| 2520 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2521 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2522 | // Continue to check argument types (even if we have too few/many args). |
| 2523 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2524 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2525 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2526 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2527 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2528 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2529 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2530 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2531 | ProtoArgType, |
| 2532 | diag::err_call_incomplete_argument, |
| 2533 | Arg->getSourceRange())) |
| 2534 | return true; |
| 2535 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2536 | // Pass the argument. |
| 2537 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2538 | return true; |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2539 | } else { |
| 2540 | if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) { |
| 2541 | Diag (Call->getSourceRange().getBegin(), |
| 2542 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2543 | FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName(); |
| 2544 | Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)], |
| 2545 | diag::note_default_argument_declared_here); |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2546 | } else { |
| 2547 | Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg(); |
| 2548 | |
| 2549 | // If the default expression creates temporaries, we need to |
| 2550 | // push them to the current stack of expression temporaries so they'll |
| 2551 | // be properly destroyed. |
| 2552 | if (CXXExprWithTemporaries *E |
| 2553 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
| 2554 | assert(!E->shouldDestroyTemporaries() && |
| 2555 | "Can't destroy temporaries in a default argument expr!"); |
| 2556 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2557 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2558 | } |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2559 | } |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2560 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2561 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2562 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2563 | } |
| 2564 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2565 | QualType ArgType = Arg->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2566 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2567 | Call->setArg(i, Arg); |
| 2568 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2569 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2570 | // If this is a variadic call, handle args passed through "...". |
| 2571 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2572 | VariadicCallType CallType = VariadicFunction; |
| 2573 | if (Fn->getType()->isBlockPointerType()) |
| 2574 | CallType = VariadicBlock; // Block |
| 2575 | else if (isa<MemberExpr>(Fn)) |
| 2576 | CallType = VariadicMethod; |
| 2577 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2578 | // Promote the arguments (C99 6.5.2.2p7). |
| 2579 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2580 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2581 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2582 | Call->setArg(i, Arg); |
| 2583 | } |
| 2584 | } |
| 2585 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2586 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2587 | } |
| 2588 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2589 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2590 | /// This provides the location of the left/right parens and a list of comma |
| 2591 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2592 | Action::OwningExprResult |
| 2593 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2594 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2595 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2596 | unsigned NumArgs = args.size(); |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2597 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2598 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2599 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2600 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2601 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2602 | DeclarationName UnqualifiedName; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2603 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2604 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2605 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2606 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2607 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2608 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2609 | bool Dependent = false; |
| 2610 | if (Fn->isTypeDependent()) |
| 2611 | Dependent = true; |
| 2612 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2613 | Dependent = true; |
| 2614 | |
| 2615 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2616 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2617 | Context.DependentTy, RParenLoc)); |
| 2618 | |
| 2619 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2620 | if (Fn->getType()->isRecordType()) |
| 2621 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2622 | CommaLocs, RParenLoc)); |
| 2623 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2624 | // Determine whether this is a call to a member function. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2625 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2626 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2627 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2628 | isa<CXXMethodDecl>(MemDecl) || |
| 2629 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2630 | isa<CXXMethodDecl>( |
| 2631 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2632 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2633 | CommaLocs, RParenLoc)); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2634 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2635 | } |
| 2636 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2637 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2638 | DeclRefExpr *DRExpr = NULL; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2639 | Expr *FnExpr = Fn; |
| 2640 | bool ADL = true; |
| 2641 | while (true) { |
| 2642 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2643 | FnExpr = IcExpr->getSubExpr(); |
| 2644 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2645 | // Parentheses around a function disable ADL |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2646 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2647 | ADL = false; |
| 2648 | FnExpr = PExpr->getSubExpr(); |
| 2649 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2650 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2651 | == UnaryOperator::AddrOf) { |
| 2652 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2653 | } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) { |
| 2654 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2655 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
| 2656 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2657 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2658 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2659 | UnqualifiedName = DepName->getName(); |
| 2660 | break; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2661 | } else { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2662 | // Any kind of name that does not refer to a declaration (or |
| 2663 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2664 | ADL = false; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2665 | break; |
| 2666 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2667 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2668 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2669 | OverloadedFunctionDecl *Ovl = 0; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2670 | FunctionTemplateDecl *FunctionTemplate = 0; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2671 | if (DRExpr) { |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2672 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2673 | if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(DRExpr->getDecl()))) |
| 2674 | FDecl = FunctionTemplate->getTemplatedDecl(); |
| 2675 | else |
| 2676 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2677 | Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl()); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2678 | NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2679 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2680 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2681 | if (Ovl || FunctionTemplate || |
| 2682 | (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2683 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2684 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2685 | ADL = false; |
| 2686 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2687 | // We don't perform ADL in C. |
| 2688 | if (!getLangOptions().CPlusPlus) |
| 2689 | ADL = false; |
| 2690 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2691 | if (Ovl || FunctionTemplate || ADL) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2692 | FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0, |
| 2693 | UnqualifiedName, LParenLoc, Args, |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2694 | NumArgs, CommaLocs, RParenLoc, ADL); |
| 2695 | if (!FDecl) |
| 2696 | return ExprError(); |
| 2697 | |
| 2698 | // Update Fn to refer to the actual function selected. |
| 2699 | Expr *NewFn = 0; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2700 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2701 | = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr)) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2702 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2703 | QDRExpr->getLocation(), |
| 2704 | false, false, |
| 2705 | QDRExpr->getQualifierRange(), |
| 2706 | QDRExpr->getQualifier()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2707 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2708 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2709 | Fn->getSourceRange().getBegin()); |
| 2710 | Fn->Destroy(Context); |
| 2711 | Fn = NewFn; |
| 2712 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2713 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2714 | |
| 2715 | // Promote the function operand. |
| 2716 | UsualUnaryConversions(Fn); |
| 2717 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2718 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2719 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2720 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2721 | Args, NumArgs, |
| 2722 | Context.BoolTy, |
| 2723 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2724 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2725 | const FunctionType *FuncT; |
| 2726 | if (!Fn->getType()->isBlockPointerType()) { |
| 2727 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2728 | // have type pointer to function". |
| 2729 | const PointerType *PT = Fn->getType()->getAsPointerType(); |
| 2730 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2731 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2732 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2733 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2734 | } else { // This is a block call. |
| 2735 | FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()-> |
| 2736 | getAsFunctionType(); |
| 2737 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2738 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2739 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2740 | << Fn->getType() << Fn->getSourceRange()); |
| 2741 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2742 | // Check for a valid return type |
| 2743 | if (!FuncT->getResultType()->isVoidType() && |
| 2744 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2745 | FuncT->getResultType(), |
| 2746 | diag::err_call_incomplete_return, |
| 2747 | TheCall->getSourceRange())) |
| 2748 | return ExprError(); |
| 2749 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2750 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2751 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2752 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2753 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2754 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2755 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2756 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2757 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2758 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2759 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2760 | if (FDecl) { |
| 2761 | // Check if we have too few/too many template arguments, based |
| 2762 | // on our knowledge of the function definition. |
| 2763 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2764 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2765 | const FunctionProtoType *Proto = |
| 2766 | Def->getType()->getAsFunctionProtoType(); |
| 2767 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2768 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2769 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2770 | } |
| 2771 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2772 | } |
| 2773 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2774 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2775 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2776 | Expr *Arg = Args[i]; |
| 2777 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2778 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2779 | Arg->getType(), |
| 2780 | diag::err_call_incomplete_argument, |
| 2781 | Arg->getSourceRange())) |
| 2782 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2783 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2784 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2785 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2786 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2787 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2788 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2789 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2790 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2791 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2792 | // Check for sentinels |
| 2793 | if (NDecl) |
| 2794 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2795 | // Do special checking on direct calls to functions. |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2796 | if (FDecl) |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2797 | return CheckFunctionCall(FDecl, TheCall.take()); |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 2798 | if (NDecl) |
| 2799 | return CheckBlockCall(NDecl, TheCall.take()); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2800 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2801 | return Owned(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2802 | } |
| 2803 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2804 | Action::OwningExprResult |
| 2805 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2806 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2807 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2808 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2809 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2810 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2811 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2812 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2813 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2814 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2815 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2816 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 2817 | } else if (!literalType->isDependentType() && |
| 2818 | RequireCompleteType(LParenLoc, literalType, |
| 2819 | diag::err_typecheck_decl_incomplete_type, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2820 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2821 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2822 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2823 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2824 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2825 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2826 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2827 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2828 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2829 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2830 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2831 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2832 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2833 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2834 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2835 | } |
| 2836 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2837 | Action::OwningExprResult |
| 2838 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2839 | SourceLocation RBraceLoc) { |
| 2840 | unsigned NumInit = initlist.size(); |
| 2841 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2842 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2843 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2844 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2845 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2846 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2847 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2848 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2849 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2850 | } |
| 2851 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2852 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 58d5ebb | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 2853 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2854 | UsualUnaryConversions(castExpr); |
| 2855 | |
| 2856 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2857 | // type needs to be scalar. |
| 2858 | if (castType->isVoidType()) { |
| 2859 | // Cast to void allows any expr type. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2860 | } else if (castType->isDependentType() || castExpr->isTypeDependent()) { |
| 2861 | // We can't check any more until template instantiation time. |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2862 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2863 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2864 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2865 | (castType->isStructureType() || castType->isUnionType())) { |
| 2866 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2867 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2868 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2869 | << castType << castExpr->getSourceRange(); |
| 2870 | } else if (castType->isUnionType()) { |
| 2871 | // GCC cast to union extension |
| 2872 | RecordDecl *RD = castType->getAsRecordType()->getDecl(); |
| 2873 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2874 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2875 | Field != FieldEnd; ++Field) { |
| 2876 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2877 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2878 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2879 | << castExpr->getSourceRange(); |
| 2880 | break; |
| 2881 | } |
| 2882 | } |
| 2883 | if (Field == FieldEnd) |
| 2884 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2885 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2886 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2887 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2888 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2889 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2890 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2891 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2892 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2893 | return Diag(castExpr->getLocStart(), |
| 2894 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2895 | << castExpr->getType() << castExpr->getSourceRange(); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2896 | } else if (castType->isExtVectorType()) { |
| 2897 | if (CheckExtVectorCast(TyR, castType, castExpr->getType())) |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2898 | return true; |
| 2899 | } else if (castType->isVectorType()) { |
| 2900 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 2901 | return true; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2902 | } else if (castExpr->getType()->isVectorType()) { |
| 2903 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 2904 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2905 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 2906 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 2907 | } else if (!castType->isArithmeticType()) { |
| 2908 | QualType castExprType = castExpr->getType(); |
| 2909 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 2910 | return Diag(castExpr->getLocStart(), |
| 2911 | diag::err_cast_pointer_from_non_pointer_int) |
| 2912 | << castExprType << castExpr->getSourceRange(); |
| 2913 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 2914 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 2915 | return Diag(castExpr->getLocStart(), |
| 2916 | diag::err_cast_pointer_to_non_pointer_int) |
| 2917 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2918 | } |
Fariborz Jahanian | b5ff6bf | 2009-05-22 21:42:52 +0000 | [diff] [blame] | 2919 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 2920 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2921 | return false; |
| 2922 | } |
| 2923 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 2924 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2925 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2926 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2927 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2928 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2929 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2930 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2931 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2932 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2933 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2934 | } else |
| 2935 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2936 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2937 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2938 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2939 | return false; |
| 2940 | } |
| 2941 | |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2942 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) { |
| 2943 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
| 2944 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 2945 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 2946 | // an ExtVectorType. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2947 | if (SrcTy->isVectorType()) { |
| 2948 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 2949 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 2950 | << DestTy << SrcTy << R; |
| 2951 | return false; |
| 2952 | } |
| 2953 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 2954 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2955 | // conversion will take place first from scalar to elt type, and then |
| 2956 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 2957 | if (SrcTy->isPointerType()) |
| 2958 | return Diag(R.getBegin(), |
| 2959 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 2960 | << DestTy << SrcTy << R; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2961 | return false; |
| 2962 | } |
| 2963 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2964 | Action::OwningExprResult |
| 2965 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 2966 | SourceLocation RParenLoc, ExprArg Op) { |
| 2967 | assert((Ty != 0) && (Op.get() != 0) && |
| 2968 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2969 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2970 | Expr *castExpr = Op.takeAs<Expr>(); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2971 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 2972 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2973 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2974 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2975 | return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2976 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2977 | } |
| 2978 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2979 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 2980 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2981 | /// C99 6.5.15 |
| 2982 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 2983 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2984 | // C++ is sufficiently different to merit its own checker. |
| 2985 | if (getLangOptions().CPlusPlus) |
| 2986 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 2987 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2988 | UsualUnaryConversions(Cond); |
| 2989 | UsualUnaryConversions(LHS); |
| 2990 | UsualUnaryConversions(RHS); |
| 2991 | QualType CondTy = Cond->getType(); |
| 2992 | QualType LHSTy = LHS->getType(); |
| 2993 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 2994 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2995 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2996 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 2997 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 2998 | << CondTy; |
| 2999 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3000 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3001 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3002 | // Now check the two expressions. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3003 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3004 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3005 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3006 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3007 | UsualArithmeticConversions(LHS, RHS); |
| 3008 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3009 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3010 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3011 | // If both operands are the same structure or union type, the result is that |
| 3012 | // type. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3013 | if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3 |
| 3014 | if (const RecordType *RHSRT = RHSTy->getAsRecordType()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3015 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3016 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3017 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3018 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3019 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3020 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3021 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3022 | // C99 6.5.15p5: "If both operands have void type, the result has void type." |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3023 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3024 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3025 | if (!LHSTy->isVoidType()) |
| 3026 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3027 | << RHS->getSourceRange(); |
| 3028 | if (!RHSTy->isVoidType()) |
| 3029 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3030 | << LHS->getSourceRange(); |
| 3031 | ImpCastExprToType(LHS, Context.VoidTy); |
| 3032 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3033 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3034 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3035 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3036 | // the type of the other operand." |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3037 | if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() || |
| 3038 | Context.isObjCObjectPointerType(LHSTy)) && |
| 3039 | RHS->isNullPointerConstant(Context)) { |
| 3040 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 3041 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3042 | } |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3043 | if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() || |
| 3044 | Context.isObjCObjectPointerType(RHSTy)) && |
| 3045 | LHS->isNullPointerConstant(Context)) { |
| 3046 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 3047 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3048 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3049 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3050 | const PointerType *LHSPT = LHSTy->getAsPointerType(); |
| 3051 | const PointerType *RHSPT = RHSTy->getAsPointerType(); |
| 3052 | const BlockPointerType *LHSBPT = LHSTy->getAsBlockPointerType(); |
| 3053 | const BlockPointerType *RHSBPT = RHSTy->getAsBlockPointerType(); |
| 3054 | |
Chris Lattner | bd57d36 | 2008-01-06 22:50:31 +0000 | [diff] [blame] | 3055 | // Handle the case where both operands are pointers before we handle null |
| 3056 | // pointer constants in case both operands are null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3057 | if ((LHSPT || LHSBPT) && (RHSPT || RHSBPT)) { // C99 6.5.15p3,6 |
| 3058 | // get the "pointed to" types |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3059 | QualType lhptee = (LHSPT ? LHSPT->getPointeeType() |
| 3060 | : LHSBPT->getPointeeType()); |
| 3061 | QualType rhptee = (RHSPT ? RHSPT->getPointeeType() |
| 3062 | : RHSBPT->getPointeeType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3063 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3064 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3065 | if (lhptee->isVoidType() |
| 3066 | && (RHSBPT || rhptee->isIncompleteOrObjectType())) { |
| 3067 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 3068 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
| 3069 | QualType destType = Context.getPointerType(destPointee); |
| 3070 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3071 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3072 | return destType; |
| 3073 | } |
| 3074 | if (rhptee->isVoidType() |
| 3075 | && (LHSBPT || lhptee->isIncompleteOrObjectType())) { |
| 3076 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
| 3077 | QualType destType = Context.getPointerType(destPointee); |
| 3078 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3079 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3080 | return destType; |
| 3081 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3082 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3083 | bool sameKind = (LHSPT && RHSPT) || (LHSBPT && RHSBPT); |
| 3084 | if (sameKind |
| 3085 | && Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3086 | // Two identical pointer types are always compatible. |
| 3087 | return LHSTy; |
| 3088 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3089 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3090 | QualType compositeType = LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3091 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3092 | // If either type is an Objective-C object type then check |
| 3093 | // compatibility according to Objective-C. |
| 3094 | if (Context.isObjCObjectPointerType(LHSTy) || |
| 3095 | Context.isObjCObjectPointerType(RHSTy)) { |
| 3096 | // If both operands are interfaces and either operand can be |
| 3097 | // assigned to the other, use that type as the composite |
| 3098 | // type. This allows |
| 3099 | // xxx ? (A*) a : (B*) b |
| 3100 | // where B is a subclass of A. |
| 3101 | // |
| 3102 | // Additionally, as for assignment, if either type is 'id' |
| 3103 | // allow silent coercion. Finally, if the types are |
| 3104 | // incompatible then make sure to use 'id' as the composite |
| 3105 | // type so the result is acceptable for sending messages to. |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3106 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3107 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3108 | // It could return the composite type. |
| 3109 | const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType(); |
| 3110 | const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType(); |
| 3111 | if (LHSIface && RHSIface && |
| 3112 | Context.canAssignObjCInterfaces(LHSIface, RHSIface)) { |
| 3113 | compositeType = LHSTy; |
| 3114 | } else if (LHSIface && RHSIface && |
| 3115 | Context.canAssignObjCInterfaces(RHSIface, LHSIface)) { |
| 3116 | compositeType = RHSTy; |
| 3117 | } else if (Context.isObjCIdStructType(lhptee) || |
| 3118 | Context.isObjCIdStructType(rhptee)) { |
| 3119 | compositeType = Context.getObjCIdType(); |
| 3120 | } else if (LHSBPT || RHSBPT) { |
| 3121 | if (!sameKind |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3122 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3123 | rhptee.getUnqualifiedType())) |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3124 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3125 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3126 | return QualType(); |
| 3127 | } else { |
| 3128 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3129 | << LHSTy << RHSTy |
| 3130 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3131 | QualType incompatTy = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3132 | ImpCastExprToType(LHS, incompatTy); |
| 3133 | ImpCastExprToType(RHS, incompatTy); |
Daniel Dunbar | a56f746 | 2008-08-26 00:41:39 +0000 | [diff] [blame] | 3134 | return incompatTy; |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 3135 | } |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3136 | } else if (!sameKind |
| 3137 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3138 | rhptee.getUnqualifiedType())) { |
| 3139 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3140 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3141 | // In this situation, we assume void* type. No especially good |
| 3142 | // reason, but this is what gcc does, and we do have to pick |
| 3143 | // to get a consistent AST. |
| 3144 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3145 | ImpCastExprToType(LHS, incompatTy); |
| 3146 | ImpCastExprToType(RHS, incompatTy); |
| 3147 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3148 | } |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3149 | // The pointer types are compatible. |
| 3150 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3151 | // differently qualified versions of compatible types, the result type is |
| 3152 | // a pointer to an appropriately qualified version of the *composite* |
| 3153 | // type. |
| 3154 | // FIXME: Need to calculate the composite type. |
| 3155 | // FIXME: Need to add qualifiers |
| 3156 | ImpCastExprToType(LHS, compositeType); |
| 3157 | ImpCastExprToType(RHS, compositeType); |
| 3158 | return compositeType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3159 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3160 | |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3161 | // GCC compatibility: soften pointer/integer mismatch. |
| 3162 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3163 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3164 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3165 | ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. |
| 3166 | return RHSTy; |
| 3167 | } |
| 3168 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3169 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3170 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3171 | ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. |
| 3172 | return LHSTy; |
| 3173 | } |
| 3174 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3175 | // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type |
| 3176 | // evaluates to "struct objc_object *" (and is handled above when comparing |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3177 | // id with statically typed objects). |
| 3178 | if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3179 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3180 | // id. Currently localizing to here until clear this should be |
| 3181 | // part of ObjCQualifiedIdTypesAreCompatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3182 | if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3183 | (LHSTy->isObjCQualifiedIdType() && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3184 | Context.isObjCObjectPointerType(RHSTy)) || |
| 3185 | (RHSTy->isObjCQualifiedIdType() && |
| 3186 | Context.isObjCObjectPointerType(LHSTy))) { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3187 | // FIXME: This is not the correct composite type. This only happens to |
| 3188 | // work because id can more or less be used anywhere, however this may |
| 3189 | // change the type of method sends. |
| 3190 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3191 | // FIXME: gcc adds some type-checking of the arguments and emits |
| 3192 | // (confusing) incompatible comparison warnings in some |
| 3193 | // cases. Investigate. |
| 3194 | QualType compositeType = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3195 | ImpCastExprToType(LHS, compositeType); |
| 3196 | ImpCastExprToType(RHS, compositeType); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3197 | return compositeType; |
| 3198 | } |
| 3199 | } |
| 3200 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3201 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3202 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3203 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3204 | return QualType(); |
| 3205 | } |
| 3206 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3207 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3208 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3209 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3210 | SourceLocation ColonLoc, |
| 3211 | ExprArg Cond, ExprArg LHS, |
| 3212 | ExprArg RHS) { |
| 3213 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3214 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3215 | |
| 3216 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3217 | // was the condition. |
| 3218 | bool isLHSNull = LHSExpr == 0; |
| 3219 | if (isLHSNull) |
| 3220 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3221 | |
| 3222 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3223 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3224 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3225 | return ExprError(); |
| 3226 | |
| 3227 | Cond.release(); |
| 3228 | LHS.release(); |
| 3229 | RHS.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3230 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3231 | isLHSNull ? 0 : LHSExpr, |
| 3232 | RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3233 | } |
| 3234 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3235 | |
| 3236 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3237 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3238 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3239 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3240 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3241 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3242 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3243 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3244 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3245 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 3246 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 3247 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3248 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3249 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3250 | lhptee = Context.getCanonicalType(lhptee); |
| 3251 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3252 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3253 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3254 | |
| 3255 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3256 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3257 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3258 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3259 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3260 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3261 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3262 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3263 | // incomplete type and the other is a pointer to a qualified or unqualified |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3264 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3265 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3266 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3267 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3268 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3269 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3270 | assert(rhptee->isFunctionType()); |
| 3271 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3272 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3273 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3274 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3275 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3276 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3277 | |
| 3278 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3279 | assert(lhptee->isFunctionType()); |
| 3280 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3281 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3282 | // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3283 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3284 | lhptee = lhptee.getUnqualifiedType(); |
| 3285 | rhptee = rhptee.getUnqualifiedType(); |
| 3286 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3287 | // Check if the pointee types are compatible ignoring the sign. |
| 3288 | // We explicitly check for char so that we catch "char" vs |
| 3289 | // "unsigned char" on systems where "char" is unsigned. |
| 3290 | if (lhptee->isCharType()) { |
| 3291 | lhptee = Context.UnsignedCharTy; |
| 3292 | } else if (lhptee->isSignedIntegerType()) { |
| 3293 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 3294 | } |
| 3295 | if (rhptee->isCharType()) { |
| 3296 | rhptee = Context.UnsignedCharTy; |
| 3297 | } else if (rhptee->isSignedIntegerType()) { |
| 3298 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 3299 | } |
| 3300 | if (lhptee == rhptee) { |
| 3301 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3302 | // takes priority over sign incompatibility because the sign |
| 3303 | // warning can be disabled. |
| 3304 | if (ConvTy != Compatible) |
| 3305 | return ConvTy; |
| 3306 | return IncompatiblePointerSign; |
| 3307 | } |
| 3308 | // General pointer incompatibility takes priority over qualifiers. |
| 3309 | return IncompatiblePointer; |
| 3310 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3311 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3312 | } |
| 3313 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3314 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3315 | /// block pointer types are compatible or whether a block and normal pointer |
| 3316 | /// are compatible. It is more restrict than comparing two function pointer |
| 3317 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3318 | Sema::AssignConvertType |
| 3319 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3320 | QualType rhsType) { |
| 3321 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3322 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3323 | // get the "pointed to" type (ignoring qualifiers at the top level) |
| 3324 | lhptee = lhsType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3325 | rhptee = rhsType->getAsBlockPointerType()->getPointeeType(); |
| 3326 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3327 | // make sure we operate on the canonical type |
| 3328 | lhptee = Context.getCanonicalType(lhptee); |
| 3329 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3330 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3331 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3332 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3333 | // For blocks we enforce that qualifiers are identical. |
| 3334 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3335 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3336 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3337 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3338 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3339 | return ConvTy; |
| 3340 | } |
| 3341 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3342 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3343 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3344 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3345 | /// |
| 3346 | /// int a, *pint; |
| 3347 | /// short *pshort; |
| 3348 | /// struct foo *pfoo; |
| 3349 | /// |
| 3350 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3351 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3352 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3353 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3354 | /// |
| 3355 | /// As a result, the code for dealing with pointers is more complex than the |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3356 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3357 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3358 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3359 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3360 | // Get canonical types. We're not formatting these types, just comparing |
| 3361 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3362 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3363 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3364 | |
| 3365 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3366 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3367 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3368 | // If the left-hand side is a reference type, then we are in a |
| 3369 | // (rare!) case where we've allowed the use of references in C, |
| 3370 | // e.g., as a parameter type in a built-in function. In this case, |
| 3371 | // just make sure that the type referenced is compatible with the |
| 3372 | // right-hand side type. The caller is responsible for adjusting |
| 3373 | // lhsType so that the resulting expression does not have reference |
| 3374 | // type. |
| 3375 | if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) { |
| 3376 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3377 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3378 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3379 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3380 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3381 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) { |
| 3382 | if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false)) |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3383 | return Compatible; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3384 | // Relax integer conversions like we do for pointers below. |
| 3385 | if (rhsType->isIntegerType()) |
| 3386 | return IntToPointer; |
| 3387 | if (lhsType->isIntegerType()) |
| 3388 | return PointerToInt; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3389 | return IncompatibleObjCQualifiedId; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3390 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3391 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3392 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3393 | // to the same ExtVector type. |
| 3394 | if (lhsType->isExtVectorType()) { |
| 3395 | if (rhsType->isExtVectorType()) |
| 3396 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3397 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3398 | return Compatible; |
| 3399 | } |
| 3400 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3401 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3402 | // If we are allowing lax vector conversions, and LHS and RHS are both |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3403 | // vectors, the total size only needs to be the same. This is a bitcast; |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3404 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3405 | if (getLangOptions().LaxVectorConversions && |
| 3406 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3407 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3408 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3409 | } |
| 3410 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3411 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3412 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3413 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3414 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3415 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3416 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3417 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3418 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3419 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3420 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3421 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3422 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3423 | if (rhsType->getAsBlockPointerType()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3424 | if (lhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3425 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3426 | |
| 3427 | // Treat block pointers as objects. |
| 3428 | if (getLangOptions().ObjC1 && |
| 3429 | lhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3430 | return Compatible; |
| 3431 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3432 | return Incompatible; |
| 3433 | } |
| 3434 | |
| 3435 | if (isa<BlockPointerType>(lhsType)) { |
| 3436 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3437 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3438 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3439 | // Treat block pointers as objects. |
| 3440 | if (getLangOptions().ObjC1 && |
| 3441 | rhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3442 | return Compatible; |
| 3443 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3444 | if (rhsType->isBlockPointerType()) |
| 3445 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3446 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3447 | if (const PointerType *RHSPT = rhsType->getAsPointerType()) { |
| 3448 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3449 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3450 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3451 | return Incompatible; |
| 3452 | } |
| 3453 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3454 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3455 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3456 | if (lhsType == Context.BoolTy) |
| 3457 | return Compatible; |
| 3458 | |
| 3459 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3460 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3461 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3462 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3463 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3464 | |
| 3465 | if (isa<BlockPointerType>(lhsType) && |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3466 | rhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3467 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3468 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3469 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3470 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3471 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3472 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3473 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3474 | } |
| 3475 | return Incompatible; |
| 3476 | } |
| 3477 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3478 | /// \brief Constructs a transparent union from an expression that is |
| 3479 | /// used to initialize the transparent union. |
| 3480 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
| 3481 | QualType UnionType, FieldDecl *Field) { |
| 3482 | // Build an initializer list that designates the appropriate member |
| 3483 | // of the transparent union. |
| 3484 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3485 | &E, 1, |
| 3486 | SourceLocation()); |
| 3487 | Initializer->setType(UnionType); |
| 3488 | Initializer->setInitializedFieldInUnion(Field); |
| 3489 | |
| 3490 | // Build a compound literal constructing a value of the transparent |
| 3491 | // union type from this initializer list. |
| 3492 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3493 | false); |
| 3494 | } |
| 3495 | |
| 3496 | Sema::AssignConvertType |
| 3497 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3498 | QualType FromType = rExpr->getType(); |
| 3499 | |
| 3500 | // If the ArgType is a Union type, we want to handle a potential |
| 3501 | // transparent_union GCC extension. |
| 3502 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 3503 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3504 | return Incompatible; |
| 3505 | |
| 3506 | // The field to initialize within the transparent union. |
| 3507 | RecordDecl *UD = UT->getDecl(); |
| 3508 | FieldDecl *InitField = 0; |
| 3509 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3510 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 3511 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3512 | it != itend; ++it) { |
| 3513 | if (it->getType()->isPointerType()) { |
| 3514 | // If the transparent union contains a pointer type, we allow: |
| 3515 | // 1) void pointer |
| 3516 | // 2) null pointer constant |
| 3517 | if (FromType->isPointerType()) |
| 3518 | if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) { |
| 3519 | ImpCastExprToType(rExpr, it->getType()); |
| 3520 | InitField = *it; |
| 3521 | break; |
| 3522 | } |
| 3523 | |
| 3524 | if (rExpr->isNullPointerConstant(Context)) { |
| 3525 | ImpCastExprToType(rExpr, it->getType()); |
| 3526 | InitField = *it; |
| 3527 | break; |
| 3528 | } |
| 3529 | } |
| 3530 | |
| 3531 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 3532 | == Compatible) { |
| 3533 | InitField = *it; |
| 3534 | break; |
| 3535 | } |
| 3536 | } |
| 3537 | |
| 3538 | if (!InitField) |
| 3539 | return Incompatible; |
| 3540 | |
| 3541 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 3542 | return Compatible; |
| 3543 | } |
| 3544 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3545 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3546 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3547 | if (getLangOptions().CPlusPlus) { |
| 3548 | if (!lhsType->isRecordType()) { |
| 3549 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3550 | // expression is implicitly converted (C++ 4) to the |
| 3551 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3552 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3553 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3554 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 3555 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3556 | } |
| 3557 | |
| 3558 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3559 | // structures. |
| 3560 | } |
| 3561 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3562 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3563 | // a null pointer constant. |
Steve Naroff | f7f52e7 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3564 | if ((lhsType->isPointerType() || |
| 3565 | lhsType->isObjCQualifiedIdType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3566 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | 9d3185e | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3567 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3568 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3569 | return Compatible; |
| 3570 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3571 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3572 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3573 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3574 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3575 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3576 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3577 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3578 | if (!lhsType->isReferenceType()) |
| 3579 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3580 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3581 | Sema::AssignConvertType result = |
| 3582 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3583 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3584 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3585 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3586 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3587 | // so that we can use references in built-in functions even in C. |
| 3588 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3589 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3590 | if (result != Incompatible && rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3591 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3592 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3593 | } |
| 3594 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3595 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3596 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3597 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3598 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3599 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3600 | } |
| 3601 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3602 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3603 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3604 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3605 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3606 | QualType lhsType = |
| 3607 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3608 | QualType rhsType = |
| 3609 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3610 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3611 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3612 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3613 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3614 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3615 | // Handle the case of a vector & extvector type of the same size and element |
| 3616 | // type. It would be nice if we only had one vector type someday. |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3617 | if (getLangOptions().LaxVectorConversions) { |
| 3618 | // FIXME: Should we warn here? |
| 3619 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3620 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3621 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3622 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3623 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3624 | } |
| 3625 | } |
| 3626 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3627 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3628 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 3629 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 3630 | bool swapped = false; |
| 3631 | if (rhsType->isExtVectorType()) { |
| 3632 | swapped = true; |
| 3633 | std::swap(rex, lex); |
| 3634 | std::swap(rhsType, lhsType); |
| 3635 | } |
| 3636 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3637 | // Handle the case of an ext vector and scalar. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3638 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) { |
| 3639 | QualType EltTy = LV->getElementType(); |
| 3640 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 3641 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3642 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3643 | if (swapped) std::swap(rex, lex); |
| 3644 | return lhsType; |
| 3645 | } |
| 3646 | } |
| 3647 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 3648 | rhsType->isRealFloatingType()) { |
| 3649 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3650 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3651 | if (swapped) std::swap(rex, lex); |
| 3652 | return lhsType; |
| 3653 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3654 | } |
| 3655 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3656 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3657 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3658 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3659 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3660 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3661 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3662 | } |
| 3663 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3664 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3665 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3666 | { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3667 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3668 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3669 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3670 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3671 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3672 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3673 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3674 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3675 | } |
| 3676 | |
| 3677 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3678 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3679 | { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3680 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3681 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3682 | return CheckVectorOperands(Loc, lex, rex); |
| 3683 | return InvalidOperands(Loc, lex, rex); |
| 3684 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3685 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3686 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3687 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3688 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3689 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3690 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3691 | } |
| 3692 | |
| 3693 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3694 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3695 | { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3696 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3697 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3698 | if (CompLHSTy) *CompLHSTy = compType; |
| 3699 | return compType; |
| 3700 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3701 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3702 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3703 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3704 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3705 | if (lex->getType()->isArithmeticType() && |
| 3706 | rex->getType()->isArithmeticType()) { |
| 3707 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3708 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3709 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3710 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3711 | // Put any potential pointer into PExp |
| 3712 | Expr* PExp = lex, *IExp = rex; |
| 3713 | if (IExp->getType()->isPointerType()) |
| 3714 | std::swap(PExp, IExp); |
| 3715 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3716 | if (const PointerType *PTy = PExp->getType()->getAsPointerType()) { |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3717 | if (IExp->getType()->isIntegerType()) { |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3718 | QualType PointeeTy = PTy->getPointeeType(); |
| 3719 | // Check for arithmetic on pointers to incomplete types. |
| 3720 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3721 | if (getLangOptions().CPlusPlus) { |
| 3722 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3723 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3724 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3725 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3726 | |
| 3727 | // GNU extension: arithmetic on pointer to void |
| 3728 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3729 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3730 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3731 | if (getLangOptions().CPlusPlus) { |
| 3732 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3733 | << lex->getType() << lex->getSourceRange(); |
| 3734 | return QualType(); |
| 3735 | } |
| 3736 | |
| 3737 | // GNU extension: arithmetic on pointer to function |
| 3738 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3739 | << lex->getType() << lex->getSourceRange(); |
| 3740 | } else if (!PTy->isDependentType() && |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3741 | RequireCompleteType(Loc, PointeeTy, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3742 | diag::err_typecheck_arithmetic_incomplete_type, |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3743 | PExp->getSourceRange(), SourceRange(), |
| 3744 | PExp->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3745 | return QualType(); |
| 3746 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3747 | // Diagnose bad cases where we step over interface counts. |
| 3748 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3749 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3750 | << PointeeTy << PExp->getSourceRange(); |
| 3751 | return QualType(); |
| 3752 | } |
| 3753 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3754 | if (CompLHSTy) { |
| 3755 | QualType LHSTy = lex->getType(); |
| 3756 | if (LHSTy->isPromotableIntegerType()) |
| 3757 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3758 | else { |
| 3759 | QualType T = isPromotableBitField(lex, Context); |
| 3760 | if (!T.isNull()) |
| 3761 | LHSTy = T; |
| 3762 | } |
| 3763 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3764 | *CompLHSTy = LHSTy; |
| 3765 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3766 | return PExp->getType(); |
| 3767 | } |
| 3768 | } |
| 3769 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3770 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3771 | } |
| 3772 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3773 | // C99 6.5.6 |
| 3774 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3775 | SourceLocation Loc, QualType* CompLHSTy) { |
| 3776 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3777 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3778 | if (CompLHSTy) *CompLHSTy = compType; |
| 3779 | return compType; |
| 3780 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3781 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3782 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3783 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3784 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3785 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3786 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3787 | if (lex->getType()->isArithmeticType() |
| 3788 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3789 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3790 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3791 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3792 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3793 | // Either ptr - int or ptr - ptr. |
| 3794 | if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) { |
Steve Naroff | 2565eef | 2008-01-29 18:58:14 +0000 | [diff] [blame] | 3795 | QualType lpointee = LHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3796 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3797 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3798 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3799 | bool ComplainAboutVoid = false; |
| 3800 | Expr *ComplainAboutFunc = 0; |
| 3801 | if (lpointee->isVoidType()) { |
| 3802 | if (getLangOptions().CPlusPlus) { |
| 3803 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3804 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3805 | return QualType(); |
| 3806 | } |
| 3807 | |
| 3808 | // GNU C extension: arithmetic on pointer to void |
| 3809 | ComplainAboutVoid = true; |
| 3810 | } else if (lpointee->isFunctionType()) { |
| 3811 | if (getLangOptions().CPlusPlus) { |
| 3812 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3813 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3814 | return QualType(); |
| 3815 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3816 | |
| 3817 | // GNU C extension: arithmetic on pointer to function |
| 3818 | ComplainAboutFunc = lex; |
| 3819 | } else if (!lpointee->isDependentType() && |
| 3820 | RequireCompleteType(Loc, lpointee, |
| 3821 | diag::err_typecheck_sub_ptr_object, |
| 3822 | lex->getSourceRange(), |
| 3823 | SourceRange(), |
| 3824 | lex->getType())) |
| 3825 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3826 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3827 | // Diagnose bad cases where we step over interface counts. |
| 3828 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3829 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3830 | << lpointee << lex->getSourceRange(); |
| 3831 | return QualType(); |
| 3832 | } |
| 3833 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3834 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3835 | if (rex->getType()->isIntegerType()) { |
| 3836 | if (ComplainAboutVoid) |
| 3837 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3838 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3839 | if (ComplainAboutFunc) |
| 3840 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3841 | << ComplainAboutFunc->getType() |
| 3842 | << ComplainAboutFunc->getSourceRange(); |
| 3843 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3844 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3845 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3846 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3847 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3848 | // Handle pointer-pointer subtractions. |
| 3849 | if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 3850 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3851 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3852 | // RHS must be a completely-type object type. |
| 3853 | // Handle the GNU void* extension. |
| 3854 | if (rpointee->isVoidType()) { |
| 3855 | if (getLangOptions().CPlusPlus) { |
| 3856 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3857 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3858 | return QualType(); |
| 3859 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3860 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3861 | ComplainAboutVoid = true; |
| 3862 | } else if (rpointee->isFunctionType()) { |
| 3863 | if (getLangOptions().CPlusPlus) { |
| 3864 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3865 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3866 | return QualType(); |
| 3867 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3868 | |
| 3869 | // GNU extension: arithmetic on pointer to function |
| 3870 | if (!ComplainAboutFunc) |
| 3871 | ComplainAboutFunc = rex; |
| 3872 | } else if (!rpointee->isDependentType() && |
| 3873 | RequireCompleteType(Loc, rpointee, |
| 3874 | diag::err_typecheck_sub_ptr_object, |
| 3875 | rex->getSourceRange(), |
| 3876 | SourceRange(), |
| 3877 | rex->getType())) |
| 3878 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3879 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 3880 | if (getLangOptions().CPlusPlus) { |
| 3881 | // Pointee types must be the same: C++ [expr.add] |
| 3882 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 3883 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 3884 | << lex->getType() << rex->getType() |
| 3885 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3886 | return QualType(); |
| 3887 | } |
| 3888 | } else { |
| 3889 | // Pointee types must be compatible C99 6.5.6p3 |
| 3890 | if (!Context.typesAreCompatible( |
| 3891 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 3892 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 3893 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 3894 | << lex->getType() << rex->getType() |
| 3895 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3896 | return QualType(); |
| 3897 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3898 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3899 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3900 | if (ComplainAboutVoid) |
| 3901 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3902 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3903 | if (ComplainAboutFunc) |
| 3904 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3905 | << ComplainAboutFunc->getType() |
| 3906 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3907 | |
| 3908 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3909 | return Context.getPointerDiffType(); |
| 3910 | } |
| 3911 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3912 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3913 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3914 | } |
| 3915 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3916 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3917 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3918 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3919 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 3920 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3921 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3922 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3923 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 3924 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3925 | QualType LHSTy; |
| 3926 | if (lex->getType()->isPromotableIntegerType()) |
| 3927 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3928 | else { |
| 3929 | LHSTy = isPromotableBitField(lex, Context); |
| 3930 | if (LHSTy.isNull()) |
| 3931 | LHSTy = lex->getType(); |
| 3932 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 3933 | if (!isCompAssign) |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3934 | ImpCastExprToType(lex, LHSTy); |
| 3935 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3936 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3937 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3938 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3939 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3940 | } |
| 3941 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3942 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3943 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3944 | unsigned OpaqueOpc, bool isRelational) { |
| 3945 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 3946 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3947 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3948 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3949 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3950 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 3951 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 3952 | UsualArithmeticConversions(lex, rex); |
| 3953 | else { |
| 3954 | UsualUnaryConversions(lex); |
| 3955 | UsualUnaryConversions(rex); |
| 3956 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3957 | QualType lType = lex->getType(); |
| 3958 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3959 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3960 | if (!lType->isFloatingType() |
| 3961 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3962 | // For non-floating point types, check for self-comparisons of the form |
| 3963 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3964 | // often indicate logic errors in the program. |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 3965 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 3966 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3967 | Expr *LHSStripped = lex->IgnoreParens(); |
| 3968 | Expr *RHSStripped = rex->IgnoreParens(); |
| 3969 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 3970 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 3971 | if (DRL->getDecl() == DRR->getDecl() && |
| 3972 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3973 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3974 | |
| 3975 | if (isa<CastExpr>(LHSStripped)) |
| 3976 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 3977 | if (isa<CastExpr>(RHSStripped)) |
| 3978 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 3979 | |
| 3980 | // Warn about comparisons against a string constant (unless the other |
| 3981 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3982 | Expr *literalString = 0; |
| 3983 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3984 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3985 | !RHSStripped->isNullPointerConstant(Context)) { |
| 3986 | literalString = lex; |
| 3987 | literalStringStripped = LHSStripped; |
| 3988 | } |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3989 | else if ((isa<StringLiteral>(RHSStripped) || |
| 3990 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3991 | !LHSStripped->isNullPointerConstant(Context)) { |
| 3992 | literalString = rex; |
| 3993 | literalStringStripped = RHSStripped; |
| 3994 | } |
| 3995 | |
| 3996 | if (literalString) { |
| 3997 | std::string resultComparison; |
| 3998 | switch (Opc) { |
| 3999 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 4000 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 4001 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 4002 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 4003 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 4004 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4005 | default: assert(false && "Invalid comparison operator"); |
| 4006 | } |
| 4007 | Diag(Loc, diag::warn_stringcompare) |
| 4008 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4009 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4010 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4011 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4012 | "strcmp(") |
| 4013 | << CodeModificationHint::CreateInsertion( |
| 4014 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4015 | resultComparison); |
| 4016 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4017 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4018 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4019 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4020 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4021 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4022 | if (isRelational) { |
| 4023 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4024 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4025 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4026 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4027 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4028 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4029 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4030 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4031 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4032 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4033 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4034 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4035 | |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4036 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 4037 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4038 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4039 | // All of the following pointer related warnings are GCC extensions, except |
| 4040 | // when handling null pointer constants. One day, we can consider making them |
| 4041 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4042 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4043 | QualType LCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4044 | Context.getCanonicalType(lType->getAsPointerType()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4045 | QualType RCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4046 | Context.getCanonicalType(rType->getAsPointerType()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4047 | |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4048 | if (rType->isFunctionPointerType() || lType->isFunctionPointerType()) { |
| 4049 | if (isRelational) { |
| 4050 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 4051 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4052 | } |
| 4053 | } |
| 4054 | if (((!LHSIsNull || isRelational) && LCanPointeeTy->isVoidType()) != |
| 4055 | ((!RHSIsNull || isRelational) && RCanPointeeTy->isVoidType())) { |
| 4056 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4057 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4058 | } |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4059 | // Simple check: if the pointee types are identical, we're done. |
| 4060 | if (LCanPointeeTy == RCanPointeeTy) |
| 4061 | return ResultTy; |
| 4062 | |
| 4063 | if (getLangOptions().CPlusPlus) { |
| 4064 | // C++ [expr.rel]p2: |
| 4065 | // [...] Pointer conversions (4.10) and qualification |
| 4066 | // conversions (4.4) are performed on pointer operands (or on |
| 4067 | // a pointer operand and a null pointer constant) to bring |
| 4068 | // them to their composite pointer type. [...] |
| 4069 | // |
| 4070 | // C++ [expr.eq]p2 uses the same notion for (in)equality |
| 4071 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4072 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4073 | if (T.isNull()) { |
| 4074 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4075 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4076 | return QualType(); |
| 4077 | } |
| 4078 | |
| 4079 | ImpCastExprToType(lex, T); |
| 4080 | ImpCastExprToType(rex, T); |
| 4081 | return ResultTy; |
| 4082 | } |
| 4083 | |
Steve Naroff | 66296cb | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 4084 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4085 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 4086 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Eli Friedman | 3d815e7 | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 4087 | RCanPointeeTy.getUnqualifiedType()) && |
Steve Naroff | 389bf46 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 4088 | !Context.areComparableObjCPointerTypes(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4089 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4090 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4091 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4092 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4093 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4094 | } |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4095 | // C++ allows comparison of pointers with null pointer constants. |
| 4096 | if (getLangOptions().CPlusPlus) { |
| 4097 | if (lType->isPointerType() && RHSIsNull) { |
| 4098 | ImpCastExprToType(rex, lType); |
| 4099 | return ResultTy; |
| 4100 | } |
| 4101 | if (rType->isPointerType() && LHSIsNull) { |
| 4102 | ImpCastExprToType(lex, rType); |
| 4103 | return ResultTy; |
| 4104 | } |
| 4105 | // And comparison of nullptr_t with itself. |
| 4106 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4107 | return ResultTy; |
| 4108 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4109 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4110 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4111 | QualType lpointee = lType->getAsBlockPointerType()->getPointeeType(); |
| 4112 | QualType rpointee = rType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4113 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4114 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4115 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4116 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4117 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4118 | } |
| 4119 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4120 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4121 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4122 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4123 | if (!isRelational |
| 4124 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4125 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4126 | if (!LHSIsNull && !RHSIsNull) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4127 | if (!((rType->isPointerType() && rType->getAsPointerType() |
| 4128 | ->getPointeeType()->isVoidType()) |
| 4129 | || (lType->isPointerType() && lType->getAsPointerType() |
| 4130 | ->getPointeeType()->isVoidType()))) |
| 4131 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4132 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4133 | } |
| 4134 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4135 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4136 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4137 | |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4138 | if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4139 | if (lType->isPointerType() || rType->isPointerType()) { |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4140 | const PointerType *LPT = lType->getAsPointerType(); |
| 4141 | const PointerType *RPT = rType->getAsPointerType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4142 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4143 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4144 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4145 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4146 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4147 | if (!LPtrToVoid && !RPtrToVoid && |
| 4148 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4149 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4150 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4151 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4152 | return ResultTy; |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4153 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4154 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4155 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4156 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4157 | if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) { |
| 4158 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4159 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4160 | } else { |
| 4161 | if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4162 | Diag(Loc, diag::warn_incompatible_qualified_id_operands) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4163 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4164 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4165 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4166 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4167 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4168 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4169 | if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4170 | rType->isIntegerType()) { |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4171 | if (isRelational) |
| 4172 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer) |
| 4173 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4174 | else if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4175 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4176 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4177 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4178 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4179 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4180 | if (lType->isIntegerType() && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4181 | (rType->isPointerType() || rType->isObjCQualifiedIdType())) { |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4182 | if (isRelational) |
| 4183 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer) |
| 4184 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4185 | else if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4186 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4187 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4188 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4189 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4190 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4191 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4192 | if (!isRelational && RHSIsNull |
| 4193 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4194 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4195 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4196 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4197 | if (!isRelational && LHSIsNull |
| 4198 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4199 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4200 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4201 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4202 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4203 | } |
| 4204 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4205 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4206 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4207 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4208 | /// types. |
| 4209 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4210 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4211 | bool isRelational) { |
| 4212 | // Check to make sure we're operating on vectors of the same type and width, |
| 4213 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4214 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4215 | if (vType.isNull()) |
| 4216 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4217 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4218 | QualType lType = lex->getType(); |
| 4219 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4220 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4221 | // For non-floating point types, check for self-comparisons of the form |
| 4222 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4223 | // often indicate logic errors in the program. |
| 4224 | if (!lType->isFloatingType()) { |
| 4225 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4226 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4227 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4228 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4229 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4230 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4231 | // Check for comparisons of floating point operands using != and ==. |
| 4232 | if (!isRelational && lType->isFloatingType()) { |
| 4233 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4234 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4235 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4236 | |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4237 | // FIXME: Vector compare support in the LLVM backend is not fully reliable, |
| 4238 | // just reject all vector comparisons for now. |
| 4239 | if (1) { |
| 4240 | Diag(Loc, diag::err_typecheck_vector_comparison) |
| 4241 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4242 | return QualType(); |
| 4243 | } |
| 4244 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4245 | // Return the type for the comparison, which is the same as vector type for |
| 4246 | // integer vectors, or an integer type of identical size and number of |
| 4247 | // elements for floating point vectors. |
| 4248 | if (lType->isIntegerType()) |
| 4249 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4250 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4251 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4252 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4253 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4254 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4255 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4256 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4257 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4258 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4259 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4260 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4261 | } |
| 4262 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4263 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4264 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4265 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4266 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4267 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4268 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4269 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4270 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4271 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4272 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4273 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4274 | } |
| 4275 | |
| 4276 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4277 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4278 | { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4279 | UsualUnaryConversions(lex); |
| 4280 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4281 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 4282 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4283 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4284 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4285 | } |
| 4286 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4287 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4288 | /// is a read-only property; return true if so. A readonly property expression |
| 4289 | /// depends on various declarations and thus must be treated specially. |
| 4290 | /// |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4291 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4292 | { |
| 4293 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4294 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4295 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4296 | QualType BaseType = PropExpr->getBase()->getType(); |
| 4297 | if (const PointerType *PTy = BaseType->getAsPointerType()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4298 | if (const ObjCInterfaceType *IFTy = |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4299 | PTy->getPointeeType()->getAsObjCInterfaceType()) |
| 4300 | if (ObjCInterfaceDecl *IFace = IFTy->getDecl()) |
| 4301 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4302 | return true; |
| 4303 | } |
| 4304 | } |
| 4305 | return false; |
| 4306 | } |
| 4307 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4308 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4309 | /// emit an error and return true. If so, return false. |
| 4310 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4311 | SourceLocation OrigLoc = Loc; |
| 4312 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
| 4313 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4314 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4315 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4316 | if (IsLV == Expr::MLV_Valid) |
| 4317 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4318 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4319 | unsigned Diag = 0; |
| 4320 | bool NeedType = false; |
| 4321 | switch (IsLV) { // C99 6.5.16p2 |
| 4322 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4323 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4324 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4325 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4326 | NeedType = true; |
| 4327 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4328 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4329 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4330 | NeedType = true; |
| 4331 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4332 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4333 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4334 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4335 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4336 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4337 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4338 | case Expr::MLV_IncompleteType: |
| 4339 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4340 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4341 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 4342 | E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4343 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4344 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4345 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4346 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4347 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4348 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4349 | case Expr::MLV_ReadonlyProperty: |
| 4350 | Diag = diag::error_readonly_property_assignment; |
| 4351 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4352 | case Expr::MLV_NoSetterProperty: |
| 4353 | Diag = diag::error_nosetter_property_assignment; |
| 4354 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4355 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4356 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4357 | SourceRange Assign; |
| 4358 | if (Loc != OrigLoc) |
| 4359 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4360 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4361 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4362 | else |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4363 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4364 | return true; |
| 4365 | } |
| 4366 | |
| 4367 | |
| 4368 | |
| 4369 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4370 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4371 | SourceLocation Loc, |
| 4372 | QualType CompoundType) { |
| 4373 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4374 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4375 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4376 | |
| 4377 | QualType LHSType = LHS->getType(); |
| 4378 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4379 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4380 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4381 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4382 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4383 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4384 | // Special case of NSObject attributes on c-style pointer types. |
| 4385 | if (ConvTy == IncompatiblePointer && |
| 4386 | ((Context.isObjCNSObjectType(LHSType) && |
| 4387 | Context.isObjCObjectPointerType(RHSType)) || |
| 4388 | (Context.isObjCNSObjectType(RHSType) && |
| 4389 | Context.isObjCObjectPointerType(LHSType)))) |
| 4390 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4391 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4392 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4393 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4394 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4395 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4396 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4397 | RHSCheck = ICE->getSubExpr(); |
| 4398 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4399 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4400 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4401 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4402 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4403 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4404 | // And there is a space or other character before the subexpr of the |
| 4405 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4406 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4407 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4408 | Diag(Loc, diag::warn_not_compound_assign) |
| 4409 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4410 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4411 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4412 | } |
| 4413 | } else { |
| 4414 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4415 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4416 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4417 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4418 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4419 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4420 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4421 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4422 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4423 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4424 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4425 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4426 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4427 | // C++ 5.17p1: the type of the assignment expression is that of its left |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4428 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4429 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4430 | } |
| 4431 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4432 | // C99 6.5.17 |
| 4433 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4434 | // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4435 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4436 | |
| 4437 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4438 | // incomplete in C++). |
| 4439 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4440 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4441 | } |
| 4442 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4443 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4444 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4445 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4446 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4447 | if (Op->isTypeDependent()) |
| 4448 | return Context.DependentTy; |
| 4449 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4450 | QualType ResType = Op->getType(); |
| 4451 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4452 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4453 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4454 | // Decrement of bool is not allowed. |
| 4455 | if (!isInc) { |
| 4456 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 4457 | return QualType(); |
| 4458 | } |
| 4459 | // Increment of bool sets it to true, but is deprecated. |
| 4460 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 4461 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4462 | // OK! |
| 4463 | } else if (const PointerType *PT = ResType->getAsPointerType()) { |
| 4464 | // C99 6.5.2.4p2, 6.5.6p2 |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4465 | if (PT->getPointeeType()->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4466 | if (getLangOptions().CPlusPlus) { |
| 4467 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 4468 | << Op->getSourceRange(); |
| 4469 | return QualType(); |
| 4470 | } |
| 4471 | |
| 4472 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4473 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4474 | } else if (PT->getPointeeType()->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4475 | if (getLangOptions().CPlusPlus) { |
| 4476 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 4477 | << Op->getType() << Op->getSourceRange(); |
| 4478 | return QualType(); |
| 4479 | } |
| 4480 | |
| 4481 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4482 | << ResType << Op->getSourceRange(); |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4483 | } else if (RequireCompleteType(OpLoc, PT->getPointeeType(), |
| 4484 | diag::err_typecheck_arithmetic_incomplete_type, |
| 4485 | Op->getSourceRange(), SourceRange(), |
| 4486 | ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4487 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4488 | } else if (ResType->isComplexType()) { |
| 4489 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 4490 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4491 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4492 | } else { |
| 4493 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4494 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4495 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4496 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4497 | // At this point, we know we have a real, complex or pointer type. |
Steve Naroff | dd10e02 | 2007-08-23 21:37:33 +0000 | [diff] [blame] | 4498 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4499 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4500 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4501 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4502 | } |
| 4503 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4504 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4505 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4506 | /// where the declaration is needed for type checking. We only need to |
| 4507 | /// handle cases when the expression references a function designator |
| 4508 | /// or is an lvalue. Here are some examples: |
| 4509 | /// - &(x) => x |
| 4510 | /// - &*****f => f for f a function designator. |
| 4511 | /// - &s.xx => s |
| 4512 | /// - &s.zz[1].yy -> s, if zz is an array |
| 4513 | /// - *(x + 1) -> x, if x is an array |
| 4514 | /// - &"123"[2] -> 0 |
| 4515 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4516 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4517 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4518 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 4519 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4520 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4521 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4522 | // If this is an arrow operator, the address is an offset from |
| 4523 | // the base's value, so the object the base refers to is |
| 4524 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4525 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4526 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4527 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4528 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4529 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4530 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 4531 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4532 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 4533 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 4534 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 4535 | return getPrimaryDecl(ICE->getSubExpr()); |
| 4536 | } |
| 4537 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4538 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4539 | case Stmt::UnaryOperatorClass: { |
| 4540 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4541 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4542 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4543 | case UnaryOperator::Real: |
| 4544 | case UnaryOperator::Imag: |
| 4545 | case UnaryOperator::Extension: |
| 4546 | return getPrimaryDecl(UO->getSubExpr()); |
| 4547 | default: |
| 4548 | return 0; |
| 4549 | } |
| 4550 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4551 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4552 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4553 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4554 | // If the result of an implicit cast is an l-value, we care about |
| 4555 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4556 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4557 | default: |
| 4558 | return 0; |
| 4559 | } |
| 4560 | } |
| 4561 | |
| 4562 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4563 | /// designator or an lvalue designating an object. If it is an lvalue, the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4564 | /// object cannot be declared with storage class register or be a bit field. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4565 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4566 | /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4567 | /// In C++, the operand might be an overloaded function name, in which case |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4568 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4569 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4570 | // Make sure to ignore parentheses in subsequent checks |
| 4571 | op = op->IgnoreParens(); |
| 4572 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 4573 | if (op->isTypeDependent()) |
| 4574 | return Context.DependentTy; |
| 4575 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4576 | if (getLangOptions().C99) { |
| 4577 | // Implement C99-only parts of addressof rules. |
| 4578 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 4579 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 4580 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 4581 | // (assuming the deref expression is valid). |
| 4582 | return uOp->getSubExpr()->getType(); |
| 4583 | } |
| 4584 | // Technically, there should be a check for array subscript |
| 4585 | // expressions here, but the result of one is always an lvalue anyway. |
| 4586 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4587 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 4588 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 4589 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4590 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 4591 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4592 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4593 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4594 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4595 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 4596 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4597 | return QualType(); |
| 4598 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 4599 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4600 | // The operand cannot be a bit-field |
| 4601 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4602 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 4603 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4604 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 4605 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4606 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4607 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4608 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 4609 | return QualType(); |
| 4610 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4611 | // We have an lvalue with a decl. Make sure the decl is not declared |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4612 | // with the register storage-class specifier. |
| 4613 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 4614 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4615 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4616 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4617 | return QualType(); |
| 4618 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4619 | } else if (isa<OverloadedFunctionDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4620 | return Context.OverloadTy; |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4621 | } else if (isa<FieldDecl>(dcl)) { |
| 4622 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4623 | // Could be a pointer to member, though, if there is an explicit |
| 4624 | // scope qualifier for the class. |
| 4625 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 4626 | DeclContext *Ctx = dcl->getDeclContext(); |
| 4627 | if (Ctx && Ctx->isRecord()) |
| 4628 | return Context.getMemberPointerType(op->getType(), |
| 4629 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 4630 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4631 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 4632 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4633 | // As above. |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4634 | if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance()) |
| 4635 | return Context.getMemberPointerType(op->getType(), |
| 4636 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 4637 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4638 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4639 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4640 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4641 | if (lval == Expr::LV_IncompleteVoidType) { |
| 4642 | // Taking the address of a void variable is technically illegal, but we |
| 4643 | // allow it in cases which are otherwise valid. |
| 4644 | // Example: "extern void x; void* y = &x;". |
| 4645 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 4646 | } |
| 4647 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4648 | // If the operand has type "type", the result has type "pointer to type". |
| 4649 | return Context.getPointerType(op->getType()); |
| 4650 | } |
| 4651 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4652 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4653 | if (Op->isTypeDependent()) |
| 4654 | return Context.DependentTy; |
| 4655 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4656 | UsualUnaryConversions(Op); |
| 4657 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4658 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4659 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 4660 | // incomplete type or void. It would be possible to warn about dereferencing |
| 4661 | // a void pointer, but it's completely well-defined, and such a warning is |
| 4662 | // unlikely to catch any mistakes. |
| 4663 | if (const PointerType *PT = Ty->getAsPointerType()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4664 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4665 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4666 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4667 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4668 | return QualType(); |
| 4669 | } |
| 4670 | |
| 4671 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 4672 | tok::TokenKind Kind) { |
| 4673 | BinaryOperator::Opcode Opc; |
| 4674 | switch (Kind) { |
| 4675 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4676 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 4677 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4678 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 4679 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 4680 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 4681 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 4682 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 4683 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 4684 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 4685 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4686 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4687 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4688 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4689 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4690 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4691 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4692 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4693 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4694 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4695 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4696 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4697 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4698 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4699 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4700 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4701 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4702 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4703 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4704 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4705 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4706 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4707 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4708 | } |
| 4709 | return Opc; |
| 4710 | } |
| 4711 | |
| 4712 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4713 | tok::TokenKind Kind) { |
| 4714 | UnaryOperator::Opcode Opc; |
| 4715 | switch (Kind) { |
| 4716 | default: assert(0 && "Unknown unary op!"); |
| 4717 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4718 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4719 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4720 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4721 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4722 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4723 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4724 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4725 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4726 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4727 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4728 | } |
| 4729 | return Opc; |
| 4730 | } |
| 4731 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4732 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4733 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4734 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4735 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4736 | unsigned Op, |
| 4737 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4738 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4739 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4740 | // The following two variables are used for compound assignment operators |
| 4741 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 4742 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4743 | |
| 4744 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4745 | case BinaryOperator::Assign: |
| 4746 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4747 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4748 | case BinaryOperator::PtrMemD: |
| 4749 | case BinaryOperator::PtrMemI: |
| 4750 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4751 | Opc == BinaryOperator::PtrMemI); |
| 4752 | break; |
| 4753 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4754 | case BinaryOperator::Div: |
| 4755 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4756 | break; |
| 4757 | case BinaryOperator::Rem: |
| 4758 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4759 | break; |
| 4760 | case BinaryOperator::Add: |
| 4761 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4762 | break; |
| 4763 | case BinaryOperator::Sub: |
| 4764 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4765 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4766 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4767 | case BinaryOperator::Shr: |
| 4768 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4769 | break; |
| 4770 | case BinaryOperator::LE: |
| 4771 | case BinaryOperator::LT: |
| 4772 | case BinaryOperator::GE: |
| 4773 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4774 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4775 | break; |
| 4776 | case BinaryOperator::EQ: |
| 4777 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4778 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4779 | break; |
| 4780 | case BinaryOperator::And: |
| 4781 | case BinaryOperator::Xor: |
| 4782 | case BinaryOperator::Or: |
| 4783 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4784 | break; |
| 4785 | case BinaryOperator::LAnd: |
| 4786 | case BinaryOperator::LOr: |
| 4787 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4788 | break; |
| 4789 | case BinaryOperator::MulAssign: |
| 4790 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4791 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4792 | CompLHSTy = CompResultTy; |
| 4793 | if (!CompResultTy.isNull()) |
| 4794 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4795 | break; |
| 4796 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4797 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4798 | CompLHSTy = CompResultTy; |
| 4799 | if (!CompResultTy.isNull()) |
| 4800 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4801 | break; |
| 4802 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4803 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4804 | if (!CompResultTy.isNull()) |
| 4805 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4806 | break; |
| 4807 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4808 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4809 | if (!CompResultTy.isNull()) |
| 4810 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4811 | break; |
| 4812 | case BinaryOperator::ShlAssign: |
| 4813 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4814 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4815 | CompLHSTy = CompResultTy; |
| 4816 | if (!CompResultTy.isNull()) |
| 4817 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4818 | break; |
| 4819 | case BinaryOperator::AndAssign: |
| 4820 | case BinaryOperator::XorAssign: |
| 4821 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4822 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 4823 | CompLHSTy = CompResultTy; |
| 4824 | if (!CompResultTy.isNull()) |
| 4825 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4826 | break; |
| 4827 | case BinaryOperator::Comma: |
| 4828 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 4829 | break; |
| 4830 | } |
| 4831 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4832 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4833 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4834 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 4835 | else |
| 4836 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4837 | CompLHSTy, CompResultTy, |
| 4838 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4839 | } |
| 4840 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4841 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4842 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 4843 | tok::TokenKind Kind, |
| 4844 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4845 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 4846 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4847 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4848 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 4849 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4850 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4851 | if (getLangOptions().CPlusPlus && |
| 4852 | (lhs->getType()->isOverloadableType() || |
| 4853 | rhs->getType()->isOverloadableType())) { |
| 4854 | // Find all of the overloaded operators visible from this |
| 4855 | // point. We perform both an operator-name lookup from the local |
| 4856 | // scope and an argument-dependent lookup based on the types of |
| 4857 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 4858 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4859 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 4860 | if (OverOp != OO_None) { |
| 4861 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 4862 | Functions); |
| 4863 | Expr *Args[2] = { lhs, rhs }; |
| 4864 | DeclarationName OpName |
| 4865 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4866 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 4867 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4868 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4869 | // Build the (potentially-overloaded, potentially-dependent) |
| 4870 | // binary operation. |
| 4871 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4872 | } |
| 4873 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4874 | // Build a built-in binary operation. |
| 4875 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4876 | } |
| 4877 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4878 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 4879 | unsigned OpcIn, |
| 4880 | ExprArg InputArg) { |
| 4881 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4882 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4883 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4884 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4885 | QualType resultType; |
| 4886 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4887 | case UnaryOperator::PostInc: |
| 4888 | case UnaryOperator::PostDec: |
| 4889 | case UnaryOperator::OffsetOf: |
| 4890 | assert(false && "Invalid unary operator"); |
| 4891 | break; |
| 4892 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4893 | case UnaryOperator::PreInc: |
| 4894 | case UnaryOperator::PreDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4895 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
| 4896 | Opc == UnaryOperator::PreInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4897 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4898 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4899 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 4900 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4901 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 4902 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4903 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 4904 | break; |
| 4905 | case UnaryOperator::Plus: |
| 4906 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4907 | UsualUnaryConversions(Input); |
| 4908 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4909 | if (resultType->isDependentType()) |
| 4910 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4911 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 4912 | break; |
| 4913 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 4914 | resultType->isEnumeralType()) |
| 4915 | break; |
| 4916 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 4917 | Opc == UnaryOperator::Plus && |
| 4918 | resultType->isPointerType()) |
| 4919 | break; |
| 4920 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4921 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4922 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4923 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4924 | UsualUnaryConversions(Input); |
| 4925 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4926 | if (resultType->isDependentType()) |
| 4927 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4928 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 4929 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 4930 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4931 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4932 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4933 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4934 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4935 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4936 | break; |
| 4937 | case UnaryOperator::LNot: // logical negation |
| 4938 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4939 | DefaultFunctionArrayConversion(Input); |
| 4940 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4941 | if (resultType->isDependentType()) |
| 4942 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4943 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4944 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4945 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4946 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4947 | // In C++, it's bool. C++ 5.3.1p8 |
| 4948 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4949 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4950 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4951 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 4952 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4953 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4954 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4955 | resultType = Input->getType(); |
| 4956 | break; |
| 4957 | } |
| 4958 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4959 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4960 | |
| 4961 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4962 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4963 | } |
| 4964 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4965 | // Unary Operators. 'Tok' is the token for the operator. |
| 4966 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 4967 | tok::TokenKind Op, ExprArg input) { |
| 4968 | Expr *Input = (Expr*)input.get(); |
| 4969 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 4970 | |
| 4971 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 4972 | // Find all of the overloaded operators visible from this |
| 4973 | // point. We perform both an operator-name lookup from the local |
| 4974 | // scope and an argument-dependent lookup based on the types of |
| 4975 | // the arguments. |
| 4976 | FunctionSet Functions; |
| 4977 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 4978 | if (OverOp != OO_None) { |
| 4979 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 4980 | Functions); |
| 4981 | DeclarationName OpName |
| 4982 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4983 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 4984 | } |
| 4985 | |
| 4986 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 4987 | } |
| 4988 | |
| 4989 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 4990 | } |
| 4991 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 4992 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4993 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 4994 | SourceLocation LabLoc, |
| 4995 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4996 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 4997 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4998 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 4999 | // If we haven't seen this label yet, create a forward reference. It |
| 5000 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 5001 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5002 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5003 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5004 | // Create the AST node. The address of a label always has type 'void*'. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5005 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 5006 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5007 | } |
| 5008 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5009 | Sema::OwningExprResult |
| 5010 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 5011 | SourceLocation RPLoc) { // "({..})" |
| 5012 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5013 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 5014 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 5015 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5016 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 5017 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5018 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5019 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5020 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 5021 | // example, it is not possible to goto into a stmt expression apparently. |
| 5022 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5023 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5024 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5025 | // as the type of the stmtexpr. |
| 5026 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5027 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5028 | if (!Compound->body_empty()) { |
| 5029 | Stmt *LastStmt = Compound->body_back(); |
| 5030 | // If LastStmt is a label, skip down through into the body. |
| 5031 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5032 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5033 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5034 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5035 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5036 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5037 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5038 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5039 | // expressions are not lvalues. |
| 5040 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5041 | substmt.release(); |
| 5042 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5043 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5044 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5045 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5046 | SourceLocation BuiltinLoc, |
| 5047 | SourceLocation TypeLoc, |
| 5048 | TypeTy *argty, |
| 5049 | OffsetOfComponent *CompPtr, |
| 5050 | unsigned NumComponents, |
| 5051 | SourceLocation RPLoc) { |
| 5052 | // FIXME: This function leaks all expressions in the offset components on |
| 5053 | // error. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5054 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 5055 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5056 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5057 | bool Dependent = ArgTy->isDependentType(); |
| 5058 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5059 | // We must have at least one component that refers to the type, and the first |
| 5060 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5061 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5062 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5063 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5064 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5065 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5066 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5067 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5068 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5069 | // the offsetof designators. |
| 5070 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5071 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5072 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5073 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5074 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5075 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5076 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5077 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5078 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5079 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5080 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5081 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5082 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5083 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5084 | bool DidWarnAboutNonPOD = false; |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5085 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5086 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5087 | // leaks like a sieve. |
| 5088 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5089 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5090 | if (OC.isBrackets) { |
| 5091 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5092 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5093 | if (!AT) { |
| 5094 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5095 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5096 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5097 | } |
| 5098 | |
| 5099 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5100 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5101 | // Promote the array so it looks more like a normal array subscript |
| 5102 | // expression. |
| 5103 | DefaultFunctionArrayConversion(Res); |
| 5104 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5105 | // C99 6.5.2.1p1 |
| 5106 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5107 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5108 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5109 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5110 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5111 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5112 | |
| 5113 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5114 | OC.LocEnd); |
| 5115 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5116 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5117 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5118 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 5119 | if (!RC) { |
| 5120 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5121 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5122 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5123 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5124 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5125 | // Get the decl corresponding to this. |
| 5126 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5127 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5128 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5129 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5130 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5131 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5132 | DidWarnAboutNonPOD = true; |
| 5133 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5134 | } |
| 5135 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5136 | FieldDecl *MemberDecl |
| 5137 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 5138 | LookupMemberName) |
| 5139 | .getAsDecl()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5140 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5141 | if (!MemberDecl) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5142 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 5143 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5144 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5145 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5146 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5147 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5148 | Res = BuildAnonymousStructUnionMemberReference( |
| 5149 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5150 | } else { |
| 5151 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5152 | // doesn't matter here. |
| 5153 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5154 | MemberDecl->getType().getNonReferenceType()); |
| 5155 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5156 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5157 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5158 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5159 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5160 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5161 | } |
| 5162 | |
| 5163 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5164 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5165 | TypeTy *arg1,TypeTy *arg2, |
| 5166 | SourceLocation RPLoc) { |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5167 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 5168 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5169 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5170 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5171 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5172 | if (getLangOptions().CPlusPlus) { |
| 5173 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5174 | << SourceRange(BuiltinLoc, RPLoc); |
| 5175 | return ExprError(); |
| 5176 | } |
| 5177 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5178 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5179 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5180 | } |
| 5181 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5182 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5183 | ExprArg cond, |
| 5184 | ExprArg expr1, ExprArg expr2, |
| 5185 | SourceLocation RPLoc) { |
| 5186 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5187 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5188 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5189 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5190 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5191 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5192 | QualType resType; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5193 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5194 | resType = Context.DependentTy; |
| 5195 | } else { |
| 5196 | // The conditional expression is required to be a constant expression. |
| 5197 | llvm::APSInt condEval(32); |
| 5198 | SourceLocation ExpLoc; |
| 5199 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5200 | return ExprError(Diag(ExpLoc, |
| 5201 | diag::err_typecheck_choose_expr_requires_constant) |
| 5202 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5203 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5204 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5205 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 5206 | } |
| 5207 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5208 | cond.release(); expr1.release(); expr2.release(); |
| 5209 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 5210 | resType, RPLoc)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5211 | } |
| 5212 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5213 | //===----------------------------------------------------------------------===// |
| 5214 | // Clang Extensions. |
| 5215 | //===----------------------------------------------------------------------===// |
| 5216 | |
| 5217 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5218 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5219 | // Analyze block parameters. |
| 5220 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5221 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5222 | // Add BSI to CurBlock. |
| 5223 | BSI->PrevBlockInfo = CurBlock; |
| 5224 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5225 | |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5226 | BSI->ReturnType = QualType(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5227 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5228 | BSI->hasBlockDeclRefExprs = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5229 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5230 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5231 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5232 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5233 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5234 | } |
| 5235 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5236 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5237 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5238 | |
| 5239 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5240 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5241 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5242 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5243 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5244 | if (T->isArrayType()) { |
| 5245 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5246 | diag::err_block_returns_array); |
| 5247 | return; |
| 5248 | } |
| 5249 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5250 | // The parameter list is optional, if there was none, assume (). |
| 5251 | if (!T->isFunctionType()) |
| 5252 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5253 | |
| 5254 | CurBlock->hasPrototype = true; |
| 5255 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5256 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5257 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5258 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5259 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5260 | // FIXME: remove the attribute. |
| 5261 | } |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5262 | QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType(); |
| 5263 | |
| 5264 | // Do not allow returning a objc interface by-value. |
| 5265 | if (RetTy->isObjCInterfaceType()) { |
| 5266 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5267 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5268 | return; |
| 5269 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5270 | return; |
| 5271 | } |
| 5272 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5273 | // Analyze arguments to block. |
| 5274 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5275 | "Not a function declarator!"); |
| 5276 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5277 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5278 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5279 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5280 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5281 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5282 | // no arguments, not a function that takes a single void argument. |
| 5283 | if (FTI.hasPrototype && |
| 5284 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5285 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5286 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5287 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5288 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5289 | } else if (FTI.hasPrototype) { |
| 5290 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5291 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5292 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5293 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5294 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5295 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5296 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5297 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5298 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5299 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5300 | // If this has an identifier, add it to the scope stack. |
| 5301 | if ((*AI)->getIdentifier()) |
| 5302 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5303 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5304 | // Check for a valid sentinel attribute on this block. |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 5305 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5306 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5307 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5308 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5309 | // FIXME: remove the attribute. |
| 5310 | } |
| 5311 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5312 | // Analyze the return type. |
| 5313 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5314 | QualType RetTy = T->getAsFunctionType()->getResultType(); |
| 5315 | |
| 5316 | // Do not allow returning a objc interface by-value. |
| 5317 | if (RetTy->isObjCInterfaceType()) { |
| 5318 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5319 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5320 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5321 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5322 | } |
| 5323 | |
| 5324 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5325 | /// is invoked to pop the information about the block from the action impl. |
| 5326 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5327 | // Ensure that CurBlock is deleted. |
| 5328 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5329 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5330 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5331 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5332 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5333 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5334 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5335 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5336 | } |
| 5337 | |
| 5338 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5339 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5340 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5341 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5342 | // If blocks are disabled, emit an error. |
| 5343 | if (!LangOpts.Blocks) |
| 5344 | Diag(CaretLoc, diag::err_blocks_disable); |
| 5345 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5346 | // Ensure that CurBlock is deleted. |
| 5347 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5348 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5349 | PopDeclContext(); |
| 5350 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5351 | // Pop off CurBlock, handle nested blocks. |
| 5352 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5353 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5354 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5355 | if (!BSI->ReturnType.isNull()) |
| 5356 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5357 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5358 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 5359 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 5360 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5361 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5362 | QualType BlockTy; |
| 5363 | if (!BSI->hasPrototype) |
Eli Friedman | 687abff | 2009-06-08 04:24:21 +0000 | [diff] [blame] | 5364 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5365 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5366 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Argyrios Kyrtzidis | 7fb5e48 | 2008-10-26 16:43:14 +0000 | [diff] [blame] | 5367 | BSI->isVariadic, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5368 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5369 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5370 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5371 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5372 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5373 | // If needed, diagnose invalid gotos and switches in the block. |
| 5374 | if (CurFunctionNeedsScopeChecking) |
| 5375 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 5376 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
| 5377 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5378 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5379 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 5380 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5381 | } |
| 5382 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5383 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 5384 | ExprArg expr, TypeTy *type, |
| 5385 | SourceLocation RPLoc) { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5386 | QualType T = QualType::getFromOpaquePtr(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5387 | Expr *E = static_cast<Expr*>(expr.get()); |
| 5388 | Expr *OrigExpr = E; |
| 5389 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5390 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5391 | |
| 5392 | // Get the va_list type |
| 5393 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5394 | if (VaListType->isArrayType()) { |
| 5395 | // Deal with implicit array decay; for example, on x86-64, |
| 5396 | // va_list is an array, but it's supposed to decay to |
| 5397 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5398 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5399 | // Make sure the input expression also decays appropriately. |
| 5400 | UsualUnaryConversions(E); |
| 5401 | } else { |
| 5402 | // Otherwise, the va_list argument must be an l-value because |
| 5403 | // it is modified by va_arg. |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5404 | if (!E->isTypeDependent() && |
| 5405 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5406 | return ExprError(); |
| 5407 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5408 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5409 | if (!E->isTypeDependent() && |
| 5410 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5411 | return ExprError(Diag(E->getLocStart(), |
| 5412 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5413 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 5414 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5415 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5416 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5417 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5418 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5419 | expr.release(); |
| 5420 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 5421 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5422 | } |
| 5423 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5424 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5425 | // The type of __null will be int or long, depending on the size of |
| 5426 | // pointers on the target. |
| 5427 | QualType Ty; |
| 5428 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 5429 | Ty = Context.IntTy; |
| 5430 | else |
| 5431 | Ty = Context.LongTy; |
| 5432 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5433 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5434 | } |
| 5435 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5436 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 5437 | SourceLocation Loc, |
| 5438 | QualType DstType, QualType SrcType, |
| 5439 | Expr *SrcExpr, const char *Flavor) { |
| 5440 | // Decode the result (notice that AST's are still created for extensions). |
| 5441 | bool isInvalid = false; |
| 5442 | unsigned DiagKind; |
| 5443 | switch (ConvTy) { |
| 5444 | default: assert(0 && "Unknown conversion type"); |
| 5445 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5446 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5447 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 5448 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5449 | case IntToPointer: |
| 5450 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 5451 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5452 | case IncompatiblePointer: |
| 5453 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 5454 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5455 | case IncompatiblePointerSign: |
| 5456 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 5457 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5458 | case FunctionVoidPointer: |
| 5459 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 5460 | break; |
| 5461 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 5462 | // If the qualifiers lost were because we were applying the |
| 5463 | // (deprecated) C++ conversion from a string literal to a char* |
| 5464 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 5465 | // Ideally, this check would be performed in |
| 5466 | // CheckPointerTypesForAssignment. However, that would require a |
| 5467 | // bit of refactoring (so that the second argument is an |
| 5468 | // expression, rather than a type), which should be done as part |
| 5469 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 5470 | // C++ semantics. |
| 5471 | if (getLangOptions().CPlusPlus && |
| 5472 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 5473 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5474 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 5475 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5476 | case IntToBlockPointer: |
| 5477 | DiagKind = diag::err_int_to_block_pointer; |
| 5478 | break; |
| 5479 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 5480 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5481 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5482 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5483 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5484 | // it can give a more specific diagnostic. |
| 5485 | DiagKind = diag::warn_incompatible_qualified_id; |
| 5486 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5487 | case IncompatibleVectors: |
| 5488 | DiagKind = diag::warn_incompatible_vectors; |
| 5489 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5490 | case Incompatible: |
| 5491 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 5492 | isInvalid = true; |
| 5493 | break; |
| 5494 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5495 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 5496 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 5497 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5498 | return isInvalid; |
| 5499 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5500 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 5501 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5502 | llvm::APSInt ICEResult; |
| 5503 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 5504 | if (Result) |
| 5505 | *Result = ICEResult; |
| 5506 | return false; |
| 5507 | } |
| 5508 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5509 | Expr::EvalResult EvalResult; |
| 5510 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5511 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5512 | EvalResult.HasSideEffects) { |
| 5513 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 5514 | |
| 5515 | if (EvalResult.Diag) { |
| 5516 | // We only show the note if it's not the usual "invalid subexpression" |
| 5517 | // or if it's actually in a subexpression. |
| 5518 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 5519 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 5520 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 5521 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5522 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5523 | return true; |
| 5524 | } |
| 5525 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5526 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 5527 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5528 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5529 | if (EvalResult.Diag && |
| 5530 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 5531 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5532 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5533 | if (Result) |
| 5534 | *Result = EvalResult.Val.getInt(); |
| 5535 | return false; |
| 5536 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5537 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 5538 | Sema::ExpressionEvaluationContext |
| 5539 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
| 5540 | // Introduce a new set of potentially referenced declarations to the stack. |
| 5541 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 5542 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
| 5543 | |
| 5544 | std::swap(ExprEvalContext, NewContext); |
| 5545 | return NewContext; |
| 5546 | } |
| 5547 | |
| 5548 | void |
| 5549 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 5550 | ExpressionEvaluationContext NewContext) { |
| 5551 | ExprEvalContext = NewContext; |
| 5552 | |
| 5553 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 5554 | // Mark any remaining declarations in the current position of the stack |
| 5555 | // as "referenced". If they were not meant to be referenced, semantic |
| 5556 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 5557 | PotentiallyReferencedDecls RemainingDecls; |
| 5558 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 5559 | PotentiallyReferencedDeclStack.pop_back(); |
| 5560 | |
| 5561 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 5562 | IEnd = RemainingDecls.end(); |
| 5563 | I != IEnd; ++I) |
| 5564 | MarkDeclarationReferenced(I->first, I->second); |
| 5565 | } |
| 5566 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5567 | |
| 5568 | /// \brief Note that the given declaration was referenced in the source code. |
| 5569 | /// |
| 5570 | /// This routine should be invoke whenever a given declaration is referenced |
| 5571 | /// in the source code, and where that reference occurred. If this declaration |
| 5572 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 5573 | /// C99 6.9p3), then the declaration will be marked as used. |
| 5574 | /// |
| 5575 | /// \param Loc the location where the declaration was referenced. |
| 5576 | /// |
| 5577 | /// \param D the declaration that has been referenced by the source code. |
| 5578 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 5579 | assert(D && "No declaration?"); |
| 5580 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5581 | if (D->isUsed()) |
| 5582 | return; |
| 5583 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5584 | // Mark a parameter declaration "used", regardless of whether we're in a |
| 5585 | // template or not. |
| 5586 | if (isa<ParmVarDecl>(D)) |
| 5587 | D->setUsed(true); |
| 5588 | |
| 5589 | // Do not mark anything as "used" within a dependent context; wait for |
| 5590 | // an instantiation. |
| 5591 | if (CurContext->isDependentContext()) |
| 5592 | return; |
| 5593 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 5594 | switch (ExprEvalContext) { |
| 5595 | case Unevaluated: |
| 5596 | // We are in an expression that is not potentially evaluated; do nothing. |
| 5597 | return; |
| 5598 | |
| 5599 | case PotentiallyEvaluated: |
| 5600 | // We are in a potentially-evaluated expression, so this declaration is |
| 5601 | // "used"; handle this below. |
| 5602 | break; |
| 5603 | |
| 5604 | case PotentiallyPotentiallyEvaluated: |
| 5605 | // We are in an expression that may be potentially evaluated; queue this |
| 5606 | // declaration reference until we know whether the expression is |
| 5607 | // potentially evaluated. |
| 5608 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 5609 | return; |
| 5610 | } |
| 5611 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5612 | // Note that this declaration has been used. |
Fariborz Jahanian | b7f4cc0 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 5613 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 5614 | unsigned TypeQuals; |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 5615 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 5616 | if (!Constructor->isUsed()) |
| 5617 | DefineImplicitDefaultConstructor(Loc, Constructor); |
| 5618 | } |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 5619 | else if (Constructor->isImplicit() && |
| 5620 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
| 5621 | if (!Constructor->isUsed()) |
| 5622 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 5623 | } |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 5624 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 5625 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 5626 | DefineImplicitDestructor(Loc, Destructor); |
| 5627 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 5628 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 5629 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 5630 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 5631 | if (!MethodDecl->isUsed()) |
| 5632 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 5633 | } |
| 5634 | } |
Fariborz Jahanian | f5ed9e0 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 5635 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 5636 | // Implicit instantiation of function templates and member functions of |
| 5637 | // class templates. |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 5638 | if (!Function->getBody()) { |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 5639 | // FIXME: distinguish between implicit instantiations of function |
| 5640 | // templates and explicit specializations (the latter don't get |
| 5641 | // instantiated, naturally). |
| 5642 | if (Function->getInstantiatedFromMemberFunction() || |
| 5643 | Function->getPrimaryTemplate()) |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5644 | PendingImplicitInstantiations.push(std::make_pair(Function, Loc)); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5645 | } |
| 5646 | |
| 5647 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5648 | // FIXME: keep track of references to static functions |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5649 | Function->setUsed(true); |
| 5650 | return; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5651 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5652 | |
| 5653 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 5654 | (void)Var; |
| 5655 | // FIXME: implicit template instantiation |
| 5656 | // FIXME: keep track of references to static data? |
| 5657 | D->setUsed(true); |
| 5658 | } |
| 5659 | } |
| 5660 | |