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. |
| 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. |
| 51 | isSilenced = ND->getAttr<DeprecatedAttr>(); |
| 52 | |
| 53 | // If this is an Objective-C method implementation, check to see if the |
| 54 | // method was deprecated on the declaration, not the definition. |
| 55 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) { |
| 56 | // The semantic decl context of a ObjCMethodDecl is the |
| 57 | // ObjCImplementationDecl. |
| 58 | if (ObjCImplementationDecl *Impl |
| 59 | = dyn_cast<ObjCImplementationDecl>(MD->getParent())) { |
| 60 | |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 61 | MD = Impl->getClassInterface()->getMethod(Context, |
| 62 | MD->getSelector(), |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 63 | MD->isInstanceMethod()); |
| 64 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | if (!isSilenced) |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 70 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 71 | } |
| 72 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 73 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 74 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 75 | if (FD->isDeleted()) { |
| 76 | Diag(Loc, diag::err_deleted_function_use); |
| 77 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 78 | return true; |
| 79 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 80 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 81 | |
| 82 | // See if the decl is unavailable |
| 83 | if (D->getAttr<UnavailableAttr>()) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 84 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 85 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 86 | } |
| 87 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 88 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 91 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
| 92 | /// (and other functions in future), which have been declared with sentinel |
| 93 | /// attribute. It warns if call does not have the sentinel argument. |
| 94 | /// |
| 95 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
| 96 | Expr **Args, unsigned NumArgs) |
| 97 | { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 98 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
| 99 | if (!attr) |
| 100 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 101 | int sentinelPos = attr->getSentinel(); |
| 102 | int nullPos = attr->getNullPos(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 103 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 104 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 105 | // base class. Then we won't be needing two versions of the same code. |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 106 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 107 | bool warnNotEnoughArgs = false; |
| 108 | int isMethod = 0; |
| 109 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 110 | // skip over named parameters. |
| 111 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 112 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 113 | if (nullPos) |
| 114 | --nullPos; |
| 115 | else |
| 116 | ++i; |
| 117 | } |
| 118 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 119 | isMethod = 1; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 120 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 121 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 122 | // skip over named parameters. |
| 123 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 124 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 125 | if (nullPos) |
| 126 | --nullPos; |
| 127 | else |
| 128 | ++i; |
| 129 | } |
| 130 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 131 | } |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 132 | else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
| 133 | // block or function pointer call. |
| 134 | QualType Ty = V->getType(); |
| 135 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
| 136 | const FunctionType *FT = Ty->isFunctionPointerType() |
| 137 | ? Ty->getAsPointerType()->getPointeeType()->getAsFunctionType() |
| 138 | : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType(); |
| 139 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 140 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 141 | unsigned k; |
| 142 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 143 | if (nullPos) |
| 144 | --nullPos; |
| 145 | else |
| 146 | ++i; |
| 147 | } |
| 148 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 149 | } |
| 150 | if (Ty->isBlockPointerType()) |
| 151 | isMethod = 2; |
| 152 | } |
| 153 | else |
| 154 | return; |
| 155 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 156 | else |
| 157 | return; |
| 158 | |
| 159 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 160 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 161 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 162 | return; |
| 163 | } |
| 164 | int sentinel = i; |
| 165 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 166 | --sentinelPos; |
| 167 | ++i; |
| 168 | } |
| 169 | if (sentinelPos > 0) { |
| 170 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 171 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 172 | return; |
| 173 | } |
| 174 | while (i < NumArgs-1) { |
| 175 | ++i; |
| 176 | ++sentinel; |
| 177 | } |
| 178 | Expr *sentinelExpr = Args[sentinel]; |
| 179 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
| 180 | !sentinelExpr->isNullPointerConstant(Context))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 181 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 182 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 183 | } |
| 184 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 187 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 188 | Expr *Ex = (Expr *)E; |
| 189 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 190 | } |
| 191 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 192 | //===----------------------------------------------------------------------===// |
| 193 | // Standard Promotions and Conversions |
| 194 | //===----------------------------------------------------------------------===// |
| 195 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 196 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 197 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 198 | QualType Ty = E->getType(); |
| 199 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 200 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 201 | if (Ty->isFunctionType()) |
| 202 | ImpCastExprToType(E, Context.getPointerType(Ty)); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 203 | else if (Ty->isArrayType()) { |
| 204 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 205 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 206 | // type 'array of type' is converted to an expression that has type 'pointer |
| 207 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 208 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 209 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 210 | // |
| 211 | // C++ 4.2p1: |
| 212 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 213 | // T" can be converted to an rvalue of type "pointer to T". |
| 214 | // |
| 215 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 216 | E->isLvalue(Context) == Expr::LV_Valid) |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 217 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); |
| 218 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 221 | /// \brief Whether this is a promotable bitfield reference according |
| 222 | /// to C99 6.3.1.1p2, bullet 2. |
| 223 | /// |
| 224 | /// \returns the type this bit-field will promote to, or NULL if no |
| 225 | /// promotion occurs. |
| 226 | static QualType isPromotableBitField(Expr *E, ASTContext &Context) { |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 227 | FieldDecl *Field = E->getBitField(); |
| 228 | if (!Field) |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 229 | return QualType(); |
| 230 | |
| 231 | const BuiltinType *BT = Field->getType()->getAsBuiltinType(); |
| 232 | if (!BT) |
| 233 | return QualType(); |
| 234 | |
| 235 | if (BT->getKind() != BuiltinType::Bool && |
| 236 | BT->getKind() != BuiltinType::Int && |
| 237 | BT->getKind() != BuiltinType::UInt) |
| 238 | return QualType(); |
| 239 | |
| 240 | llvm::APSInt BitWidthAP; |
| 241 | if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context)) |
| 242 | return QualType(); |
| 243 | |
| 244 | uint64_t BitWidth = BitWidthAP.getZExtValue(); |
| 245 | uint64_t IntSize = Context.getTypeSize(Context.IntTy); |
| 246 | if (BitWidth < IntSize || |
| 247 | (Field->getType()->isSignedIntegerType() && BitWidth == IntSize)) |
| 248 | return Context.IntTy; |
| 249 | |
| 250 | if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType()) |
| 251 | return Context.UnsignedIntTy; |
| 252 | |
| 253 | return QualType(); |
| 254 | } |
| 255 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 256 | /// UsualUnaryConversions - Performs various conversions that are common to most |
| 257 | /// operators (C99 6.3). The conversions of array and function types are |
| 258 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 259 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 260 | /// In these instances, this routine should *not* be called. |
| 261 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 262 | QualType Ty = Expr->getType(); |
| 263 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
| 264 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 265 | // C99 6.3.1.1p2: |
| 266 | // |
| 267 | // The following may be used in an expression wherever an int or |
| 268 | // unsigned int may be used: |
| 269 | // - an object or expression with an integer type whose integer |
| 270 | // conversion rank is less than or equal to the rank of int |
| 271 | // and unsigned int. |
| 272 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 273 | // |
| 274 | // If an int can represent all values of the original type, the |
| 275 | // value is converted to an int; otherwise, it is converted to an |
| 276 | // unsigned int. These are called the integer promotions. All |
| 277 | // other types are unchanged by the integer promotions. |
| 278 | if (Ty->isPromotableIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 279 | ImpCastExprToType(Expr, Context.IntTy); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 280 | return Expr; |
| 281 | } else { |
| 282 | QualType T = isPromotableBitField(Expr, Context); |
| 283 | if (!T.isNull()) { |
| 284 | ImpCastExprToType(Expr, T); |
| 285 | return Expr; |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 290 | return Expr; |
| 291 | } |
| 292 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 293 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 294 | /// do not have a prototype. Arguments that have type float are promoted to |
| 295 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 296 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 297 | QualType Ty = Expr->getType(); |
| 298 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
| 299 | |
| 300 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
| 301 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 302 | if (BT->getKind() == BuiltinType::Float) |
| 303 | return ImpCastExprToType(Expr, Context.DoubleTy); |
| 304 | |
| 305 | UsualUnaryConversions(Expr); |
| 306 | } |
| 307 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 308 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 309 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 310 | /// interfaces passed by value. This returns true if the argument type is |
| 311 | /// completely illegal. |
| 312 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 313 | DefaultArgumentPromotion(Expr); |
| 314 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 315 | if (Expr->getType()->isObjCInterfaceType()) { |
| 316 | Diag(Expr->getLocStart(), |
| 317 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 318 | << Expr->getType() << CT; |
| 319 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 320 | } |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 321 | |
| 322 | if (!Expr->getType()->isPODType()) |
| 323 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 324 | << Expr->getType() << CT; |
| 325 | |
| 326 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 330 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 331 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 332 | /// routine returns the first non-arithmetic type found. The client is |
| 333 | /// responsible for emitting appropriate error diagnostics. |
| 334 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 335 | /// GCC. |
| 336 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 337 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 338 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 339 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 340 | |
| 341 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 342 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 343 | // For conversion purposes, we ignore any qualifiers. |
| 344 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 345 | QualType lhs = |
| 346 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
| 347 | QualType rhs = |
| 348 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 349 | |
| 350 | // If both types are identical, no conversion is needed. |
| 351 | if (lhs == rhs) |
| 352 | return lhs; |
| 353 | |
| 354 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 355 | // The caller can deal with this (e.g. pointer + int). |
| 356 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 357 | return lhs; |
| 358 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 359 | // Perform bitfield promotions. |
| 360 | QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context); |
| 361 | if (!LHSBitfieldPromoteTy.isNull()) |
| 362 | lhs = LHSBitfieldPromoteTy; |
| 363 | QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context); |
| 364 | if (!RHSBitfieldPromoteTy.isNull()) |
| 365 | rhs = RHSBitfieldPromoteTy; |
| 366 | |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 367 | QualType destType = UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 368 | if (!isCompAssign) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 369 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 370 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 371 | return destType; |
| 372 | } |
| 373 | |
| 374 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 375 | // Perform the usual unary conversions. We do this early so that |
| 376 | // integral promotions to "int" can allow us to exit early, in the |
| 377 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 378 | // qualifiers. For example, "const float" and "float" are |
| 379 | // equivalent. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 380 | if (lhs->isPromotableIntegerType()) |
| 381 | lhs = Context.IntTy; |
| 382 | else |
| 383 | lhs = lhs.getUnqualifiedType(); |
| 384 | if (rhs->isPromotableIntegerType()) |
| 385 | rhs = Context.IntTy; |
| 386 | else |
| 387 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 388 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 389 | // If both types are identical, no conversion is needed. |
| 390 | if (lhs == rhs) |
| 391 | return lhs; |
| 392 | |
| 393 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 394 | // The caller can deal with this (e.g. pointer + int). |
| 395 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 396 | return lhs; |
| 397 | |
| 398 | // At this point, we have two different arithmetic types. |
| 399 | |
| 400 | // Handle complex types first (C99 6.3.1.8p1). |
| 401 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 402 | // if we have an integer operand, the result is the complex type. |
| 403 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 404 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 405 | return lhs; |
| 406 | } |
| 407 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 408 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 409 | return rhs; |
| 410 | } |
| 411 | // This handles complex/complex, complex/float, or float/complex. |
| 412 | // When both operands are complex, the shorter operand is converted to the |
| 413 | // type of the longer, and that is the type of the result. This corresponds |
| 414 | // to what is done when combining two real floating-point operands. |
| 415 | // The fun begins when size promotion occur across type domains. |
| 416 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 417 | // floating-point type, the less precise type is converted, within it's |
| 418 | // real or complex domain, to the precision of the other type. For example, |
| 419 | // when combining a "long double" with a "double _Complex", the |
| 420 | // "double _Complex" is promoted to "long double _Complex". |
| 421 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 422 | |
| 423 | if (result > 0) { // The left side is bigger, convert rhs. |
| 424 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 425 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 426 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 427 | } |
| 428 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 429 | // domains match. This is a requirement for our implementation, C99 |
| 430 | // does not require this promotion. |
| 431 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 432 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 433 | return rhs; |
| 434 | } else { // handle "_Complex double, double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 435 | return lhs; |
| 436 | } |
| 437 | } |
| 438 | return lhs; // The domain/size match exactly. |
| 439 | } |
| 440 | // Now handle "real" floating types (i.e. float, double, long double). |
| 441 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 442 | // if we have an integer operand, the result is the real floating type. |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 443 | if (rhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 444 | // convert rhs to the lhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 445 | return lhs; |
| 446 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 447 | if (rhs->isComplexIntegerType()) { |
| 448 | // convert rhs to the complex floating point type. |
| 449 | return Context.getComplexType(lhs); |
| 450 | } |
| 451 | if (lhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 452 | // convert lhs to the rhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 453 | return rhs; |
| 454 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 455 | if (lhs->isComplexIntegerType()) { |
| 456 | // convert lhs to the complex floating point type. |
| 457 | return Context.getComplexType(rhs); |
| 458 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 459 | // We have two real floating types, float/complex combos were handled above. |
| 460 | // Convert the smaller operand to the bigger result. |
| 461 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 462 | if (result > 0) // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 463 | return lhs; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 464 | assert(result < 0 && "illegal float comparison"); |
| 465 | return rhs; // convert the lhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 466 | } |
| 467 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 468 | // Handle GCC complex int extension. |
| 469 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 470 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 471 | |
| 472 | if (lhsComplexInt && rhsComplexInt) { |
| 473 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 474 | rhsComplexInt->getElementType()) >= 0) |
| 475 | return lhs; // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 476 | return rhs; |
| 477 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 478 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 479 | return lhs; |
| 480 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 481 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 482 | return rhs; |
| 483 | } |
| 484 | } |
| 485 | // Finally, we have two differing integer types. |
| 486 | // The rules for this case are in C99 6.3.1.8 |
| 487 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 488 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 489 | rhsSigned = rhs->isSignedIntegerType(); |
| 490 | QualType destType; |
| 491 | if (lhsSigned == rhsSigned) { |
| 492 | // Same signedness; use the higher-ranked type |
| 493 | destType = compare >= 0 ? lhs : rhs; |
| 494 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 495 | // The unsigned type has greater than or equal rank to the |
| 496 | // signed type, so use the unsigned type |
| 497 | destType = lhsSigned ? rhs : lhs; |
| 498 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 499 | // The two types are different widths; if we are here, that |
| 500 | // means the signed type is larger than the unsigned type, so |
| 501 | // use the signed type. |
| 502 | destType = lhsSigned ? lhs : rhs; |
| 503 | } else { |
| 504 | // The signed type is higher-ranked than the unsigned type, |
| 505 | // but isn't actually any bigger (like unsigned int and long |
| 506 | // on most 32-bit systems). Use the unsigned type corresponding |
| 507 | // to the signed type. |
| 508 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 509 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 510 | return destType; |
| 511 | } |
| 512 | |
| 513 | //===----------------------------------------------------------------------===// |
| 514 | // Semantic Analysis for various Expression Types |
| 515 | //===----------------------------------------------------------------------===// |
| 516 | |
| 517 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 518 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 519 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 520 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 521 | /// multiple tokens. However, the common case is that StringToks points to one |
| 522 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 523 | /// |
| 524 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 525 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 526 | assert(NumStringToks && "Must have at least one string!"); |
| 527 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 528 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 529 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 530 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 531 | |
| 532 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 533 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 534 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 535 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 536 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 537 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 538 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 539 | |
| 540 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 541 | if (getLangOptions().CPlusPlus) |
| 542 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 543 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 544 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 545 | // the nul terminator character as well as the string length for pascal |
| 546 | // strings. |
| 547 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 548 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 549 | ArrayType::Normal, 0); |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 550 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 551 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 552 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 553 | Literal.GetStringLength(), |
| 554 | Literal.AnyWide, StrTy, |
| 555 | &StringTokLocs[0], |
| 556 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 559 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 560 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 561 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 562 | /// for values inside the block or for globals). |
| 563 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 564 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 565 | /// up-to-date. |
| 566 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 567 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 568 | ValueDecl *VD) { |
| 569 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 570 | // we wanted to. |
| 571 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 572 | return false; |
| 573 | |
| 574 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 575 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 576 | return false; |
| 577 | |
| 578 | // If this is a reference to an extern, static, or global variable, no need to |
| 579 | // snapshot it. |
| 580 | // FIXME: What about 'const' variables in C++? |
| 581 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 582 | if (!Var->hasLocalStorage()) |
| 583 | return false; |
| 584 | |
| 585 | // Blocks that have these can't be constant. |
| 586 | CurBlock->hasBlockDeclRefExprs = true; |
| 587 | |
| 588 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 589 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 590 | // be defined outside all of the current blocks (in which case the blocks do |
| 591 | // all get the bit). Walk the nesting chain. |
| 592 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 593 | NextBlock = NextBlock->PrevBlockInfo) { |
| 594 | // If we found the defining block for the variable, don't mark the block as |
| 595 | // having a reference outside it. |
| 596 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 597 | break; |
| 598 | |
| 599 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 600 | // a snapshot as well. |
| 601 | NextBlock->hasBlockDeclRefExprs = true; |
| 602 | } |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 603 | |
| 604 | return true; |
| 605 | } |
| 606 | |
| 607 | |
| 608 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 609 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 610 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 611 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 612 | /// 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] | 613 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 614 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 615 | IdentifierInfo &II, |
| 616 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 617 | const CXXScopeSpec *SS, |
| 618 | bool isAddressOfOperand) { |
| 619 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 620 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 623 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 624 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 625 | /// nested-name-specifier. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 626 | DeclRefExpr * |
| 627 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 628 | bool TypeDependent, bool ValueDependent, |
| 629 | const CXXScopeSpec *SS) { |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 630 | if (SS && !SS->isEmpty()) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 631 | return new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 632 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 633 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 634 | } else |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 635 | return new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 638 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 639 | /// variable corresponding to the anonymous union or struct whose type |
| 640 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 641 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 642 | RecordDecl *Record) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 643 | assert(Record->isAnonymousStructOrUnion() && |
| 644 | "Record must be an anonymous struct or union!"); |
| 645 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 646 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 647 | // operation rather than a slow walk through DeclContext's vector (which |
| 648 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 649 | DeclContext *Ctx = Record->getDeclContext(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 650 | for (DeclContext::decl_iterator D = Ctx->decls_begin(Context), |
| 651 | DEnd = Ctx->decls_end(Context); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 652 | D != DEnd; ++D) { |
| 653 | if (*D == Record) { |
| 654 | // The object for the anonymous struct/union directly |
| 655 | // follows its type in the list of declarations. |
| 656 | ++D; |
| 657 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 658 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 659 | return *D; |
| 660 | } |
| 661 | } |
| 662 | |
| 663 | assert(false && "Missing object for anonymous record"); |
| 664 | return 0; |
| 665 | } |
| 666 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 667 | /// \brief Given a field that represents a member of an anonymous |
| 668 | /// struct/union, build the path from that field's context to the |
| 669 | /// actual member. |
| 670 | /// |
| 671 | /// Construct the sequence of field member references we'll have to |
| 672 | /// perform to get to the field in the anonymous union/struct. The |
| 673 | /// list of members is built from the field outward, so traverse it |
| 674 | /// backwards to go from an object in the current context to the field |
| 675 | /// we found. |
| 676 | /// |
| 677 | /// \returns The variable from which the field access should begin, |
| 678 | /// for an anonymous struct/union that is not a member of another |
| 679 | /// class. Otherwise, returns NULL. |
| 680 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 681 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 682 | assert(Field->getDeclContext()->isRecord() && |
| 683 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 684 | && "Field must be stored inside an anonymous struct or union"); |
| 685 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 686 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 687 | VarDecl *BaseObject = 0; |
| 688 | DeclContext *Ctx = Field->getDeclContext(); |
| 689 | do { |
| 690 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 691 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 692 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 693 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 694 | else { |
| 695 | BaseObject = cast<VarDecl>(AnonObject); |
| 696 | break; |
| 697 | } |
| 698 | Ctx = Ctx->getParent(); |
| 699 | } while (Ctx->isRecord() && |
| 700 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 701 | |
| 702 | return BaseObject; |
| 703 | } |
| 704 | |
| 705 | Sema::OwningExprResult |
| 706 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 707 | FieldDecl *Field, |
| 708 | Expr *BaseObjectExpr, |
| 709 | SourceLocation OpLoc) { |
| 710 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 711 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
| 712 | AnonFields); |
| 713 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 714 | // Build the expression that refers to the base object, from |
| 715 | // which we will build a sequence of member references to each |
| 716 | // of the anonymous union objects and, eventually, the field we |
| 717 | // found via name lookup. |
| 718 | bool BaseObjectIsPointer = false; |
| 719 | unsigned ExtraQuals = 0; |
| 720 | if (BaseObject) { |
| 721 | // BaseObject is an anonymous struct/union variable (and is, |
| 722 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 723 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 724 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 725 | SourceLocation()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 726 | ExtraQuals |
| 727 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 728 | } else if (BaseObjectExpr) { |
| 729 | // The caller provided the base object expression. Determine |
| 730 | // whether its a pointer and whether it adds any qualifiers to the |
| 731 | // anonymous struct/union fields we're looking into. |
| 732 | QualType ObjectType = BaseObjectExpr->getType(); |
| 733 | if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) { |
| 734 | BaseObjectIsPointer = true; |
| 735 | ObjectType = ObjectPtr->getPointeeType(); |
| 736 | } |
| 737 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 738 | } else { |
| 739 | // We've found a member of an anonymous struct/union that is |
| 740 | // inside a non-anonymous struct/union, so in a well-formed |
| 741 | // program our base object expression is "this". |
| 742 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 743 | if (!MD->isStatic()) { |
| 744 | QualType AnonFieldType |
| 745 | = Context.getTagDeclType( |
| 746 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 747 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 748 | if ((Context.getCanonicalType(AnonFieldType) |
| 749 | == Context.getCanonicalType(ThisType)) || |
| 750 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 751 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 752 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 753 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 754 | BaseObjectIsPointer = true; |
| 755 | } |
| 756 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 757 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 758 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 759 | } |
| 760 | ExtraQuals = MD->getTypeQualifiers(); |
| 761 | } |
| 762 | |
| 763 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 764 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 765 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | // Build the implicit member references to the field of the |
| 769 | // anonymous struct/union. |
| 770 | Expr *Result = BaseObjectExpr; |
| 771 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 772 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 773 | FI != FIEnd; ++FI) { |
| 774 | QualType MemberType = (*FI)->getType(); |
| 775 | if (!(*FI)->isMutable()) { |
| 776 | unsigned combinedQualifiers |
| 777 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 778 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 779 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 780 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 781 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 782 | BaseObjectIsPointer = false; |
| 783 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 784 | } |
| 785 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 786 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 787 | } |
| 788 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 789 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 790 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 791 | /// performs lookup on that name and returns an expression that refers |
| 792 | /// to that name. This routine isn't directly called from the parser, |
| 793 | /// because the parser doesn't know about DeclarationName. Rather, |
| 794 | /// this routine is called by ActOnIdentifierExpr, |
| 795 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 796 | /// which form the DeclarationName from the corresponding syntactic |
| 797 | /// forms. |
| 798 | /// |
| 799 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 800 | /// function call context. LookupCtx is only used for a C++ |
| 801 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 802 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 803 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 804 | /// isAddressOfOperand means that this expression is the direct operand |
| 805 | /// of an address-of operator. This matters because this is the only |
| 806 | /// situation where a qualified name referencing a non-static member may |
| 807 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 808 | Sema::OwningExprResult |
| 809 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 810 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 811 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 812 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 813 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 814 | if (SS && SS->isInvalid()) |
| 815 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 816 | |
| 817 | // C++ [temp.dep.expr]p3: |
| 818 | // An id-expression is type-dependent if it contains: |
| 819 | // -- a nested-name-specifier that contains a class-name that |
| 820 | // names a dependent type. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 821 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 822 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 823 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 824 | Loc, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 825 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()))); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 826 | } |
| 827 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 828 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 829 | false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 830 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 831 | if (Lookup.isAmbiguous()) { |
| 832 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 833 | SS && SS->isSet() ? SS->getRange() |
| 834 | : SourceRange()); |
| 835 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | NamedDecl *D = Lookup.getAsDecl(); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 839 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 840 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 841 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 842 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 843 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 844 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 845 | // 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] | 846 | // found a decl, but that decl is outside the current instance method (i.e. |
| 847 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 848 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 849 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 850 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 851 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 852 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II, |
| 853 | ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 854 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 855 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 856 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 857 | |
| 858 | // If we're referencing an invalid decl, just return this as a silent |
| 859 | // error node. The error diagnostic was already emitted on the decl. |
| 860 | if (IV->isInvalidDecl()) |
| 861 | return ExprError(); |
| 862 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 863 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 864 | // If a class method attemps to use a free standing ivar, this is |
| 865 | // an error. |
| 866 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 867 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 868 | << IV->getDeclName()); |
| 869 | // If a class method uses a global variable, even if an ivar with |
| 870 | // same name exists, use the global. |
| 871 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 872 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 873 | ClassDeclared != IFace) |
| 874 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 875 | // FIXME: This should use a new expr for a direct reference, don't |
| 876 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 877 | IdentifierInfo &II = Context.Idents.get("self"); |
| 878 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false); |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 879 | return Owned(new (Context) |
| 880 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 881 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 882 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 883 | } |
| 884 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 885 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 886 | // We should warn if a local variable hides an ivar. |
| 887 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 888 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 889 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II, |
| 890 | ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 891 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 892 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 893 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 894 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 895 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 896 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 897 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 898 | QualType T; |
| 899 | |
| 900 | if (getCurMethodDecl()->isInstanceMethod()) |
| 901 | T = Context.getPointerType(Context.getObjCInterfaceType( |
| 902 | getCurMethodDecl()->getClassInterface())); |
| 903 | else |
| 904 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 905 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 906 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 907 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 908 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 909 | // Determine whether this name might be a candidate for |
| 910 | // argument-dependent lookup. |
| 911 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 912 | HasTrailingLParen; |
| 913 | |
| 914 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 915 | // We've seen something of the form |
| 916 | // |
| 917 | // identifier( |
| 918 | // |
| 919 | // and we did not find any entity by the name |
| 920 | // "identifier". However, this identifier is still subject to |
| 921 | // argument-dependent lookup, so keep track of the name. |
| 922 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 923 | Context.OverloadTy, |
| 924 | Loc)); |
| 925 | } |
| 926 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 927 | if (D == 0) { |
| 928 | // Otherwise, this could be an implicitly declared function reference (legal |
| 929 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 930 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 931 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 932 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 933 | else { |
| 934 | // If this name wasn't predeclared and if this is not a function call, |
| 935 | // diagnose the problem. |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 936 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 937 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 938 | << Name << SS->getRange()); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 939 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 940 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 941 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 942 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 943 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 944 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 945 | } |
| 946 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 947 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 948 | // If this is an expression of the form &Class::member, don't build an |
| 949 | // implicit member ref, because we want a pointer to the member in general, |
| 950 | // not any specific instance's member. |
| 951 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 952 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 953 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 954 | QualType DType; |
| 955 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 956 | DType = FD->getType().getNonReferenceType(); |
| 957 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 958 | DType = Method->getType(); |
| 959 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 960 | DType = Context.OverloadTy; |
| 961 | } |
| 962 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 963 | if (!DType.isNull()) { |
| 964 | // The pointer is type- and value-dependent if it points into something |
| 965 | // dependent. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 966 | bool Dependent = DC->isDependentContext(); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 967 | return Owned(BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS)); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | } |
| 971 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 972 | // We may have found a field within an anonymous union or struct |
| 973 | // (C++ [class.union]). |
| 974 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 975 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 976 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 977 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 978 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 979 | if (!MD->isStatic()) { |
| 980 | // C++ [class.mfct.nonstatic]p2: |
| 981 | // [...] if name lookup (3.4.1) resolves the name in the |
| 982 | // id-expression to a nonstatic nontype member of class X or of |
| 983 | // a base class of X, the id-expression is transformed into a |
| 984 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 985 | // as the postfix-expression to the left of the '.' operator. |
| 986 | DeclContext *Ctx = 0; |
| 987 | QualType MemberType; |
| 988 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 989 | Ctx = FD->getDeclContext(); |
| 990 | MemberType = FD->getType(); |
| 991 | |
| 992 | if (const ReferenceType *RefType = MemberType->getAsReferenceType()) |
| 993 | MemberType = RefType->getPointeeType(); |
| 994 | else if (!FD->isMutable()) { |
| 995 | unsigned combinedQualifiers |
| 996 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 997 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 998 | } |
| 999 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 1000 | if (!Method->isStatic()) { |
| 1001 | Ctx = Method->getParent(); |
| 1002 | MemberType = Method->getType(); |
| 1003 | } |
| 1004 | } else if (OverloadedFunctionDecl *Ovl |
| 1005 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 1006 | for (OverloadedFunctionDecl::function_iterator |
| 1007 | Func = Ovl->function_begin(), |
| 1008 | FuncEnd = Ovl->function_end(); |
| 1009 | Func != FuncEnd; ++Func) { |
| 1010 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 1011 | if (!DMethod->isStatic()) { |
| 1012 | Ctx = Ovl->getDeclContext(); |
| 1013 | MemberType = Context.OverloadTy; |
| 1014 | break; |
| 1015 | } |
| 1016 | } |
| 1017 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1018 | |
| 1019 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1020 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 1021 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 1022 | if ((Context.getCanonicalType(CtxType) |
| 1023 | == Context.getCanonicalType(ThisType)) || |
| 1024 | IsDerivedFrom(ThisType, CtxType)) { |
| 1025 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1026 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1027 | MD->getThisType(Context)); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1028 | return Owned(new (Context) MemberExpr(This, true, D, |
Eli Friedman | 7252713 | 2009-04-29 17:56:47 +0000 | [diff] [blame] | 1029 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1030 | } |
| 1031 | } |
| 1032 | } |
| 1033 | } |
| 1034 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1035 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1036 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1037 | if (MD->isStatic()) |
| 1038 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1039 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 1040 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1043 | // Any other ways we could have found the field in a well-formed |
| 1044 | // program would have been turned into implicit member expressions |
| 1045 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1046 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 1047 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1048 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1049 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1050 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1051 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1052 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1053 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1054 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1055 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1056 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1057 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 1058 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1059 | return Owned(BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 1060 | false, false, SS)); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 1061 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
| 1062 | return Owned(BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 1063 | false, false, SS)); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1064 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1065 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1066 | // Check whether this declaration can be used. Note that we suppress |
| 1067 | // this check when we're going to perform argument-dependent lookup |
| 1068 | // on this function name, because this might not be the function |
| 1069 | // that overload resolution actually selects. |
| 1070 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 1071 | return ExprError(); |
| 1072 | |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1073 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 1074 | // Warn about constructs like: |
| 1075 | // if (void *X = foo()) { ... } else { X }. |
| 1076 | // In the else block, the pointer is always false. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 1077 | |
| 1078 | // FIXME: In a template instantiation, we don't have scope |
| 1079 | // information to check this property. |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1080 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 1081 | Scope *CheckS = S; |
| 1082 | while (CheckS) { |
| 1083 | if (CheckS->isWithinElse() && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1084 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1085 | if (Var->getType()->isBooleanType()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1086 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 1087 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1088 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1089 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 1090 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1091 | break; |
| 1092 | } |
| 1093 | |
| 1094 | // Move up one more control parent to check again. |
| 1095 | CheckS = CheckS->getControlParent(); |
| 1096 | if (CheckS) |
| 1097 | CheckS = CheckS->getParent(); |
| 1098 | } |
| 1099 | } |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 1100 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(VD)) { |
| 1101 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 1102 | // C99 DR 316 says that, if a function type comes from a |
| 1103 | // function definition (without a prototype), that type is only |
| 1104 | // used for checking compatibility. Therefore, when referencing |
| 1105 | // the function, we pretend that we don't have the full function |
| 1106 | // type. |
| 1107 | QualType T = Func->getType(); |
| 1108 | QualType NoProtoType = T; |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 1109 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 1110 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 1111 | return Owned(BuildDeclRefExpr(VD, NoProtoType, Loc, false, false, SS)); |
| 1112 | } |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1113 | } |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1114 | |
| 1115 | // Only create DeclRefExpr's for valid Decl's. |
| 1116 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1117 | return ExprError(); |
| 1118 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1119 | // If the identifier reference is inside a block, and it refers to a value |
| 1120 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1121 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1122 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1123 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1124 | // We do not do this for things like enum constants, global variables, etc, |
| 1125 | // as they do not get snapshotted. |
| 1126 | // |
| 1127 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1128 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1129 | // The BlocksAttr indicates the variable is bound by-reference. |
| 1130 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1131 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1132 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1133 | // Variable will be bound by-copy, make it const within the closure. |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1134 | ExprTy.addConst(); |
| 1135 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1136 | } |
| 1137 | // If this reference is not in a block or if the referenced variable is |
| 1138 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1139 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1140 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1141 | bool ValueDependent = false; |
| 1142 | if (getLangOptions().CPlusPlus) { |
| 1143 | // C++ [temp.dep.expr]p3: |
| 1144 | // An id-expression is type-dependent if it contains: |
| 1145 | // - an identifier that was declared with a dependent type, |
| 1146 | if (VD->getType()->isDependentType()) |
| 1147 | TypeDependent = true; |
| 1148 | // - FIXME: a template-id that is dependent, |
| 1149 | // - a conversion-function-id that specifies a dependent type, |
| 1150 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1151 | Name.getCXXNameType()->isDependentType()) |
| 1152 | TypeDependent = true; |
| 1153 | // - a nested-name-specifier that contains a class-name that |
| 1154 | // names a dependent type. |
| 1155 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1156 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1157 | DC; DC = DC->getParent()) { |
| 1158 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1159 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1160 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1161 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1162 | TypeDependent = true; |
| 1163 | break; |
| 1164 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1165 | } |
| 1166 | } |
| 1167 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1168 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1169 | // C++ [temp.dep.constexpr]p2: |
| 1170 | // |
| 1171 | // An identifier is value-dependent if it is: |
| 1172 | // - a name declared with a dependent type, |
| 1173 | if (TypeDependent) |
| 1174 | ValueDependent = true; |
| 1175 | // - the name of a non-type template parameter, |
| 1176 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1177 | ValueDependent = true; |
| 1178 | // - a constant with integral or enumeration type and is |
| 1179 | // initialized with an expression that is value-dependent |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame^] | 1180 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
| 1181 | if (Dcl->getType().getCVRQualifiers() == QualType::Const && |
| 1182 | Dcl->getInit()) { |
| 1183 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1184 | } |
| 1185 | } |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1186 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1187 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1188 | return Owned(BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1189 | TypeDependent, ValueDependent, SS)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1190 | } |
| 1191 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1192 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1193 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1194 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1195 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1196 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1197 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1198 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1199 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1200 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1201 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1202 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1203 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1204 | // string. |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1205 | unsigned Length; |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 1206 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1207 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1208 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1209 | Length = MD->getSynthesizedMethodSize(); |
| 1210 | else { |
| 1211 | Diag(Loc, diag::ext_predef_outside_function); |
| 1212 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1213 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1214 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1215 | |
| 1216 | |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1217 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1218 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1219 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1220 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1221 | } |
| 1222 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1223 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1224 | llvm::SmallString<16> CharBuffer; |
| 1225 | CharBuffer.resize(Tok.getLength()); |
| 1226 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1227 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1228 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1229 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1230 | Tok.getLocation(), PP); |
| 1231 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1232 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1233 | |
| 1234 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1235 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1236 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1237 | Literal.isWide(), |
| 1238 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1239 | } |
| 1240 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1241 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1242 | // 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] | 1243 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1244 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1245 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1246 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1247 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1248 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1249 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1250 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1251 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1252 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1253 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1254 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1255 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1256 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1257 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1258 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1259 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1260 | Tok.getLocation(), PP); |
| 1261 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1262 | return ExprError(); |
| 1263 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1264 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1265 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1266 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1267 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1268 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1269 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1270 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1271 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1272 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1273 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1274 | |
| 1275 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1276 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1277 | // isExact will be set by GetFloatValue(). |
| 1278 | bool isExact = false; |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1279 | Res = new (Context) FloatingLiteral(Literal.GetFloatValue(Format, &isExact), |
| 1280 | &isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1281 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1282 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1283 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1284 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1285 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1286 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1287 | // long long is a C99 feature. |
| 1288 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1289 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1290 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1291 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1292 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1293 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1294 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1295 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1296 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1297 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1298 | Ty = Context.UnsignedLongLongTy; |
| 1299 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1300 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1301 | } else { |
| 1302 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1303 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1304 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1305 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1306 | // be an unsigned int. |
| 1307 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1308 | |
| 1309 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1310 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1311 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1312 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1313 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1314 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1315 | // Does it fit in a unsigned int? |
| 1316 | if (ResultVal.isIntN(IntSize)) { |
| 1317 | // Does it fit in a signed int? |
| 1318 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1319 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1320 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1321 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1322 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1323 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1324 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1325 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1326 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1327 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1328 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1329 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1330 | // Does it fit in a unsigned long? |
| 1331 | if (ResultVal.isIntN(LongSize)) { |
| 1332 | // Does it fit in a signed long? |
| 1333 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1334 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1335 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1336 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1337 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1338 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1339 | } |
| 1340 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1341 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1342 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1343 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1344 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1345 | // Does it fit in a unsigned long long? |
| 1346 | if (ResultVal.isIntN(LongLongSize)) { |
| 1347 | // Does it fit in a signed long long? |
| 1348 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1349 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1350 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1351 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1352 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1353 | } |
| 1354 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1355 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1356 | // If we still couldn't decide a type, we probably have something that |
| 1357 | // 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] | 1358 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1359 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1360 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1361 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1362 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1363 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1364 | if (ResultVal.getBitWidth() != Width) |
| 1365 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1366 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1367 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1368 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1369 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1370 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1371 | if (Literal.isImaginary) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1372 | Res = new (Context) ImaginaryLiteral(Res, |
| 1373 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1374 | |
| 1375 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1378 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1379 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1380 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1381 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1382 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1383 | } |
| 1384 | |
| 1385 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1386 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1387 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1388 | SourceLocation OpLoc, |
| 1389 | const SourceRange &ExprRange, |
| 1390 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1391 | if (exprType->isDependentType()) |
| 1392 | return false; |
| 1393 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1394 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1395 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1396 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1397 | if (isSizeof) |
| 1398 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1399 | return false; |
| 1400 | } |
| 1401 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1402 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1403 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1404 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1405 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1406 | return false; |
| 1407 | } |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1408 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1409 | if (RequireCompleteType(OpLoc, exprType, |
| 1410 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1411 | diag::err_alignof_incomplete_type, |
| 1412 | ExprRange)) |
| 1413 | return true; |
| 1414 | |
| 1415 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1416 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1417 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1418 | << exprType << isSizeof << ExprRange; |
| 1419 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1422 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1423 | } |
| 1424 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1425 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1426 | const SourceRange &ExprRange) { |
| 1427 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1428 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1429 | // alignof decl is always ok. |
| 1430 | if (isa<DeclRefExpr>(E)) |
| 1431 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1432 | |
| 1433 | // Cannot know anything else if the expression is dependent. |
| 1434 | if (E->isTypeDependent()) |
| 1435 | return false; |
| 1436 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1437 | if (E->getBitField()) { |
| 1438 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1439 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1440 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1441 | |
| 1442 | // Alignment of a field access is always okay, so long as it isn't a |
| 1443 | // bit-field. |
| 1444 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
| 1445 | if (dyn_cast<FieldDecl>(ME->getMemberDecl())) |
| 1446 | return false; |
| 1447 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1448 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1449 | } |
| 1450 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1451 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1452 | Action::OwningExprResult |
| 1453 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1454 | bool isSizeOf, SourceRange R) { |
| 1455 | if (T.isNull()) |
| 1456 | return ExprError(); |
| 1457 | |
| 1458 | if (!T->isDependentType() && |
| 1459 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1460 | return ExprError(); |
| 1461 | |
| 1462 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1463 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1464 | Context.getSizeType(), OpLoc, |
| 1465 | R.getEnd())); |
| 1466 | } |
| 1467 | |
| 1468 | /// \brief Build a sizeof or alignof expression given an expression |
| 1469 | /// operand. |
| 1470 | Action::OwningExprResult |
| 1471 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1472 | bool isSizeOf, SourceRange R) { |
| 1473 | // Verify that the operand is valid. |
| 1474 | bool isInvalid = false; |
| 1475 | if (E->isTypeDependent()) { |
| 1476 | // Delay type-checking for type-dependent expressions. |
| 1477 | } else if (!isSizeOf) { |
| 1478 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1479 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1480 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1481 | isInvalid = true; |
| 1482 | } else { |
| 1483 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1484 | } |
| 1485 | |
| 1486 | if (isInvalid) |
| 1487 | return ExprError(); |
| 1488 | |
| 1489 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1490 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1491 | Context.getSizeType(), OpLoc, |
| 1492 | R.getEnd())); |
| 1493 | } |
| 1494 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1495 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1496 | /// the same for @c alignof and @c __alignof |
| 1497 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1498 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1499 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1500 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1501 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1502 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1503 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1504 | if (isType) { |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1505 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1506 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1507 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1508 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1509 | // Get the end location. |
| 1510 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1511 | Action::OwningExprResult Result |
| 1512 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1513 | |
| 1514 | if (Result.isInvalid()) |
| 1515 | DeleteExpr(ArgEx); |
| 1516 | |
| 1517 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1520 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1521 | if (V->isTypeDependent()) |
| 1522 | return Context.DependentTy; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1523 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1524 | // These operators return the element type of a complex type. |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1525 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1526 | return CT->getElementType(); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1527 | |
| 1528 | // Otherwise they pass through real integer and floating point types here. |
| 1529 | if (V->getType()->isArithmeticType()) |
| 1530 | return V->getType(); |
| 1531 | |
| 1532 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1533 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1534 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1535 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1539 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1540 | Action::OwningExprResult |
| 1541 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1542 | tok::TokenKind Kind, ExprArg Input) { |
| 1543 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1544 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1545 | UnaryOperator::Opcode Opc; |
| 1546 | switch (Kind) { |
| 1547 | default: assert(0 && "Unknown unary op!"); |
| 1548 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1549 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1550 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1551 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1552 | if (getLangOptions().CPlusPlus && |
| 1553 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1554 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1555 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1556 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1557 | |
| 1558 | // C++ [over.inc]p1: |
| 1559 | // |
| 1560 | // [...] If the function is a member function with one |
| 1561 | // parameter (which shall be of type int) or a non-member |
| 1562 | // function with two parameters (the second of which shall be |
| 1563 | // of type int), it defines the postfix increment operator ++ |
| 1564 | // for objects of that type. When the postfix increment is |
| 1565 | // called as a result of using the ++ operator, the int |
| 1566 | // argument will have value zero. |
| 1567 | Expr *Args[2] = { |
| 1568 | Arg, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1569 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1570 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1571 | }; |
| 1572 | |
| 1573 | // Build the candidate set for overloading |
| 1574 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1575 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1576 | |
| 1577 | // Perform overload resolution. |
| 1578 | OverloadCandidateSet::iterator Best; |
| 1579 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1580 | case OR_Success: { |
| 1581 | // We found a built-in operator or an overloaded operator. |
| 1582 | FunctionDecl *FnDecl = Best->Function; |
| 1583 | |
| 1584 | if (FnDecl) { |
| 1585 | // We matched an overloaded operator. Build a call to that |
| 1586 | // operator. |
| 1587 | |
| 1588 | // Convert the arguments. |
| 1589 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1590 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1591 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1592 | } else { |
| 1593 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1594 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1595 | FnDecl->getParamDecl(0)->getType(), |
| 1596 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1597 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1601 | QualType ResultTy |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1602 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1603 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1604 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1605 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1606 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1607 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1608 | UsualUnaryConversions(FnExpr); |
| 1609 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1610 | Input.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1611 | Args[0] = Arg; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1612 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1613 | Args, 2, ResultTy, |
| 1614 | OpLoc)); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1615 | } else { |
| 1616 | // We matched a built-in operator. Convert the arguments, then |
| 1617 | // break out so that we will build the appropriate built-in |
| 1618 | // operator node. |
| 1619 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1620 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1621 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1622 | |
| 1623 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1624 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1625 | } |
| 1626 | |
| 1627 | case OR_No_Viable_Function: |
| 1628 | // No viable function; fall through to handling this as a |
| 1629 | // built-in operator, which will produce an error message for us. |
| 1630 | break; |
| 1631 | |
| 1632 | case OR_Ambiguous: |
| 1633 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1634 | << UnaryOperator::getOpcodeStr(Opc) |
| 1635 | << Arg->getSourceRange(); |
| 1636 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1637 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1638 | |
| 1639 | case OR_Deleted: |
| 1640 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1641 | << Best->Function->isDeleted() |
| 1642 | << UnaryOperator::getOpcodeStr(Opc) |
| 1643 | << Arg->getSourceRange(); |
| 1644 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1645 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1646 | } |
| 1647 | |
| 1648 | // Either we found no viable overloaded operator or we matched a |
| 1649 | // built-in operator. In either case, fall through to trying to |
| 1650 | // build a built-in operation. |
| 1651 | } |
| 1652 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 1653 | QualType result = CheckIncrementDecrementOperand(Arg, OpLoc, |
| 1654 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1655 | if (result.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1656 | return ExprError(); |
| 1657 | Input.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1658 | return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1661 | Action::OwningExprResult |
| 1662 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1663 | ExprArg Idx, SourceLocation RLoc) { |
| 1664 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1665 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1666 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1667 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1668 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1669 | Base.release(); |
| 1670 | Idx.release(); |
| 1671 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1672 | Context.DependentTy, RLoc)); |
| 1673 | } |
| 1674 | |
| 1675 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1676 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1677 | LHSExp->getType()->isEnumeralType() || |
| 1678 | RHSExp->getType()->isRecordType() || |
| 1679 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1680 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1681 | // to the candidate set. |
| 1682 | OverloadCandidateSet CandidateSet; |
| 1683 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1684 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1685 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1686 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1687 | // Perform overload resolution. |
| 1688 | OverloadCandidateSet::iterator Best; |
| 1689 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1690 | case OR_Success: { |
| 1691 | // We found a built-in operator or an overloaded operator. |
| 1692 | FunctionDecl *FnDecl = Best->Function; |
| 1693 | |
| 1694 | if (FnDecl) { |
| 1695 | // We matched an overloaded operator. Build a call to that |
| 1696 | // operator. |
| 1697 | |
| 1698 | // Convert the arguments. |
| 1699 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1700 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1701 | PerformCopyInitialization(RHSExp, |
| 1702 | FnDecl->getParamDecl(0)->getType(), |
| 1703 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1704 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1705 | } else { |
| 1706 | // Convert the arguments. |
| 1707 | if (PerformCopyInitialization(LHSExp, |
| 1708 | FnDecl->getParamDecl(0)->getType(), |
| 1709 | "passing") || |
| 1710 | PerformCopyInitialization(RHSExp, |
| 1711 | FnDecl->getParamDecl(1)->getType(), |
| 1712 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1713 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1714 | } |
| 1715 | |
| 1716 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1717 | QualType ResultTy |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1718 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1719 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1720 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1721 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1722 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1723 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1724 | UsualUnaryConversions(FnExpr); |
| 1725 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1726 | Base.release(); |
| 1727 | Idx.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1728 | Args[0] = LHSExp; |
| 1729 | Args[1] = RHSExp; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1730 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1731 | FnExpr, Args, 2, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1732 | ResultTy, LLoc)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1733 | } else { |
| 1734 | // We matched a built-in operator. Convert the arguments, then |
| 1735 | // break out so that we will build the appropriate built-in |
| 1736 | // operator node. |
| 1737 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1738 | "passing") || |
| 1739 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1740 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1741 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1742 | |
| 1743 | break; |
| 1744 | } |
| 1745 | } |
| 1746 | |
| 1747 | case OR_No_Viable_Function: |
| 1748 | // No viable function; fall through to handling this as a |
| 1749 | // built-in operator, which will produce an error message for us. |
| 1750 | break; |
| 1751 | |
| 1752 | case OR_Ambiguous: |
| 1753 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1754 | << "[]" |
| 1755 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1756 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1757 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1758 | |
| 1759 | case OR_Deleted: |
| 1760 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1761 | << Best->Function->isDeleted() |
| 1762 | << "[]" |
| 1763 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1764 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1765 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1766 | } |
| 1767 | |
| 1768 | // Either we found no viable overloaded operator or we matched a |
| 1769 | // built-in operator. In either case, fall through to trying to |
| 1770 | // build a built-in operation. |
| 1771 | } |
| 1772 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1773 | // Perform default conversions. |
| 1774 | DefaultFunctionArrayConversion(LHSExp); |
| 1775 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1776 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1777 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1778 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1779 | // 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] | 1780 | // 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] | 1781 | // 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] | 1782 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1783 | Expr *BaseExpr, *IndexExpr; |
| 1784 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1785 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1786 | BaseExpr = LHSExp; |
| 1787 | IndexExpr = RHSExp; |
| 1788 | ResultType = Context.DependentTy; |
| 1789 | } else if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1790 | BaseExpr = LHSExp; |
| 1791 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1792 | ResultType = PTy->getPointeeType(); |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1793 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1794 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1795 | BaseExpr = RHSExp; |
| 1796 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1797 | ResultType = PTy->getPointeeType(); |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1798 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1799 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1800 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1801 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1802 | // FIXME: need to deal with const... |
| 1803 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1804 | } else if (LHSTy->isArrayType()) { |
| 1805 | // If we see an array that wasn't promoted by |
| 1806 | // DefaultFunctionArrayConversion, it must be an array that |
| 1807 | // wasn't promoted because of the C90 rule that doesn't |
| 1808 | // allow promoting non-lvalue arrays. Warn, then |
| 1809 | // force the promotion here. |
| 1810 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1811 | LHSExp->getSourceRange(); |
| 1812 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); |
| 1813 | LHSTy = LHSExp->getType(); |
| 1814 | |
| 1815 | BaseExpr = LHSExp; |
| 1816 | IndexExpr = RHSExp; |
| 1817 | ResultType = LHSTy->getAsPointerType()->getPointeeType(); |
| 1818 | } else if (RHSTy->isArrayType()) { |
| 1819 | // Same as previous, except for 123[f().a] case |
| 1820 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1821 | RHSExp->getSourceRange(); |
| 1822 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); |
| 1823 | RHSTy = RHSExp->getType(); |
| 1824 | |
| 1825 | BaseExpr = RHSExp; |
| 1826 | IndexExpr = LHSExp; |
| 1827 | ResultType = RHSTy->getAsPointerType()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1828 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1829 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1830 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1831 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1832 | // C99 6.5.2.1p1 |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1833 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1834 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1835 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1836 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1837 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1838 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1839 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1840 | // incomplete types are not object types. |
| 1841 | if (ResultType->isFunctionType()) { |
| 1842 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1843 | << ResultType << BaseExpr->getSourceRange(); |
| 1844 | return ExprError(); |
| 1845 | } |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1846 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1847 | if (!ResultType->isDependentType() && |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1848 | RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1849 | BaseExpr->getSourceRange())) |
| 1850 | return ExprError(); |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1851 | |
| 1852 | // Diagnose bad cases where we step over interface counts. |
| 1853 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1854 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1855 | << ResultType << BaseExpr->getSourceRange(); |
| 1856 | return ExprError(); |
| 1857 | } |
| 1858 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1859 | Base.release(); |
| 1860 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1861 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1862 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1863 | } |
| 1864 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1865 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1866 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1867 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1868 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1869 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1870 | // The vector accessor can't exceed the number of elements. |
| 1871 | const char *compStr = CompName.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1872 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1873 | // 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] | 1874 | // special names that indicate a subset of exactly half the elements are |
| 1875 | // to be selected. |
| 1876 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1877 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1878 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1879 | // indicating that it is a string of hex values to be used as vector indices. |
| 1880 | bool HexSwizzle = *compStr == 's'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1881 | |
| 1882 | // Check that we've found one of the special components, or that the component |
| 1883 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1884 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1885 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1886 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1887 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1888 | do |
| 1889 | compStr++; |
| 1890 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1891 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1892 | do |
| 1893 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1894 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1895 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1896 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1897 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1898 | // We didn't get to the end of the string. This means the component names |
| 1899 | // 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] | 1900 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1901 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1902 | return QualType(); |
| 1903 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1904 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1905 | // Ensure no component accessor exceeds the width of the vector type it |
| 1906 | // operates on. |
| 1907 | if (!HalvingSwizzle) { |
| 1908 | compStr = CompName.getName(); |
| 1909 | |
| 1910 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1911 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1912 | |
| 1913 | while (*compStr) { |
| 1914 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1915 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1916 | << baseType << SourceRange(CompLoc); |
| 1917 | return QualType(); |
| 1918 | } |
| 1919 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1920 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1921 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1922 | // If this is a halving swizzle, verify that the base type has an even |
| 1923 | // number of elements. |
| 1924 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1925 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1926 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1927 | return QualType(); |
| 1928 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1929 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1930 | // 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] | 1931 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1932 | // 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] | 1933 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1934 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1935 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 1936 | : CompName.getLength(); |
| 1937 | if (HexSwizzle) |
| 1938 | CompSize--; |
| 1939 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1940 | if (CompSize == 1) |
| 1941 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1942 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1943 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1944 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1945 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1946 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1947 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1948 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1949 | } |
| 1950 | 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] | 1951 | } |
| 1952 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1953 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 1954 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1955 | const Selector &Sel, |
| 1956 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1957 | |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1958 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Context, &Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1959 | return PD; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1960 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Context, Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1961 | return OMD; |
| 1962 | |
| 1963 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1964 | E = PDecl->protocol_end(); I != E; ++I) { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1965 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
| 1966 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1967 | return D; |
| 1968 | } |
| 1969 | return 0; |
| 1970 | } |
| 1971 | |
| 1972 | static Decl *FindGetterNameDecl(const ObjCQualifiedIdType *QIdTy, |
| 1973 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1974 | const Selector &Sel, |
| 1975 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1976 | // Check protocols on qualified interfaces. |
| 1977 | Decl *GDecl = 0; |
| 1978 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1979 | E = QIdTy->qual_end(); I != E; ++I) { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1980 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, &Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1981 | GDecl = PD; |
| 1982 | break; |
| 1983 | } |
| 1984 | // Also must look for a getter name which uses property syntax. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1985 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Context, Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1986 | GDecl = OMD; |
| 1987 | break; |
| 1988 | } |
| 1989 | } |
| 1990 | if (!GDecl) { |
| 1991 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1992 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1993 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1994 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1995 | if (GDecl) |
| 1996 | return GDecl; |
| 1997 | } |
| 1998 | } |
| 1999 | return GDecl; |
| 2000 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 2001 | |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2002 | /// FindMethodInNestedImplementations - Look up a method in current and |
| 2003 | /// all base class implementations. |
| 2004 | /// |
| 2005 | ObjCMethodDecl *Sema::FindMethodInNestedImplementations( |
| 2006 | const ObjCInterfaceDecl *IFace, |
| 2007 | const Selector &Sel) { |
| 2008 | ObjCMethodDecl *Method = 0; |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 2009 | if (ObjCImplementationDecl *ImpDecl |
| 2010 | = LookupObjCImplementation(IFace->getIdentifier())) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2011 | Method = ImpDecl->getInstanceMethod(Context, Sel); |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2012 | |
| 2013 | if (!Method && IFace->getSuperClass()) |
| 2014 | return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel); |
| 2015 | return Method; |
| 2016 | } |
| 2017 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2018 | Action::OwningExprResult |
| 2019 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 2020 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2021 | IdentifierInfo &Member, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2022 | DeclPtrTy ObjCImpDecl) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2023 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2024 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 2025 | |
| 2026 | // Perform default conversions. |
| 2027 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2028 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2029 | QualType BaseType = BaseExpr->getType(); |
| 2030 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2031 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2032 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2033 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2034 | if (OpKind == tok::arrow) { |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2035 | if (BaseType->isDependentType()) |
Douglas Gregor | 1c0ca59 | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2036 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2037 | BaseExpr, true, |
| 2038 | OpLoc, |
| 2039 | DeclarationName(&Member), |
| 2040 | MemberLoc)); |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2041 | else if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2042 | BaseType = PT->getPointeeType(); |
Douglas Gregor | 8ba1074 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 2043 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2044 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 2045 | MemberLoc, Member)); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2046 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2047 | return ExprError(Diag(MemberLoc, |
| 2048 | diag::err_typecheck_member_reference_arrow) |
| 2049 | << BaseType << BaseExpr->getSourceRange()); |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2050 | } else { |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2051 | if (BaseType->isDependentType()) { |
| 2052 | // Require that the base type isn't a pointer type |
| 2053 | // (so we'll report an error for) |
| 2054 | // T* t; |
| 2055 | // t.f; |
| 2056 | // |
| 2057 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2058 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2059 | // allows this, while still reporting an error if T is a struct pointer. |
| 2060 | const PointerType *PT = BaseType->getAsPointerType(); |
| 2061 | |
| 2062 | if (!PT || (getLangOptions().ObjC1 && |
| 2063 | !PT->getPointeeType()->isRecordType())) |
Douglas Gregor | 1c0ca59 | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2064 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2065 | BaseExpr, false, |
| 2066 | OpLoc, |
| 2067 | DeclarationName(&Member), |
| 2068 | MemberLoc)); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2069 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2070 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2071 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2072 | // Handle field access to simple records. This also handles access to fields |
| 2073 | // of the ObjC 'id' struct. |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 2074 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2075 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2076 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2077 | diag::err_typecheck_incomplete_tag, |
| 2078 | BaseExpr->getSourceRange())) |
| 2079 | return ExprError(); |
| 2080 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2081 | // The record definition is complete, now make sure the member is valid. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2082 | // 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] | 2083 | LookupResult Result |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2084 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 2085 | LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2086 | |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2087 | if (!Result) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2088 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 2089 | << &Member << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2090 | if (Result.isAmbiguous()) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2091 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 2092 | MemberLoc, BaseExpr->getSourceRange()); |
| 2093 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2094 | } |
| 2095 | |
| 2096 | NamedDecl *MemberDecl = Result; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2097 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2098 | // If the decl being referenced had an error, return an error for this |
| 2099 | // sub-expr without emitting another error, in order to avoid cascading |
| 2100 | // error cases. |
| 2101 | if (MemberDecl->isInvalidDecl()) |
| 2102 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2103 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2104 | // Check the use of this field |
| 2105 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 2106 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2107 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2108 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2109 | // We may have found a field within an anonymous union or struct |
| 2110 | // (C++ [class.union]). |
| 2111 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2112 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2113 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2114 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2115 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 2116 | // FIXME: Handle address space modifiers |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2117 | QualType MemberType = FD->getType(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2118 | if (const ReferenceType *Ref = MemberType->getAsReferenceType()) |
| 2119 | MemberType = Ref->getPointeeType(); |
| 2120 | else { |
| 2121 | unsigned combinedQualifiers = |
| 2122 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2123 | if (FD->isMutable()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2124 | combinedQualifiers &= ~QualType::Const; |
| 2125 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 2126 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2127 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2128 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 2129 | MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2130 | } |
| 2131 | |
| 2132 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2133 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2134 | Var, MemberLoc, |
| 2135 | Var->getType().getNonReferenceType())); |
| 2136 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2137 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2138 | MemberFn, MemberLoc, |
| 2139 | MemberFn->getType())); |
| 2140 | if (OverloadedFunctionDecl *Ovl |
| 2141 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2142 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2143 | MemberLoc, Context.OverloadTy)); |
| 2144 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2145 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 2146 | Enum, MemberLoc, Enum->getType())); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2147 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2148 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 2149 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2150 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2151 | // We found a declaration kind that we didn't expect. This is a |
| 2152 | // generic error message that tells the user that she can't refer |
| 2153 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2154 | return ExprError(Diag(MemberLoc, |
| 2155 | diag::err_typecheck_member_reference_unknown) |
| 2156 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2157 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2158 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2159 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2160 | // (*Obj).ivar. |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2161 | if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2162 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2163 | if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(Context, |
| 2164 | &Member, |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2165 | ClassDeclared)) { |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2166 | // If the decl being referenced had an error, return an error for this |
| 2167 | // sub-expr without emitting another error, in order to avoid cascading |
| 2168 | // error cases. |
| 2169 | if (IV->isInvalidDecl()) |
| 2170 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2171 | |
| 2172 | // Check whether we can reference this field. |
| 2173 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2174 | return ExprError(); |
Steve Naroff | 8bfd1b8 | 2009-03-26 16:01:08 +0000 | [diff] [blame] | 2175 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2176 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2177 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2178 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2179 | ClassOfMethodDecl = MD->getClassInterface(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2180 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2181 | // Case of a c-function declared inside an objc implementation. |
| 2182 | // FIXME: For a c-style function nested inside an objc implementation |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2183 | // class, there is no implementation context available, so we pass |
| 2184 | // down the context as argument to this routine. Ideally, this context |
| 2185 | // need be passed down in the AST node and somehow calculated from the |
| 2186 | // AST for a function decl. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2187 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2188 | if (ObjCImplementationDecl *IMPD = |
| 2189 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2190 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2191 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2192 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2193 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2194 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2195 | |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2196 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2197 | if (ClassDeclared != IFTy->getDecl() || |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2198 | ClassOfMethodDecl != ClassDeclared) |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2199 | Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 2200 | } |
| 2201 | // @protected |
| 2202 | else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl)) |
| 2203 | Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName(); |
| 2204 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2205 | |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2206 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2207 | MemberLoc, BaseExpr, |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2208 | OpKind == tok::arrow)); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2209 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2210 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 2211 | << IFTy->getDecl()->getDeclName() << &Member |
| 2212 | << BaseExpr->getSourceRange()); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2213 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2214 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2215 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2216 | // pointer to a (potentially qualified) interface type. |
| 2217 | const PointerType *PTy; |
| 2218 | const ObjCInterfaceType *IFTy; |
| 2219 | if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) && |
| 2220 | (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) { |
| 2221 | ObjCInterfaceDecl *IFace = IFTy->getDecl(); |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 2222 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2223 | // Search for a declared property first. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2224 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Context, |
| 2225 | &Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2226 | // Check whether we can reference this property. |
| 2227 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2228 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2229 | QualType ResTy = PD->getType(); |
| 2230 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2231 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2232 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2233 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2234 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2235 | MemberLoc, BaseExpr)); |
| 2236 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2237 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2238 | // Check protocols on qualified interfaces. |
Chris Lattner | 9baefc2 | 2008-07-21 05:20:01 +0000 | [diff] [blame] | 2239 | for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(), |
| 2240 | E = IFTy->qual_end(); I != E; ++I) |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2241 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, |
| 2242 | &Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2243 | // Check whether we can reference this property. |
| 2244 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2245 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2246 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2247 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2248 | MemberLoc, BaseExpr)); |
| 2249 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2250 | |
| 2251 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2252 | // selector is implemented. |
| 2253 | |
| 2254 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2255 | // shared with the code in ActOnInstanceMessage. |
| 2256 | |
| 2257 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2258 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2259 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2260 | // If this reference is in an @implementation, check for 'private' methods. |
| 2261 | if (!Getter) |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2262 | Getter = FindMethodInNestedImplementations(IFace, Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2263 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2264 | // Look through local category implementations associated with the class. |
| 2265 | if (!Getter) { |
| 2266 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) { |
| 2267 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2268 | Getter = ObjCCategoryImpls[i]->getInstanceMethod(Context, Sel); |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2269 | } |
| 2270 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2271 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2272 | // Check if we can reference this property. |
| 2273 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2274 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2275 | } |
| 2276 | // If we found a getter then this may be a valid dot-reference, we |
| 2277 | // will look for the matching setter, in case it is needed. |
| 2278 | Selector SetterSel = |
| 2279 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2280 | PP.getSelectorTable(), &Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2281 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(Context, SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2282 | if (!Setter) { |
| 2283 | // If this reference is in an @implementation, also check for 'private' |
| 2284 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2285 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2286 | } |
| 2287 | // Look through local category implementations associated with the class. |
| 2288 | if (!Setter) { |
| 2289 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2290 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2291 | Setter = ObjCCategoryImpls[i]->getInstanceMethod(Context, SetterSel); |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 2292 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2293 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2294 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2295 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2296 | return ExprError(); |
| 2297 | |
| 2298 | if (Getter || Setter) { |
| 2299 | QualType PType; |
| 2300 | |
| 2301 | if (Getter) |
| 2302 | PType = Getter->getResultType(); |
| 2303 | else { |
| 2304 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2305 | E = Setter->param_end(); PI != E; ++PI) |
| 2306 | PType = (*PI)->getType(); |
| 2307 | } |
| 2308 | // FIXME: we must check that the setter has property type. |
| 2309 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2310 | Setter, MemberLoc, BaseExpr)); |
| 2311 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2312 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2313 | << &Member << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2314 | } |
Steve Naroff | 18bc164 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2315 | // Handle properties on qualified "id" protocols. |
| 2316 | const ObjCQualifiedIdType *QIdTy; |
| 2317 | if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) { |
| 2318 | // Check protocols on qualified interfaces. |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2319 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2320 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2321 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2322 | // Check the use of this declaration |
| 2323 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2324 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2325 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2326 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2327 | MemberLoc, BaseExpr)); |
| 2328 | } |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2329 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2330 | // Check the use of this method. |
| 2331 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2332 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2333 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2334 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2335 | OMD->getResultType(), |
| 2336 | OMD, OpLoc, MemberLoc, |
| 2337 | NULL, 0)); |
Fariborz Jahanian | 391d895 | 2008-12-10 00:21:50 +0000 | [diff] [blame] | 2338 | } |
| 2339 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2340 | |
| 2341 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2342 | << &Member << BaseType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2343 | } |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2344 | // Handle properties on ObjC 'Class' types. |
| 2345 | if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) { |
| 2346 | // Also must look for a getter name which uses property syntax. |
| 2347 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2348 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2349 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2350 | ObjCMethodDecl *Getter; |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2351 | // FIXME: need to also look locally in the implementation. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2352 | if ((Getter = IFace->lookupClassMethod(Context, Sel))) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2353 | // Check the use of this method. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2354 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2355 | return ExprError(); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2356 | } |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2357 | // If we found a getter then this may be a valid dot-reference, we |
| 2358 | // will look for the matching setter, in case it is needed. |
| 2359 | Selector SetterSel = |
| 2360 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2361 | PP.getSelectorTable(), &Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2362 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(Context, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2363 | if (!Setter) { |
| 2364 | // If this reference is in an @implementation, also check for 'private' |
| 2365 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2366 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2367 | } |
| 2368 | // Look through local category implementations associated with the class. |
| 2369 | if (!Setter) { |
| 2370 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2371 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2372 | Setter = ObjCCategoryImpls[i]->getClassMethod(Context, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2373 | } |
| 2374 | } |
| 2375 | |
| 2376 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2377 | return ExprError(); |
| 2378 | |
| 2379 | if (Getter || Setter) { |
| 2380 | QualType PType; |
| 2381 | |
| 2382 | if (Getter) |
| 2383 | PType = Getter->getResultType(); |
| 2384 | else { |
| 2385 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2386 | E = Setter->param_end(); PI != E; ++PI) |
| 2387 | PType = (*PI)->getType(); |
| 2388 | } |
| 2389 | // FIXME: we must check that the setter has property type. |
| 2390 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2391 | Setter, MemberLoc, BaseExpr)); |
| 2392 | } |
| 2393 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2394 | << &Member << BaseType); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2395 | } |
| 2396 | } |
| 2397 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2398 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2399 | if (BaseType->isExtVectorType()) { |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2400 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2401 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2402 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2403 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2404 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2405 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2406 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2407 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2408 | << BaseType << BaseExpr->getSourceRange(); |
| 2409 | |
| 2410 | // If the user is trying to apply -> or . to a function or function |
| 2411 | // pointer, it's probably because they forgot parentheses to call |
| 2412 | // the function. Suggest the addition of those parentheses. |
| 2413 | if (BaseType == Context.OverloadTy || |
| 2414 | BaseType->isFunctionType() || |
| 2415 | (BaseType->isPointerType() && |
| 2416 | BaseType->getAsPointerType()->isFunctionType())) { |
| 2417 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2418 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2419 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2420 | } |
| 2421 | |
| 2422 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2423 | } |
| 2424 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2425 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2426 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2427 | /// function prototype Proto. Call is the call expression itself, and |
| 2428 | /// Fn is the function expression. For a C++ member function, this |
| 2429 | /// routine does not attempt to convert the object argument. Returns |
| 2430 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2431 | bool |
| 2432 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2433 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2434 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2435 | Expr **Args, unsigned NumArgs, |
| 2436 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2437 | // 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] | 2438 | // assignment, to the types of the corresponding parameter, ... |
| 2439 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2440 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2441 | bool Invalid = false; |
| 2442 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2443 | // If too few arguments are available (and we don't have default |
| 2444 | // arguments for the remaining parameters), don't make the call. |
| 2445 | if (NumArgs < NumArgsInProto) { |
| 2446 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2447 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2448 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2449 | // Use default arguments for missing arguments |
| 2450 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2451 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2452 | } |
| 2453 | |
| 2454 | // If too many are passed and not variadic, error on the extras and drop |
| 2455 | // them. |
| 2456 | if (NumArgs > NumArgsInProto) { |
| 2457 | if (!Proto->isVariadic()) { |
| 2458 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2459 | diag::err_typecheck_call_too_many_args) |
| 2460 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2461 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2462 | Args[NumArgs-1]->getLocEnd()); |
| 2463 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2464 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2465 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2466 | } |
| 2467 | NumArgsToCheck = NumArgsInProto; |
| 2468 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2469 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2470 | // Continue to check argument types (even if we have too few/many args). |
| 2471 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2472 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2473 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2474 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2475 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2476 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2477 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2478 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2479 | ProtoArgType, |
| 2480 | diag::err_call_incomplete_argument, |
| 2481 | Arg->getSourceRange())) |
| 2482 | return true; |
| 2483 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2484 | // Pass the argument. |
| 2485 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2486 | return true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2487 | } else |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2488 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2489 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2490 | QualType ArgType = Arg->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2491 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2492 | Call->setArg(i, Arg); |
| 2493 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2494 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2495 | // If this is a variadic call, handle args passed through "...". |
| 2496 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2497 | VariadicCallType CallType = VariadicFunction; |
| 2498 | if (Fn->getType()->isBlockPointerType()) |
| 2499 | CallType = VariadicBlock; // Block |
| 2500 | else if (isa<MemberExpr>(Fn)) |
| 2501 | CallType = VariadicMethod; |
| 2502 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2503 | // Promote the arguments (C99 6.5.2.2p7). |
| 2504 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2505 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2506 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2507 | Call->setArg(i, Arg); |
| 2508 | } |
| 2509 | } |
| 2510 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2511 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2512 | } |
| 2513 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2514 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2515 | /// This provides the location of the left/right parens and a list of comma |
| 2516 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2517 | Action::OwningExprResult |
| 2518 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2519 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2520 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2521 | unsigned NumArgs = args.size(); |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2522 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2523 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2524 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2525 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2526 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2527 | DeclarationName UnqualifiedName; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2528 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2529 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2530 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2531 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2532 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2533 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2534 | bool Dependent = false; |
| 2535 | if (Fn->isTypeDependent()) |
| 2536 | Dependent = true; |
| 2537 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2538 | Dependent = true; |
| 2539 | |
| 2540 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2541 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2542 | Context.DependentTy, RParenLoc)); |
| 2543 | |
| 2544 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2545 | if (Fn->getType()->isRecordType()) |
| 2546 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2547 | CommaLocs, RParenLoc)); |
| 2548 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2549 | // Determine whether this is a call to a member function. |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2550 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) |
| 2551 | if (isa<OverloadedFunctionDecl>(MemExpr->getMemberDecl()) || |
| 2552 | isa<CXXMethodDecl>(MemExpr->getMemberDecl())) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2553 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2554 | CommaLocs, RParenLoc)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2555 | } |
| 2556 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2557 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2558 | DeclRefExpr *DRExpr = NULL; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2559 | Expr *FnExpr = Fn; |
| 2560 | bool ADL = true; |
| 2561 | while (true) { |
| 2562 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2563 | FnExpr = IcExpr->getSubExpr(); |
| 2564 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2565 | // Parentheses around a function disable ADL |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2566 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2567 | ADL = false; |
| 2568 | FnExpr = PExpr->getSubExpr(); |
| 2569 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2570 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2571 | == UnaryOperator::AddrOf) { |
| 2572 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2573 | } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) { |
| 2574 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2575 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
| 2576 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2577 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2578 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2579 | UnqualifiedName = DepName->getName(); |
| 2580 | break; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2581 | } else { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2582 | // Any kind of name that does not refer to a declaration (or |
| 2583 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2584 | ADL = false; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2585 | break; |
| 2586 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2587 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2588 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2589 | OverloadedFunctionDecl *Ovl = 0; |
| 2590 | if (DRExpr) { |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2591 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2592 | Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl()); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2593 | NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2594 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2595 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2596 | if (Ovl || (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2597 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2598 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2599 | ADL = false; |
| 2600 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2601 | // We don't perform ADL in C. |
| 2602 | if (!getLangOptions().CPlusPlus) |
| 2603 | ADL = false; |
| 2604 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2605 | if (Ovl || ADL) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2606 | FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0, |
| 2607 | UnqualifiedName, LParenLoc, Args, |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2608 | NumArgs, CommaLocs, RParenLoc, ADL); |
| 2609 | if (!FDecl) |
| 2610 | return ExprError(); |
| 2611 | |
| 2612 | // Update Fn to refer to the actual function selected. |
| 2613 | Expr *NewFn = 0; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2614 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2615 | = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr)) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2616 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2617 | QDRExpr->getLocation(), |
| 2618 | false, false, |
| 2619 | QDRExpr->getQualifierRange(), |
| 2620 | QDRExpr->getQualifier()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2621 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2622 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2623 | Fn->getSourceRange().getBegin()); |
| 2624 | Fn->Destroy(Context); |
| 2625 | Fn = NewFn; |
| 2626 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2627 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2628 | |
| 2629 | // Promote the function operand. |
| 2630 | UsualUnaryConversions(Fn); |
| 2631 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2632 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2633 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2634 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2635 | Args, NumArgs, |
| 2636 | Context.BoolTy, |
| 2637 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2638 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2639 | const FunctionType *FuncT; |
| 2640 | if (!Fn->getType()->isBlockPointerType()) { |
| 2641 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2642 | // have type pointer to function". |
| 2643 | const PointerType *PT = Fn->getType()->getAsPointerType(); |
| 2644 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2645 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2646 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2647 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2648 | } else { // This is a block call. |
| 2649 | FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()-> |
| 2650 | getAsFunctionType(); |
| 2651 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2652 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2653 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2654 | << Fn->getType() << Fn->getSourceRange()); |
| 2655 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2656 | // Check for a valid return type |
| 2657 | if (!FuncT->getResultType()->isVoidType() && |
| 2658 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2659 | FuncT->getResultType(), |
| 2660 | diag::err_call_incomplete_return, |
| 2661 | TheCall->getSourceRange())) |
| 2662 | return ExprError(); |
| 2663 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2664 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2665 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2666 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2667 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2668 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2669 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2670 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2671 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2672 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2673 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2674 | if (FDecl) { |
| 2675 | // Check if we have too few/too many template arguments, based |
| 2676 | // on our knowledge of the function definition. |
| 2677 | const FunctionDecl *Def = 0; |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2678 | if (FDecl->getBody(Context, Def) && NumArgs != Def->param_size()) { |
| 2679 | const FunctionProtoType *Proto = |
| 2680 | Def->getType()->getAsFunctionProtoType(); |
| 2681 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2682 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2683 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2684 | } |
| 2685 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2686 | } |
| 2687 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2688 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2689 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2690 | Expr *Arg = Args[i]; |
| 2691 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2692 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2693 | Arg->getType(), |
| 2694 | diag::err_call_incomplete_argument, |
| 2695 | Arg->getSourceRange())) |
| 2696 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2697 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2698 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2699 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2700 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2701 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2702 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2703 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2704 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2705 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2706 | // Check for sentinels |
| 2707 | if (NDecl) |
| 2708 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2709 | // Do special checking on direct calls to functions. |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2710 | if (FDecl) |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2711 | return CheckFunctionCall(FDecl, TheCall.take()); |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 2712 | if (NDecl) |
| 2713 | return CheckBlockCall(NDecl, TheCall.take()); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2714 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2715 | return Owned(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2716 | } |
| 2717 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2718 | Action::OwningExprResult |
| 2719 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2720 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2721 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2722 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2723 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2724 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2725 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2726 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2727 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2728 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2729 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2730 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 2731 | } else if (!literalType->isDependentType() && |
| 2732 | RequireCompleteType(LParenLoc, literalType, |
| 2733 | diag::err_typecheck_decl_incomplete_type, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2734 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2735 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2736 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2737 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2738 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2739 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2740 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2741 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2742 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2743 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2744 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2745 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2746 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2747 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2748 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2749 | } |
| 2750 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2751 | Action::OwningExprResult |
| 2752 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2753 | SourceLocation RBraceLoc) { |
| 2754 | unsigned NumInit = initlist.size(); |
| 2755 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2756 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2757 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2758 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2759 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2760 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2761 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2762 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2763 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2764 | } |
| 2765 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2766 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 58d5ebb | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 2767 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2768 | UsualUnaryConversions(castExpr); |
| 2769 | |
| 2770 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2771 | // type needs to be scalar. |
| 2772 | if (castType->isVoidType()) { |
| 2773 | // Cast to void allows any expr type. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2774 | } else if (castType->isDependentType() || castExpr->isTypeDependent()) { |
| 2775 | // We can't check any more until template instantiation time. |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2776 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2777 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2778 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2779 | (castType->isStructureType() || castType->isUnionType())) { |
| 2780 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2781 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2782 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2783 | << castType << castExpr->getSourceRange(); |
| 2784 | } else if (castType->isUnionType()) { |
| 2785 | // GCC cast to union extension |
| 2786 | RecordDecl *RD = castType->getAsRecordType()->getDecl(); |
| 2787 | RecordDecl::field_iterator Field, FieldEnd; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2788 | for (Field = RD->field_begin(Context), FieldEnd = RD->field_end(Context); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2789 | Field != FieldEnd; ++Field) { |
| 2790 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2791 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2792 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2793 | << castExpr->getSourceRange(); |
| 2794 | break; |
| 2795 | } |
| 2796 | } |
| 2797 | if (Field == FieldEnd) |
| 2798 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2799 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2800 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2801 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2802 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2803 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2804 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2805 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2806 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2807 | return Diag(castExpr->getLocStart(), |
| 2808 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2809 | << castExpr->getType() << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2810 | } else if (castExpr->getType()->isVectorType()) { |
| 2811 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 2812 | return true; |
| 2813 | } else if (castType->isVectorType()) { |
| 2814 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 2815 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2816 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 2817 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 2818 | } else if (!castType->isArithmeticType()) { |
| 2819 | QualType castExprType = castExpr->getType(); |
| 2820 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 2821 | return Diag(castExpr->getLocStart(), |
| 2822 | diag::err_cast_pointer_from_non_pointer_int) |
| 2823 | << castExprType << castExpr->getSourceRange(); |
| 2824 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 2825 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 2826 | return Diag(castExpr->getLocStart(), |
| 2827 | diag::err_cast_pointer_to_non_pointer_int) |
| 2828 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2829 | } |
Fariborz Jahanian | b5ff6bf | 2009-05-22 21:42:52 +0000 | [diff] [blame] | 2830 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 2831 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2832 | return false; |
| 2833 | } |
| 2834 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 2835 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2836 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2837 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2838 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2839 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2840 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2841 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2842 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2843 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2844 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2845 | } else |
| 2846 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2847 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2848 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2849 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2850 | return false; |
| 2851 | } |
| 2852 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2853 | Action::OwningExprResult |
| 2854 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 2855 | SourceLocation RParenLoc, ExprArg Op) { |
| 2856 | assert((Ty != 0) && (Op.get() != 0) && |
| 2857 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2858 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2859 | Expr *castExpr = Op.takeAs<Expr>(); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2860 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 2861 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2862 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2863 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2864 | return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2865 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2866 | } |
| 2867 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2868 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 2869 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2870 | /// C99 6.5.15 |
| 2871 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 2872 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2873 | // C++ is sufficiently different to merit its own checker. |
| 2874 | if (getLangOptions().CPlusPlus) |
| 2875 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 2876 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2877 | UsualUnaryConversions(Cond); |
| 2878 | UsualUnaryConversions(LHS); |
| 2879 | UsualUnaryConversions(RHS); |
| 2880 | QualType CondTy = Cond->getType(); |
| 2881 | QualType LHSTy = LHS->getType(); |
| 2882 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 2883 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2884 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2885 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 2886 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 2887 | << CondTy; |
| 2888 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2889 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2890 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2891 | // Now check the two expressions. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2892 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2893 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 2894 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2895 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 2896 | UsualArithmeticConversions(LHS, RHS); |
| 2897 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 2898 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2899 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2900 | // If both operands are the same structure or union type, the result is that |
| 2901 | // type. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2902 | if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3 |
| 2903 | if (const RecordType *RHSRT = RHSTy->getAsRecordType()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2904 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2905 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2906 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2907 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2908 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2909 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2910 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2911 | // 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] | 2912 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2913 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 2914 | if (!LHSTy->isVoidType()) |
| 2915 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2916 | << RHS->getSourceRange(); |
| 2917 | if (!RHSTy->isVoidType()) |
| 2918 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2919 | << LHS->getSourceRange(); |
| 2920 | ImpCastExprToType(LHS, Context.VoidTy); |
| 2921 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 2922 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 2923 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2924 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 2925 | // the type of the other operand." |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2926 | if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() || |
| 2927 | Context.isObjCObjectPointerType(LHSTy)) && |
| 2928 | RHS->isNullPointerConstant(Context)) { |
| 2929 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 2930 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2931 | } |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2932 | if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() || |
| 2933 | Context.isObjCObjectPointerType(RHSTy)) && |
| 2934 | LHS->isNullPointerConstant(Context)) { |
| 2935 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 2936 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2937 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2938 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2939 | const PointerType *LHSPT = LHSTy->getAsPointerType(); |
| 2940 | const PointerType *RHSPT = RHSTy->getAsPointerType(); |
| 2941 | const BlockPointerType *LHSBPT = LHSTy->getAsBlockPointerType(); |
| 2942 | const BlockPointerType *RHSBPT = RHSTy->getAsBlockPointerType(); |
| 2943 | |
Chris Lattner | bd57d36 | 2008-01-06 22:50:31 +0000 | [diff] [blame] | 2944 | // Handle the case where both operands are pointers before we handle null |
| 2945 | // pointer constants in case both operands are null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2946 | if ((LHSPT || LHSBPT) && (RHSPT || RHSBPT)) { // C99 6.5.15p3,6 |
| 2947 | // get the "pointed to" types |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 2948 | QualType lhptee = (LHSPT ? LHSPT->getPointeeType() |
| 2949 | : LHSBPT->getPointeeType()); |
| 2950 | QualType rhptee = (RHSPT ? RHSPT->getPointeeType() |
| 2951 | : RHSBPT->getPointeeType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2952 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2953 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 2954 | if (lhptee->isVoidType() |
| 2955 | && (RHSBPT || rhptee->isIncompleteOrObjectType())) { |
| 2956 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 2957 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
| 2958 | QualType destType = Context.getPointerType(destPointee); |
| 2959 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2960 | ImpCastExprToType(RHS, destType); // promote to void* |
| 2961 | return destType; |
| 2962 | } |
| 2963 | if (rhptee->isVoidType() |
| 2964 | && (LHSBPT || lhptee->isIncompleteOrObjectType())) { |
| 2965 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
| 2966 | QualType destType = Context.getPointerType(destPointee); |
| 2967 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2968 | ImpCastExprToType(RHS, destType); // promote to void* |
| 2969 | return destType; |
| 2970 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2971 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2972 | bool sameKind = (LHSPT && RHSPT) || (LHSBPT && RHSBPT); |
| 2973 | if (sameKind |
| 2974 | && Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 2975 | // Two identical pointer types are always compatible. |
| 2976 | return LHSTy; |
| 2977 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2978 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2979 | QualType compositeType = LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2980 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2981 | // If either type is an Objective-C object type then check |
| 2982 | // compatibility according to Objective-C. |
| 2983 | if (Context.isObjCObjectPointerType(LHSTy) || |
| 2984 | Context.isObjCObjectPointerType(RHSTy)) { |
| 2985 | // If both operands are interfaces and either operand can be |
| 2986 | // assigned to the other, use that type as the composite |
| 2987 | // type. This allows |
| 2988 | // xxx ? (A*) a : (B*) b |
| 2989 | // where B is a subclass of A. |
| 2990 | // |
| 2991 | // Additionally, as for assignment, if either type is 'id' |
| 2992 | // allow silent coercion. Finally, if the types are |
| 2993 | // incompatible then make sure to use 'id' as the composite |
| 2994 | // type so the result is acceptable for sending messages to. |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2995 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2996 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 2997 | // It could return the composite type. |
| 2998 | const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType(); |
| 2999 | const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType(); |
| 3000 | if (LHSIface && RHSIface && |
| 3001 | Context.canAssignObjCInterfaces(LHSIface, RHSIface)) { |
| 3002 | compositeType = LHSTy; |
| 3003 | } else if (LHSIface && RHSIface && |
| 3004 | Context.canAssignObjCInterfaces(RHSIface, LHSIface)) { |
| 3005 | compositeType = RHSTy; |
| 3006 | } else if (Context.isObjCIdStructType(lhptee) || |
| 3007 | Context.isObjCIdStructType(rhptee)) { |
| 3008 | compositeType = Context.getObjCIdType(); |
| 3009 | } else if (LHSBPT || RHSBPT) { |
| 3010 | if (!sameKind |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3011 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3012 | rhptee.getUnqualifiedType())) |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3013 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3014 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3015 | return QualType(); |
| 3016 | } else { |
| 3017 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3018 | << LHSTy << RHSTy |
| 3019 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3020 | QualType incompatTy = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3021 | ImpCastExprToType(LHS, incompatTy); |
| 3022 | ImpCastExprToType(RHS, incompatTy); |
Daniel Dunbar | a56f746 | 2008-08-26 00:41:39 +0000 | [diff] [blame] | 3023 | return incompatTy; |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 3024 | } |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3025 | } else if (!sameKind |
| 3026 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3027 | rhptee.getUnqualifiedType())) { |
| 3028 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3029 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3030 | // In this situation, we assume void* type. No especially good |
| 3031 | // reason, but this is what gcc does, and we do have to pick |
| 3032 | // to get a consistent AST. |
| 3033 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3034 | ImpCastExprToType(LHS, incompatTy); |
| 3035 | ImpCastExprToType(RHS, incompatTy); |
| 3036 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3037 | } |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3038 | // The pointer types are compatible. |
| 3039 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3040 | // differently qualified versions of compatible types, the result type is |
| 3041 | // a pointer to an appropriately qualified version of the *composite* |
| 3042 | // type. |
| 3043 | // FIXME: Need to calculate the composite type. |
| 3044 | // FIXME: Need to add qualifiers |
| 3045 | ImpCastExprToType(LHS, compositeType); |
| 3046 | ImpCastExprToType(RHS, compositeType); |
| 3047 | return compositeType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3048 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3049 | |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3050 | // GCC compatibility: soften pointer/integer mismatch. |
| 3051 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3052 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3053 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3054 | ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. |
| 3055 | return RHSTy; |
| 3056 | } |
| 3057 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3058 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3059 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3060 | ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. |
| 3061 | return LHSTy; |
| 3062 | } |
| 3063 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3064 | // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type |
| 3065 | // evaluates to "struct objc_object *" (and is handled above when comparing |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3066 | // id with statically typed objects). |
| 3067 | if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3068 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3069 | // id. Currently localizing to here until clear this should be |
| 3070 | // part of ObjCQualifiedIdTypesAreCompatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3071 | if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3072 | (LHSTy->isObjCQualifiedIdType() && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3073 | Context.isObjCObjectPointerType(RHSTy)) || |
| 3074 | (RHSTy->isObjCQualifiedIdType() && |
| 3075 | Context.isObjCObjectPointerType(LHSTy))) { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3076 | // FIXME: This is not the correct composite type. This only happens to |
| 3077 | // work because id can more or less be used anywhere, however this may |
| 3078 | // change the type of method sends. |
| 3079 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3080 | // FIXME: gcc adds some type-checking of the arguments and emits |
| 3081 | // (confusing) incompatible comparison warnings in some |
| 3082 | // cases. Investigate. |
| 3083 | QualType compositeType = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3084 | ImpCastExprToType(LHS, compositeType); |
| 3085 | ImpCastExprToType(RHS, compositeType); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3086 | return compositeType; |
| 3087 | } |
| 3088 | } |
| 3089 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3090 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3091 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3092 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3093 | return QualType(); |
| 3094 | } |
| 3095 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3096 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3097 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3098 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3099 | SourceLocation ColonLoc, |
| 3100 | ExprArg Cond, ExprArg LHS, |
| 3101 | ExprArg RHS) { |
| 3102 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3103 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3104 | |
| 3105 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3106 | // was the condition. |
| 3107 | bool isLHSNull = LHSExpr == 0; |
| 3108 | if (isLHSNull) |
| 3109 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3110 | |
| 3111 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3112 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3113 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3114 | return ExprError(); |
| 3115 | |
| 3116 | Cond.release(); |
| 3117 | LHS.release(); |
| 3118 | RHS.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3119 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3120 | isLHSNull ? 0 : LHSExpr, |
| 3121 | RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3122 | } |
| 3123 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3124 | |
| 3125 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3126 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3127 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3128 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3129 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3130 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3131 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3132 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3133 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3134 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 3135 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 3136 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3137 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3138 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3139 | lhptee = Context.getCanonicalType(lhptee); |
| 3140 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3141 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3142 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3143 | |
| 3144 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3145 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3146 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3147 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3148 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3149 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3150 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3151 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3152 | // 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] | 3153 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3154 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3155 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3156 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3157 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3158 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3159 | assert(rhptee->isFunctionType()); |
| 3160 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3161 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3162 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3163 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3164 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3165 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3166 | |
| 3167 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3168 | assert(lhptee->isFunctionType()); |
| 3169 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3170 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3171 | // 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] | 3172 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3173 | lhptee = lhptee.getUnqualifiedType(); |
| 3174 | rhptee = rhptee.getUnqualifiedType(); |
| 3175 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3176 | // Check if the pointee types are compatible ignoring the sign. |
| 3177 | // We explicitly check for char so that we catch "char" vs |
| 3178 | // "unsigned char" on systems where "char" is unsigned. |
| 3179 | if (lhptee->isCharType()) { |
| 3180 | lhptee = Context.UnsignedCharTy; |
| 3181 | } else if (lhptee->isSignedIntegerType()) { |
| 3182 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 3183 | } |
| 3184 | if (rhptee->isCharType()) { |
| 3185 | rhptee = Context.UnsignedCharTy; |
| 3186 | } else if (rhptee->isSignedIntegerType()) { |
| 3187 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 3188 | } |
| 3189 | if (lhptee == rhptee) { |
| 3190 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3191 | // takes priority over sign incompatibility because the sign |
| 3192 | // warning can be disabled. |
| 3193 | if (ConvTy != Compatible) |
| 3194 | return ConvTy; |
| 3195 | return IncompatiblePointerSign; |
| 3196 | } |
| 3197 | // General pointer incompatibility takes priority over qualifiers. |
| 3198 | return IncompatiblePointer; |
| 3199 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3200 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3201 | } |
| 3202 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3203 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3204 | /// block pointer types are compatible or whether a block and normal pointer |
| 3205 | /// are compatible. It is more restrict than comparing two function pointer |
| 3206 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3207 | Sema::AssignConvertType |
| 3208 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3209 | QualType rhsType) { |
| 3210 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3211 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3212 | // get the "pointed to" type (ignoring qualifiers at the top level) |
| 3213 | lhptee = lhsType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3214 | rhptee = rhsType->getAsBlockPointerType()->getPointeeType(); |
| 3215 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3216 | // make sure we operate on the canonical type |
| 3217 | lhptee = Context.getCanonicalType(lhptee); |
| 3218 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3219 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3220 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3221 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3222 | // For blocks we enforce that qualifiers are identical. |
| 3223 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3224 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3225 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3226 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3227 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3228 | return ConvTy; |
| 3229 | } |
| 3230 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3231 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3232 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3233 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3234 | /// |
| 3235 | /// int a, *pint; |
| 3236 | /// short *pshort; |
| 3237 | /// struct foo *pfoo; |
| 3238 | /// |
| 3239 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3240 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3241 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3242 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3243 | /// |
| 3244 | /// 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] | 3245 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3246 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3247 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3248 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3249 | // Get canonical types. We're not formatting these types, just comparing |
| 3250 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3251 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3252 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3253 | |
| 3254 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3255 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3256 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3257 | // If the left-hand side is a reference type, then we are in a |
| 3258 | // (rare!) case where we've allowed the use of references in C, |
| 3259 | // e.g., as a parameter type in a built-in function. In this case, |
| 3260 | // just make sure that the type referenced is compatible with the |
| 3261 | // right-hand side type. The caller is responsible for adjusting |
| 3262 | // lhsType so that the resulting expression does not have reference |
| 3263 | // type. |
| 3264 | if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) { |
| 3265 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3266 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3267 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3268 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3269 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3270 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) { |
| 3271 | if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false)) |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3272 | return Compatible; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3273 | // Relax integer conversions like we do for pointers below. |
| 3274 | if (rhsType->isIntegerType()) |
| 3275 | return IntToPointer; |
| 3276 | if (lhsType->isIntegerType()) |
| 3277 | return PointerToInt; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3278 | return IncompatibleObjCQualifiedId; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3279 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3280 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3281 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3282 | // For ExtVector, allow vector splats; float -> <n x float> |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3283 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) |
| 3284 | if (LV->getElementType() == rhsType) |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3285 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3286 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3287 | // 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] | 3288 | // 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] | 3289 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3290 | if (getLangOptions().LaxVectorConversions && |
| 3291 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3292 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3293 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3294 | } |
| 3295 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3296 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3297 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3298 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3299 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3300 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3301 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3302 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3303 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3304 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3305 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3306 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3307 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3308 | if (rhsType->getAsBlockPointerType()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3309 | if (lhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3310 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3311 | |
| 3312 | // Treat block pointers as objects. |
| 3313 | if (getLangOptions().ObjC1 && |
| 3314 | lhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3315 | return Compatible; |
| 3316 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3317 | return Incompatible; |
| 3318 | } |
| 3319 | |
| 3320 | if (isa<BlockPointerType>(lhsType)) { |
| 3321 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3322 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3323 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3324 | // Treat block pointers as objects. |
| 3325 | if (getLangOptions().ObjC1 && |
| 3326 | rhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3327 | return Compatible; |
| 3328 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3329 | if (rhsType->isBlockPointerType()) |
| 3330 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3331 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3332 | if (const PointerType *RHSPT = rhsType->getAsPointerType()) { |
| 3333 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3334 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3335 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3336 | return Incompatible; |
| 3337 | } |
| 3338 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3339 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3340 | // 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] | 3341 | if (lhsType == Context.BoolTy) |
| 3342 | return Compatible; |
| 3343 | |
| 3344 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3345 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3346 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3347 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3348 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3349 | |
| 3350 | if (isa<BlockPointerType>(lhsType) && |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3351 | rhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3352 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3353 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3354 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3355 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3356 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3357 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3358 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3359 | } |
| 3360 | return Incompatible; |
| 3361 | } |
| 3362 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3363 | /// \brief Constructs a transparent union from an expression that is |
| 3364 | /// used to initialize the transparent union. |
| 3365 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
| 3366 | QualType UnionType, FieldDecl *Field) { |
| 3367 | // Build an initializer list that designates the appropriate member |
| 3368 | // of the transparent union. |
| 3369 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3370 | &E, 1, |
| 3371 | SourceLocation()); |
| 3372 | Initializer->setType(UnionType); |
| 3373 | Initializer->setInitializedFieldInUnion(Field); |
| 3374 | |
| 3375 | // Build a compound literal constructing a value of the transparent |
| 3376 | // union type from this initializer list. |
| 3377 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3378 | false); |
| 3379 | } |
| 3380 | |
| 3381 | Sema::AssignConvertType |
| 3382 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3383 | QualType FromType = rExpr->getType(); |
| 3384 | |
| 3385 | // If the ArgType is a Union type, we want to handle a potential |
| 3386 | // transparent_union GCC extension. |
| 3387 | const RecordType *UT = ArgType->getAsUnionType(); |
| 3388 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
| 3389 | return Incompatible; |
| 3390 | |
| 3391 | // The field to initialize within the transparent union. |
| 3392 | RecordDecl *UD = UT->getDecl(); |
| 3393 | FieldDecl *InitField = 0; |
| 3394 | // It's compatible if the expression matches any of the fields. |
| 3395 | for (RecordDecl::field_iterator it = UD->field_begin(Context), |
| 3396 | itend = UD->field_end(Context); |
| 3397 | it != itend; ++it) { |
| 3398 | if (it->getType()->isPointerType()) { |
| 3399 | // If the transparent union contains a pointer type, we allow: |
| 3400 | // 1) void pointer |
| 3401 | // 2) null pointer constant |
| 3402 | if (FromType->isPointerType()) |
| 3403 | if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) { |
| 3404 | ImpCastExprToType(rExpr, it->getType()); |
| 3405 | InitField = *it; |
| 3406 | break; |
| 3407 | } |
| 3408 | |
| 3409 | if (rExpr->isNullPointerConstant(Context)) { |
| 3410 | ImpCastExprToType(rExpr, it->getType()); |
| 3411 | InitField = *it; |
| 3412 | break; |
| 3413 | } |
| 3414 | } |
| 3415 | |
| 3416 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 3417 | == Compatible) { |
| 3418 | InitField = *it; |
| 3419 | break; |
| 3420 | } |
| 3421 | } |
| 3422 | |
| 3423 | if (!InitField) |
| 3424 | return Incompatible; |
| 3425 | |
| 3426 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 3427 | return Compatible; |
| 3428 | } |
| 3429 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3430 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3431 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3432 | if (getLangOptions().CPlusPlus) { |
| 3433 | if (!lhsType->isRecordType()) { |
| 3434 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3435 | // expression is implicitly converted (C++ 4) to the |
| 3436 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3437 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3438 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3439 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 3440 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3441 | } |
| 3442 | |
| 3443 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3444 | // structures. |
| 3445 | } |
| 3446 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3447 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3448 | // a null pointer constant. |
Steve Naroff | f7f52e7 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3449 | if ((lhsType->isPointerType() || |
| 3450 | lhsType->isObjCQualifiedIdType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3451 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | 9d3185e | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3452 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3453 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3454 | return Compatible; |
| 3455 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3456 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3457 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3458 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3459 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3460 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3461 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3462 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3463 | if (!lhsType->isReferenceType()) |
| 3464 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3465 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3466 | Sema::AssignConvertType result = |
| 3467 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3468 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3469 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3470 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3471 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3472 | // so that we can use references in built-in functions even in C. |
| 3473 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3474 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3475 | if (result != Incompatible && rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3476 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3477 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3478 | } |
| 3479 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3480 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3481 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3482 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3483 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3484 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3485 | } |
| 3486 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3487 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3488 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3489 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3490 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3491 | QualType lhsType = |
| 3492 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3493 | QualType rhsType = |
| 3494 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3495 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3496 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3497 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3498 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3499 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3500 | // Handle the case of a vector & extvector type of the same size and element |
| 3501 | // 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] | 3502 | if (getLangOptions().LaxVectorConversions) { |
| 3503 | // FIXME: Should we warn here? |
| 3504 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3505 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3506 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3507 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3508 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3509 | } |
| 3510 | } |
| 3511 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3512 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3513 | // If the lhs is an extended vector and the rhs is a scalar of the same type |
| 3514 | // or a literal, promote the rhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3515 | if (const ExtVectorType *V = lhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3516 | QualType eltType = V->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3517 | |
| 3518 | if ((eltType->getAsBuiltinType() == rhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3519 | (eltType->isIntegerType() && isa<IntegerLiteral>(rex)) || |
| 3520 | (eltType->isFloatingType() && isa<FloatingLiteral>(rex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3521 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3522 | return lhsType; |
| 3523 | } |
| 3524 | } |
| 3525 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3526 | // If the rhs is an extended vector and the lhs is a scalar of the same type, |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3527 | // promote the lhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3528 | if (const ExtVectorType *V = rhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3529 | QualType eltType = V->getElementType(); |
| 3530 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3531 | if ((eltType->getAsBuiltinType() == lhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3532 | (eltType->isIntegerType() && isa<IntegerLiteral>(lex)) || |
| 3533 | (eltType->isFloatingType() && isa<FloatingLiteral>(lex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3534 | ImpCastExprToType(lex, rhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3535 | return rhsType; |
| 3536 | } |
| 3537 | } |
| 3538 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3539 | // You cannot convert between vector values of different size. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3540 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3541 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3542 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3543 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3544 | } |
| 3545 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3546 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3547 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3548 | { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3549 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3550 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3551 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3552 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3553 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3554 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3555 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3556 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3557 | } |
| 3558 | |
| 3559 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3560 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3561 | { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3562 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3563 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3564 | return CheckVectorOperands(Loc, lex, rex); |
| 3565 | return InvalidOperands(Loc, lex, rex); |
| 3566 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3567 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3568 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3569 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3570 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3571 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3572 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3573 | } |
| 3574 | |
| 3575 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3576 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3577 | { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3578 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3579 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3580 | if (CompLHSTy) *CompLHSTy = compType; |
| 3581 | return compType; |
| 3582 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3583 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3584 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3585 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3586 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3587 | if (lex->getType()->isArithmeticType() && |
| 3588 | rex->getType()->isArithmeticType()) { |
| 3589 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3590 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3591 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3592 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3593 | // Put any potential pointer into PExp |
| 3594 | Expr* PExp = lex, *IExp = rex; |
| 3595 | if (IExp->getType()->isPointerType()) |
| 3596 | std::swap(PExp, IExp); |
| 3597 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3598 | if (const PointerType *PTy = PExp->getType()->getAsPointerType()) { |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3599 | if (IExp->getType()->isIntegerType()) { |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3600 | QualType PointeeTy = PTy->getPointeeType(); |
| 3601 | // Check for arithmetic on pointers to incomplete types. |
| 3602 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3603 | if (getLangOptions().CPlusPlus) { |
| 3604 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3605 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3606 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3607 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3608 | |
| 3609 | // GNU extension: arithmetic on pointer to void |
| 3610 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3611 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3612 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3613 | if (getLangOptions().CPlusPlus) { |
| 3614 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3615 | << lex->getType() << lex->getSourceRange(); |
| 3616 | return QualType(); |
| 3617 | } |
| 3618 | |
| 3619 | // GNU extension: arithmetic on pointer to function |
| 3620 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3621 | << lex->getType() << lex->getSourceRange(); |
| 3622 | } else if (!PTy->isDependentType() && |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3623 | RequireCompleteType(Loc, PointeeTy, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3624 | diag::err_typecheck_arithmetic_incomplete_type, |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3625 | PExp->getSourceRange(), SourceRange(), |
| 3626 | PExp->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3627 | return QualType(); |
| 3628 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3629 | // Diagnose bad cases where we step over interface counts. |
| 3630 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3631 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3632 | << PointeeTy << PExp->getSourceRange(); |
| 3633 | return QualType(); |
| 3634 | } |
| 3635 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3636 | if (CompLHSTy) { |
| 3637 | QualType LHSTy = lex->getType(); |
| 3638 | if (LHSTy->isPromotableIntegerType()) |
| 3639 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3640 | else { |
| 3641 | QualType T = isPromotableBitField(lex, Context); |
| 3642 | if (!T.isNull()) |
| 3643 | LHSTy = T; |
| 3644 | } |
| 3645 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3646 | *CompLHSTy = LHSTy; |
| 3647 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3648 | return PExp->getType(); |
| 3649 | } |
| 3650 | } |
| 3651 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3652 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3653 | } |
| 3654 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3655 | // C99 6.5.6 |
| 3656 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3657 | SourceLocation Loc, QualType* CompLHSTy) { |
| 3658 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3659 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3660 | if (CompLHSTy) *CompLHSTy = compType; |
| 3661 | return compType; |
| 3662 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3663 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3664 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3665 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3666 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3667 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3668 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3669 | if (lex->getType()->isArithmeticType() |
| 3670 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3671 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3672 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3673 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3674 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3675 | // Either ptr - int or ptr - ptr. |
| 3676 | if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) { |
Steve Naroff | 2565eef | 2008-01-29 18:58:14 +0000 | [diff] [blame] | 3677 | QualType lpointee = LHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3678 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3679 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3680 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3681 | bool ComplainAboutVoid = false; |
| 3682 | Expr *ComplainAboutFunc = 0; |
| 3683 | if (lpointee->isVoidType()) { |
| 3684 | if (getLangOptions().CPlusPlus) { |
| 3685 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3686 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3687 | return QualType(); |
| 3688 | } |
| 3689 | |
| 3690 | // GNU C extension: arithmetic on pointer to void |
| 3691 | ComplainAboutVoid = true; |
| 3692 | } else if (lpointee->isFunctionType()) { |
| 3693 | if (getLangOptions().CPlusPlus) { |
| 3694 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3695 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3696 | return QualType(); |
| 3697 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3698 | |
| 3699 | // GNU C extension: arithmetic on pointer to function |
| 3700 | ComplainAboutFunc = lex; |
| 3701 | } else if (!lpointee->isDependentType() && |
| 3702 | RequireCompleteType(Loc, lpointee, |
| 3703 | diag::err_typecheck_sub_ptr_object, |
| 3704 | lex->getSourceRange(), |
| 3705 | SourceRange(), |
| 3706 | lex->getType())) |
| 3707 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3708 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3709 | // Diagnose bad cases where we step over interface counts. |
| 3710 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3711 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3712 | << lpointee << lex->getSourceRange(); |
| 3713 | return QualType(); |
| 3714 | } |
| 3715 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3716 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3717 | if (rex->getType()->isIntegerType()) { |
| 3718 | if (ComplainAboutVoid) |
| 3719 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3720 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3721 | if (ComplainAboutFunc) |
| 3722 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3723 | << ComplainAboutFunc->getType() |
| 3724 | << ComplainAboutFunc->getSourceRange(); |
| 3725 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3726 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3727 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3728 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3729 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3730 | // Handle pointer-pointer subtractions. |
| 3731 | if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 3732 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3733 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3734 | // RHS must be a completely-type object type. |
| 3735 | // Handle the GNU void* extension. |
| 3736 | if (rpointee->isVoidType()) { |
| 3737 | if (getLangOptions().CPlusPlus) { |
| 3738 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3739 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3740 | return QualType(); |
| 3741 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3742 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3743 | ComplainAboutVoid = true; |
| 3744 | } else if (rpointee->isFunctionType()) { |
| 3745 | if (getLangOptions().CPlusPlus) { |
| 3746 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3747 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3748 | return QualType(); |
| 3749 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3750 | |
| 3751 | // GNU extension: arithmetic on pointer to function |
| 3752 | if (!ComplainAboutFunc) |
| 3753 | ComplainAboutFunc = rex; |
| 3754 | } else if (!rpointee->isDependentType() && |
| 3755 | RequireCompleteType(Loc, rpointee, |
| 3756 | diag::err_typecheck_sub_ptr_object, |
| 3757 | rex->getSourceRange(), |
| 3758 | SourceRange(), |
| 3759 | rex->getType())) |
| 3760 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3761 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 3762 | if (getLangOptions().CPlusPlus) { |
| 3763 | // Pointee types must be the same: C++ [expr.add] |
| 3764 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 3765 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 3766 | << lex->getType() << rex->getType() |
| 3767 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3768 | return QualType(); |
| 3769 | } |
| 3770 | } else { |
| 3771 | // Pointee types must be compatible C99 6.5.6p3 |
| 3772 | if (!Context.typesAreCompatible( |
| 3773 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 3774 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 3775 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 3776 | << lex->getType() << rex->getType() |
| 3777 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3778 | return QualType(); |
| 3779 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3780 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3781 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3782 | if (ComplainAboutVoid) |
| 3783 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3784 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3785 | if (ComplainAboutFunc) |
| 3786 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3787 | << ComplainAboutFunc->getType() |
| 3788 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3789 | |
| 3790 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3791 | return Context.getPointerDiffType(); |
| 3792 | } |
| 3793 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3794 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3795 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3796 | } |
| 3797 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3798 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3799 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3800 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3801 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 3802 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3803 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3804 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3805 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 3806 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3807 | QualType LHSTy; |
| 3808 | if (lex->getType()->isPromotableIntegerType()) |
| 3809 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3810 | else { |
| 3811 | LHSTy = isPromotableBitField(lex, Context); |
| 3812 | if (LHSTy.isNull()) |
| 3813 | LHSTy = lex->getType(); |
| 3814 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 3815 | if (!isCompAssign) |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3816 | ImpCastExprToType(lex, LHSTy); |
| 3817 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3818 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3819 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3820 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3821 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3822 | } |
| 3823 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3824 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3825 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3826 | unsigned OpaqueOpc, bool isRelational) { |
| 3827 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 3828 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3829 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3830 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3831 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3832 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 3833 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 3834 | UsualArithmeticConversions(lex, rex); |
| 3835 | else { |
| 3836 | UsualUnaryConversions(lex); |
| 3837 | UsualUnaryConversions(rex); |
| 3838 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3839 | QualType lType = lex->getType(); |
| 3840 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3841 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3842 | if (!lType->isFloatingType() |
| 3843 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3844 | // For non-floating point types, check for self-comparisons of the form |
| 3845 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3846 | // often indicate logic errors in the program. |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 3847 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 3848 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3849 | Expr *LHSStripped = lex->IgnoreParens(); |
| 3850 | Expr *RHSStripped = rex->IgnoreParens(); |
| 3851 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 3852 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 3853 | if (DRL->getDecl() == DRR->getDecl() && |
| 3854 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3855 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3856 | |
| 3857 | if (isa<CastExpr>(LHSStripped)) |
| 3858 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 3859 | if (isa<CastExpr>(RHSStripped)) |
| 3860 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 3861 | |
| 3862 | // Warn about comparisons against a string constant (unless the other |
| 3863 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3864 | Expr *literalString = 0; |
| 3865 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3866 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3867 | !RHSStripped->isNullPointerConstant(Context)) { |
| 3868 | literalString = lex; |
| 3869 | literalStringStripped = LHSStripped; |
| 3870 | } |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3871 | else if ((isa<StringLiteral>(RHSStripped) || |
| 3872 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3873 | !LHSStripped->isNullPointerConstant(Context)) { |
| 3874 | literalString = rex; |
| 3875 | literalStringStripped = RHSStripped; |
| 3876 | } |
| 3877 | |
| 3878 | if (literalString) { |
| 3879 | std::string resultComparison; |
| 3880 | switch (Opc) { |
| 3881 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 3882 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 3883 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 3884 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 3885 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 3886 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 3887 | default: assert(false && "Invalid comparison operator"); |
| 3888 | } |
| 3889 | Diag(Loc, diag::warn_stringcompare) |
| 3890 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 3891 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 3892 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 3893 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 3894 | "strcmp(") |
| 3895 | << CodeModificationHint::CreateInsertion( |
| 3896 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3897 | resultComparison); |
| 3898 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 3899 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3900 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3901 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3902 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3903 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3904 | if (isRelational) { |
| 3905 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3906 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3907 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3908 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3909 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3910 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3911 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 3912 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3913 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3914 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3915 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3916 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3917 | |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3918 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 3919 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3920 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3921 | // All of the following pointer related warnings are GCC extensions, except |
| 3922 | // when handling null pointer constants. One day, we can consider making them |
| 3923 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 3924 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3925 | QualType LCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3926 | Context.getCanonicalType(lType->getAsPointerType()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3927 | QualType RCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3928 | Context.getCanonicalType(rType->getAsPointerType()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3929 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3930 | // Simple check: if the pointee types are identical, we're done. |
| 3931 | if (LCanPointeeTy == RCanPointeeTy) |
| 3932 | return ResultTy; |
| 3933 | |
| 3934 | if (getLangOptions().CPlusPlus) { |
| 3935 | // C++ [expr.rel]p2: |
| 3936 | // [...] Pointer conversions (4.10) and qualification |
| 3937 | // conversions (4.4) are performed on pointer operands (or on |
| 3938 | // a pointer operand and a null pointer constant) to bring |
| 3939 | // them to their composite pointer type. [...] |
| 3940 | // |
| 3941 | // C++ [expr.eq]p2 uses the same notion for (in)equality |
| 3942 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 3943 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3944 | if (T.isNull()) { |
| 3945 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 3946 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 3947 | return QualType(); |
| 3948 | } |
| 3949 | |
| 3950 | ImpCastExprToType(lex, T); |
| 3951 | ImpCastExprToType(rex, T); |
| 3952 | return ResultTy; |
| 3953 | } |
| 3954 | |
Steve Naroff | 66296cb | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 3955 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3956 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 3957 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Eli Friedman | 3d815e7 | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 3958 | RCanPointeeTy.getUnqualifiedType()) && |
Steve Naroff | 389bf46 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 3959 | !Context.areComparableObjCPointerTypes(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3960 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3961 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3962 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3963 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3964 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3965 | } |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 3966 | // C++ allows comparison of pointers with null pointer constants. |
| 3967 | if (getLangOptions().CPlusPlus) { |
| 3968 | if (lType->isPointerType() && RHSIsNull) { |
| 3969 | ImpCastExprToType(rex, lType); |
| 3970 | return ResultTy; |
| 3971 | } |
| 3972 | if (rType->isPointerType() && LHSIsNull) { |
| 3973 | ImpCastExprToType(lex, rType); |
| 3974 | return ResultTy; |
| 3975 | } |
| 3976 | // And comparison of nullptr_t with itself. |
| 3977 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 3978 | return ResultTy; |
| 3979 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3980 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3981 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3982 | QualType lpointee = lType->getAsBlockPointerType()->getPointeeType(); |
| 3983 | QualType rpointee = rType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3984 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3985 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3986 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3987 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3988 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3989 | } |
| 3990 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3991 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3992 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3993 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3994 | if (!isRelational |
| 3995 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 3996 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3997 | if (!LHSIsNull && !RHSIsNull) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3998 | if (!((rType->isPointerType() && rType->getAsPointerType() |
| 3999 | ->getPointeeType()->isVoidType()) |
| 4000 | || (lType->isPointerType() && lType->getAsPointerType() |
| 4001 | ->getPointeeType()->isVoidType()))) |
| 4002 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4003 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4004 | } |
| 4005 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4006 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4007 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4008 | |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4009 | if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4010 | if (lType->isPointerType() || rType->isPointerType()) { |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4011 | const PointerType *LPT = lType->getAsPointerType(); |
| 4012 | const PointerType *RPT = rType->getAsPointerType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4013 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4014 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4015 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4016 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4017 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4018 | if (!LPtrToVoid && !RPtrToVoid && |
| 4019 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4020 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4021 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4022 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4023 | return ResultTy; |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4024 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4025 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4026 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4027 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4028 | if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) { |
| 4029 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4030 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4031 | } else { |
| 4032 | if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4033 | Diag(Loc, diag::warn_incompatible_qualified_id_operands) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4034 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4035 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4036 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4037 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4038 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4039 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4040 | if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4041 | rType->isIntegerType()) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4042 | if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4043 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4044 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4045 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4046 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4047 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4048 | if (lType->isIntegerType() && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4049 | (rType->isPointerType() || rType->isObjCQualifiedIdType())) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4050 | if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4051 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4052 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4053 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4054 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4055 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4056 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4057 | if (!isRelational && RHSIsNull |
| 4058 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4059 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4060 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4061 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4062 | if (!isRelational && LHSIsNull |
| 4063 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4064 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4065 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4066 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4067 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4068 | } |
| 4069 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4070 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4071 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4072 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4073 | /// types. |
| 4074 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4075 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4076 | bool isRelational) { |
| 4077 | // Check to make sure we're operating on vectors of the same type and width, |
| 4078 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4079 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4080 | if (vType.isNull()) |
| 4081 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4082 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4083 | QualType lType = lex->getType(); |
| 4084 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4085 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4086 | // For non-floating point types, check for self-comparisons of the form |
| 4087 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4088 | // often indicate logic errors in the program. |
| 4089 | if (!lType->isFloatingType()) { |
| 4090 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4091 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4092 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4093 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4094 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4095 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4096 | // Check for comparisons of floating point operands using != and ==. |
| 4097 | if (!isRelational && lType->isFloatingType()) { |
| 4098 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4099 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4100 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4101 | |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4102 | // FIXME: Vector compare support in the LLVM backend is not fully reliable, |
| 4103 | // just reject all vector comparisons for now. |
| 4104 | if (1) { |
| 4105 | Diag(Loc, diag::err_typecheck_vector_comparison) |
| 4106 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4107 | return QualType(); |
| 4108 | } |
| 4109 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4110 | // Return the type for the comparison, which is the same as vector type for |
| 4111 | // integer vectors, or an integer type of identical size and number of |
| 4112 | // elements for floating point vectors. |
| 4113 | if (lType->isIntegerType()) |
| 4114 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4115 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4116 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4117 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4118 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4119 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4120 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4121 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4122 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4123 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4124 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4125 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4126 | } |
| 4127 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4128 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4129 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4130 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4131 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4132 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4133 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4134 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4135 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4136 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4137 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4138 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4139 | } |
| 4140 | |
| 4141 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4142 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4143 | { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4144 | UsualUnaryConversions(lex); |
| 4145 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4146 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 4147 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4148 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4149 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4150 | } |
| 4151 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4152 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4153 | /// is a read-only property; return true if so. A readonly property expression |
| 4154 | /// depends on various declarations and thus must be treated specially. |
| 4155 | /// |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4156 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4157 | { |
| 4158 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4159 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4160 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4161 | QualType BaseType = PropExpr->getBase()->getType(); |
| 4162 | if (const PointerType *PTy = BaseType->getAsPointerType()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4163 | if (const ObjCInterfaceType *IFTy = |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4164 | PTy->getPointeeType()->getAsObjCInterfaceType()) |
| 4165 | if (ObjCInterfaceDecl *IFace = IFTy->getDecl()) |
| 4166 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4167 | return true; |
| 4168 | } |
| 4169 | } |
| 4170 | return false; |
| 4171 | } |
| 4172 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4173 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4174 | /// emit an error and return true. If so, return false. |
| 4175 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4176 | SourceLocation OrigLoc = Loc; |
| 4177 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
| 4178 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4179 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4180 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4181 | if (IsLV == Expr::MLV_Valid) |
| 4182 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4183 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4184 | unsigned Diag = 0; |
| 4185 | bool NeedType = false; |
| 4186 | switch (IsLV) { // C99 6.5.16p2 |
| 4187 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4188 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4189 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4190 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4191 | NeedType = true; |
| 4192 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4193 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4194 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4195 | NeedType = true; |
| 4196 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4197 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4198 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4199 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4200 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4201 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4202 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4203 | case Expr::MLV_IncompleteType: |
| 4204 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4205 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4206 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 4207 | E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4208 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4209 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4210 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4211 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4212 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4213 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4214 | case Expr::MLV_ReadonlyProperty: |
| 4215 | Diag = diag::error_readonly_property_assignment; |
| 4216 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4217 | case Expr::MLV_NoSetterProperty: |
| 4218 | Diag = diag::error_nosetter_property_assignment; |
| 4219 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4220 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4221 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4222 | SourceRange Assign; |
| 4223 | if (Loc != OrigLoc) |
| 4224 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4225 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4226 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4227 | else |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4228 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4229 | return true; |
| 4230 | } |
| 4231 | |
| 4232 | |
| 4233 | |
| 4234 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4235 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4236 | SourceLocation Loc, |
| 4237 | QualType CompoundType) { |
| 4238 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4239 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4240 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4241 | |
| 4242 | QualType LHSType = LHS->getType(); |
| 4243 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4244 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4245 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4246 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4247 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4248 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4249 | // Special case of NSObject attributes on c-style pointer types. |
| 4250 | if (ConvTy == IncompatiblePointer && |
| 4251 | ((Context.isObjCNSObjectType(LHSType) && |
| 4252 | Context.isObjCObjectPointerType(RHSType)) || |
| 4253 | (Context.isObjCNSObjectType(RHSType) && |
| 4254 | Context.isObjCObjectPointerType(LHSType)))) |
| 4255 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4256 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4257 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4258 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4259 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4260 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4261 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4262 | RHSCheck = ICE->getSubExpr(); |
| 4263 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4264 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4265 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4266 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4267 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4268 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4269 | // And there is a space or other character before the subexpr of the |
| 4270 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4271 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4272 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4273 | Diag(Loc, diag::warn_not_compound_assign) |
| 4274 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4275 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4276 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4277 | } |
| 4278 | } else { |
| 4279 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4280 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4281 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4282 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4283 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4284 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4285 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4286 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4287 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4288 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4289 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4290 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4291 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4292 | // 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] | 4293 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4294 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4295 | } |
| 4296 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4297 | // C99 6.5.17 |
| 4298 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4299 | // 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] | 4300 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4301 | |
| 4302 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4303 | // incomplete in C++). |
| 4304 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4305 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4306 | } |
| 4307 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4308 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4309 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4310 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4311 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4312 | if (Op->isTypeDependent()) |
| 4313 | return Context.DependentTy; |
| 4314 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4315 | QualType ResType = Op->getType(); |
| 4316 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4317 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4318 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4319 | // Decrement of bool is not allowed. |
| 4320 | if (!isInc) { |
| 4321 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 4322 | return QualType(); |
| 4323 | } |
| 4324 | // Increment of bool sets it to true, but is deprecated. |
| 4325 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 4326 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4327 | // OK! |
| 4328 | } else if (const PointerType *PT = ResType->getAsPointerType()) { |
| 4329 | // C99 6.5.2.4p2, 6.5.6p2 |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4330 | if (PT->getPointeeType()->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4331 | if (getLangOptions().CPlusPlus) { |
| 4332 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 4333 | << Op->getSourceRange(); |
| 4334 | return QualType(); |
| 4335 | } |
| 4336 | |
| 4337 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4338 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4339 | } else if (PT->getPointeeType()->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4340 | if (getLangOptions().CPlusPlus) { |
| 4341 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 4342 | << Op->getType() << Op->getSourceRange(); |
| 4343 | return QualType(); |
| 4344 | } |
| 4345 | |
| 4346 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4347 | << ResType << Op->getSourceRange(); |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4348 | } else if (RequireCompleteType(OpLoc, PT->getPointeeType(), |
| 4349 | diag::err_typecheck_arithmetic_incomplete_type, |
| 4350 | Op->getSourceRange(), SourceRange(), |
| 4351 | ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4352 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4353 | } else if (ResType->isComplexType()) { |
| 4354 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 4355 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4356 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4357 | } else { |
| 4358 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4359 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4360 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4361 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4362 | // 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] | 4363 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4364 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4365 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4366 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4367 | } |
| 4368 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4369 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4370 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4371 | /// where the declaration is needed for type checking. We only need to |
| 4372 | /// handle cases when the expression references a function designator |
| 4373 | /// or is an lvalue. Here are some examples: |
| 4374 | /// - &(x) => x |
| 4375 | /// - &*****f => f for f a function designator. |
| 4376 | /// - &s.xx => s |
| 4377 | /// - &s.zz[1].yy -> s, if zz is an array |
| 4378 | /// - *(x + 1) -> x, if x is an array |
| 4379 | /// - &"123"[2] -> 0 |
| 4380 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4381 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4382 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4383 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 4384 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4385 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4386 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4387 | // If this is an arrow operator, the address is an offset from |
| 4388 | // the base's value, so the object the base refers to is |
| 4389 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4390 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4391 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4392 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4393 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4394 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4395 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 4396 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4397 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 4398 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 4399 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 4400 | return getPrimaryDecl(ICE->getSubExpr()); |
| 4401 | } |
| 4402 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4403 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4404 | case Stmt::UnaryOperatorClass: { |
| 4405 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4406 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4407 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4408 | case UnaryOperator::Real: |
| 4409 | case UnaryOperator::Imag: |
| 4410 | case UnaryOperator::Extension: |
| 4411 | return getPrimaryDecl(UO->getSubExpr()); |
| 4412 | default: |
| 4413 | return 0; |
| 4414 | } |
| 4415 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4416 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4417 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4418 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4419 | // If the result of an implicit cast is an l-value, we care about |
| 4420 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4421 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4422 | default: |
| 4423 | return 0; |
| 4424 | } |
| 4425 | } |
| 4426 | |
| 4427 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4428 | /// 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] | 4429 | /// 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] | 4430 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4431 | /// 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] | 4432 | /// 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] | 4433 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4434 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4435 | // Make sure to ignore parentheses in subsequent checks |
| 4436 | op = op->IgnoreParens(); |
| 4437 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 4438 | if (op->isTypeDependent()) |
| 4439 | return Context.DependentTy; |
| 4440 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4441 | if (getLangOptions().C99) { |
| 4442 | // Implement C99-only parts of addressof rules. |
| 4443 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 4444 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 4445 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 4446 | // (assuming the deref expression is valid). |
| 4447 | return uOp->getSubExpr()->getType(); |
| 4448 | } |
| 4449 | // Technically, there should be a check for array subscript |
| 4450 | // expressions here, but the result of one is always an lvalue anyway. |
| 4451 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4452 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 4453 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 4454 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4455 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 4456 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4457 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4458 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4459 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4460 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 4461 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4462 | return QualType(); |
| 4463 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 4464 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4465 | // The operand cannot be a bit-field |
| 4466 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4467 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 4468 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4469 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 4470 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4471 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4472 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4473 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 4474 | return QualType(); |
| 4475 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4476 | // 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] | 4477 | // with the register storage-class specifier. |
| 4478 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 4479 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4480 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4481 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4482 | return QualType(); |
| 4483 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4484 | } else if (isa<OverloadedFunctionDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4485 | return Context.OverloadTy; |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4486 | } else if (isa<FieldDecl>(dcl)) { |
| 4487 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4488 | // Could be a pointer to member, though, if there is an explicit |
| 4489 | // scope qualifier for the class. |
| 4490 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 4491 | DeclContext *Ctx = dcl->getDeclContext(); |
| 4492 | if (Ctx && Ctx->isRecord()) |
| 4493 | return Context.getMemberPointerType(op->getType(), |
| 4494 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 4495 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4496 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 4497 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4498 | // As above. |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4499 | if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance()) |
| 4500 | return Context.getMemberPointerType(op->getType(), |
| 4501 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 4502 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4503 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4504 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4505 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4506 | if (lval == Expr::LV_IncompleteVoidType) { |
| 4507 | // Taking the address of a void variable is technically illegal, but we |
| 4508 | // allow it in cases which are otherwise valid. |
| 4509 | // Example: "extern void x; void* y = &x;". |
| 4510 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 4511 | } |
| 4512 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4513 | // If the operand has type "type", the result has type "pointer to type". |
| 4514 | return Context.getPointerType(op->getType()); |
| 4515 | } |
| 4516 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4517 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4518 | if (Op->isTypeDependent()) |
| 4519 | return Context.DependentTy; |
| 4520 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4521 | UsualUnaryConversions(Op); |
| 4522 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4523 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4524 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 4525 | // incomplete type or void. It would be possible to warn about dereferencing |
| 4526 | // a void pointer, but it's completely well-defined, and such a warning is |
| 4527 | // unlikely to catch any mistakes. |
| 4528 | if (const PointerType *PT = Ty->getAsPointerType()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4529 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4530 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4531 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4532 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4533 | return QualType(); |
| 4534 | } |
| 4535 | |
| 4536 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 4537 | tok::TokenKind Kind) { |
| 4538 | BinaryOperator::Opcode Opc; |
| 4539 | switch (Kind) { |
| 4540 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4541 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 4542 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4543 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 4544 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 4545 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 4546 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 4547 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 4548 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 4549 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 4550 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4551 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4552 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4553 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4554 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4555 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4556 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4557 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4558 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4559 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4560 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4561 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4562 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4563 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4564 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4565 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4566 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4567 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4568 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4569 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4570 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4571 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4572 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4573 | } |
| 4574 | return Opc; |
| 4575 | } |
| 4576 | |
| 4577 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4578 | tok::TokenKind Kind) { |
| 4579 | UnaryOperator::Opcode Opc; |
| 4580 | switch (Kind) { |
| 4581 | default: assert(0 && "Unknown unary op!"); |
| 4582 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4583 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4584 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4585 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4586 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4587 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4588 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4589 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4590 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4591 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4592 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4593 | } |
| 4594 | return Opc; |
| 4595 | } |
| 4596 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4597 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4598 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4599 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4600 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4601 | unsigned Op, |
| 4602 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4603 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4604 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4605 | // The following two variables are used for compound assignment operators |
| 4606 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 4607 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4608 | |
| 4609 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4610 | case BinaryOperator::Assign: |
| 4611 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4612 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4613 | case BinaryOperator::PtrMemD: |
| 4614 | case BinaryOperator::PtrMemI: |
| 4615 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4616 | Opc == BinaryOperator::PtrMemI); |
| 4617 | break; |
| 4618 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4619 | case BinaryOperator::Div: |
| 4620 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4621 | break; |
| 4622 | case BinaryOperator::Rem: |
| 4623 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4624 | break; |
| 4625 | case BinaryOperator::Add: |
| 4626 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4627 | break; |
| 4628 | case BinaryOperator::Sub: |
| 4629 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4630 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4631 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4632 | case BinaryOperator::Shr: |
| 4633 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4634 | break; |
| 4635 | case BinaryOperator::LE: |
| 4636 | case BinaryOperator::LT: |
| 4637 | case BinaryOperator::GE: |
| 4638 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4639 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4640 | break; |
| 4641 | case BinaryOperator::EQ: |
| 4642 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4643 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4644 | break; |
| 4645 | case BinaryOperator::And: |
| 4646 | case BinaryOperator::Xor: |
| 4647 | case BinaryOperator::Or: |
| 4648 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4649 | break; |
| 4650 | case BinaryOperator::LAnd: |
| 4651 | case BinaryOperator::LOr: |
| 4652 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4653 | break; |
| 4654 | case BinaryOperator::MulAssign: |
| 4655 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4656 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4657 | CompLHSTy = CompResultTy; |
| 4658 | if (!CompResultTy.isNull()) |
| 4659 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4660 | break; |
| 4661 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4662 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4663 | CompLHSTy = CompResultTy; |
| 4664 | if (!CompResultTy.isNull()) |
| 4665 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4666 | break; |
| 4667 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4668 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4669 | if (!CompResultTy.isNull()) |
| 4670 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4671 | break; |
| 4672 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4673 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4674 | if (!CompResultTy.isNull()) |
| 4675 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4676 | break; |
| 4677 | case BinaryOperator::ShlAssign: |
| 4678 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4679 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4680 | CompLHSTy = CompResultTy; |
| 4681 | if (!CompResultTy.isNull()) |
| 4682 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4683 | break; |
| 4684 | case BinaryOperator::AndAssign: |
| 4685 | case BinaryOperator::XorAssign: |
| 4686 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4687 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 4688 | CompLHSTy = CompResultTy; |
| 4689 | if (!CompResultTy.isNull()) |
| 4690 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4691 | break; |
| 4692 | case BinaryOperator::Comma: |
| 4693 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 4694 | break; |
| 4695 | } |
| 4696 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4697 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4698 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4699 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 4700 | else |
| 4701 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4702 | CompLHSTy, CompResultTy, |
| 4703 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4704 | } |
| 4705 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4706 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4707 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 4708 | tok::TokenKind Kind, |
| 4709 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4710 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 4711 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4712 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4713 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 4714 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4715 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4716 | if (getLangOptions().CPlusPlus && |
| 4717 | (lhs->getType()->isOverloadableType() || |
| 4718 | rhs->getType()->isOverloadableType())) { |
| 4719 | // Find all of the overloaded operators visible from this |
| 4720 | // point. We perform both an operator-name lookup from the local |
| 4721 | // scope and an argument-dependent lookup based on the types of |
| 4722 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 4723 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4724 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 4725 | if (OverOp != OO_None) { |
| 4726 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 4727 | Functions); |
| 4728 | Expr *Args[2] = { lhs, rhs }; |
| 4729 | DeclarationName OpName |
| 4730 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4731 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 4732 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4733 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4734 | // Build the (potentially-overloaded, potentially-dependent) |
| 4735 | // binary operation. |
| 4736 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4737 | } |
| 4738 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4739 | // Build a built-in binary operation. |
| 4740 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4741 | } |
| 4742 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4743 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 4744 | unsigned OpcIn, |
| 4745 | ExprArg InputArg) { |
| 4746 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4747 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4748 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4749 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4750 | QualType resultType; |
| 4751 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4752 | case UnaryOperator::PostInc: |
| 4753 | case UnaryOperator::PostDec: |
| 4754 | case UnaryOperator::OffsetOf: |
| 4755 | assert(false && "Invalid unary operator"); |
| 4756 | break; |
| 4757 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4758 | case UnaryOperator::PreInc: |
| 4759 | case UnaryOperator::PreDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4760 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
| 4761 | Opc == UnaryOperator::PreInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4762 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4763 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4764 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 4765 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4766 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 4767 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4768 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 4769 | break; |
| 4770 | case UnaryOperator::Plus: |
| 4771 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4772 | UsualUnaryConversions(Input); |
| 4773 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4774 | if (resultType->isDependentType()) |
| 4775 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4776 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 4777 | break; |
| 4778 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 4779 | resultType->isEnumeralType()) |
| 4780 | break; |
| 4781 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 4782 | Opc == UnaryOperator::Plus && |
| 4783 | resultType->isPointerType()) |
| 4784 | break; |
| 4785 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4786 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4787 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4788 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4789 | UsualUnaryConversions(Input); |
| 4790 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4791 | if (resultType->isDependentType()) |
| 4792 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4793 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 4794 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 4795 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4796 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4797 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4798 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4799 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4800 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4801 | break; |
| 4802 | case UnaryOperator::LNot: // logical negation |
| 4803 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4804 | DefaultFunctionArrayConversion(Input); |
| 4805 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4806 | if (resultType->isDependentType()) |
| 4807 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4808 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4809 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4810 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4811 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4812 | // In C++, it's bool. C++ 5.3.1p8 |
| 4813 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4814 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4815 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4816 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 4817 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4818 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4819 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4820 | resultType = Input->getType(); |
| 4821 | break; |
| 4822 | } |
| 4823 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4824 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4825 | |
| 4826 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4827 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4828 | } |
| 4829 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4830 | // Unary Operators. 'Tok' is the token for the operator. |
| 4831 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 4832 | tok::TokenKind Op, ExprArg input) { |
| 4833 | Expr *Input = (Expr*)input.get(); |
| 4834 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 4835 | |
| 4836 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 4837 | // Find all of the overloaded operators visible from this |
| 4838 | // point. We perform both an operator-name lookup from the local |
| 4839 | // scope and an argument-dependent lookup based on the types of |
| 4840 | // the arguments. |
| 4841 | FunctionSet Functions; |
| 4842 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 4843 | if (OverOp != OO_None) { |
| 4844 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 4845 | Functions); |
| 4846 | DeclarationName OpName |
| 4847 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4848 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 4849 | } |
| 4850 | |
| 4851 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 4852 | } |
| 4853 | |
| 4854 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 4855 | } |
| 4856 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 4857 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4858 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 4859 | SourceLocation LabLoc, |
| 4860 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4861 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 4862 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4863 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 4864 | // If we haven't seen this label yet, create a forward reference. It |
| 4865 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 4866 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4867 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4868 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4869 | // 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] | 4870 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 4871 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4872 | } |
| 4873 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4874 | Sema::OwningExprResult |
| 4875 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 4876 | SourceLocation RPLoc) { // "({..})" |
| 4877 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4878 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 4879 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 4880 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4881 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 4882 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4883 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4884 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4885 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 4886 | // example, it is not possible to goto into a stmt expression apparently. |
| 4887 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4888 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4889 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 4890 | // as the type of the stmtexpr. |
| 4891 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4892 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4893 | if (!Compound->body_empty()) { |
| 4894 | Stmt *LastStmt = Compound->body_back(); |
| 4895 | // If LastStmt is a label, skip down through into the body. |
| 4896 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 4897 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4898 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4899 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4900 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4901 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4902 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4903 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 4904 | // expressions are not lvalues. |
| 4905 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4906 | substmt.release(); |
| 4907 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4908 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4909 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4910 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 4911 | SourceLocation BuiltinLoc, |
| 4912 | SourceLocation TypeLoc, |
| 4913 | TypeTy *argty, |
| 4914 | OffsetOfComponent *CompPtr, |
| 4915 | unsigned NumComponents, |
| 4916 | SourceLocation RPLoc) { |
| 4917 | // FIXME: This function leaks all expressions in the offset components on |
| 4918 | // error. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4919 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 4920 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4921 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4922 | bool Dependent = ArgTy->isDependentType(); |
| 4923 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4924 | // We must have at least one component that refers to the type, and the first |
| 4925 | // one is known to be a field designator. Verify that the ArgTy represents |
| 4926 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4927 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4928 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4929 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4930 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 4931 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 4932 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4933 | // Otherwise, create a null pointer as the base, and iteratively process |
| 4934 | // the offsetof designators. |
| 4935 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 4936 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4937 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4938 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 4939 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4940 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 4941 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4942 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 4943 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4944 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4945 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 4946 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4947 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4948 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 4949 | bool DidWarnAboutNonPOD = false; |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 4950 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4951 | // FIXME: Dependent case loses a lot of information here. And probably |
| 4952 | // leaks like a sieve. |
| 4953 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 4954 | const OffsetOfComponent &OC = CompPtr[i]; |
| 4955 | if (OC.isBrackets) { |
| 4956 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 4957 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 4958 | if (!AT) { |
| 4959 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4960 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 4961 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4962 | } |
| 4963 | |
| 4964 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 4965 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4966 | // Promote the array so it looks more like a normal array subscript |
| 4967 | // expression. |
| 4968 | DefaultFunctionArrayConversion(Res); |
| 4969 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4970 | // C99 6.5.2.1p1 |
| 4971 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4972 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4973 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4974 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 4975 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4976 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4977 | |
| 4978 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 4979 | OC.LocEnd); |
| 4980 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4981 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4982 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4983 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 4984 | if (!RC) { |
| 4985 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4986 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 4987 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4988 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 4989 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4990 | // Get the decl corresponding to this. |
| 4991 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 4992 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 4993 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 4994 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 4995 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 4996 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 4997 | DidWarnAboutNonPOD = true; |
| 4998 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 4999 | } |
| 5000 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5001 | FieldDecl *MemberDecl |
| 5002 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 5003 | LookupMemberName) |
| 5004 | .getAsDecl()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5005 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5006 | if (!MemberDecl) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5007 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 5008 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5009 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5010 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5011 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5012 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5013 | Res = BuildAnonymousStructUnionMemberReference( |
| 5014 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5015 | } else { |
| 5016 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5017 | // doesn't matter here. |
| 5018 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5019 | MemberDecl->getType().getNonReferenceType()); |
| 5020 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5021 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5022 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5023 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5024 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5025 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5026 | } |
| 5027 | |
| 5028 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5029 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5030 | TypeTy *arg1,TypeTy *arg2, |
| 5031 | SourceLocation RPLoc) { |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5032 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 5033 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5034 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5035 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5036 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5037 | if (getLangOptions().CPlusPlus) { |
| 5038 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5039 | << SourceRange(BuiltinLoc, RPLoc); |
| 5040 | return ExprError(); |
| 5041 | } |
| 5042 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5043 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5044 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5045 | } |
| 5046 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5047 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5048 | ExprArg cond, |
| 5049 | ExprArg expr1, ExprArg expr2, |
| 5050 | SourceLocation RPLoc) { |
| 5051 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5052 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5053 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5054 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5055 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5056 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5057 | QualType resType; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5058 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5059 | resType = Context.DependentTy; |
| 5060 | } else { |
| 5061 | // The conditional expression is required to be a constant expression. |
| 5062 | llvm::APSInt condEval(32); |
| 5063 | SourceLocation ExpLoc; |
| 5064 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5065 | return ExprError(Diag(ExpLoc, |
| 5066 | diag::err_typecheck_choose_expr_requires_constant) |
| 5067 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5068 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5069 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5070 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 5071 | } |
| 5072 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5073 | cond.release(); expr1.release(); expr2.release(); |
| 5074 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 5075 | resType, RPLoc)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5076 | } |
| 5077 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5078 | //===----------------------------------------------------------------------===// |
| 5079 | // Clang Extensions. |
| 5080 | //===----------------------------------------------------------------------===// |
| 5081 | |
| 5082 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5083 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5084 | // Analyze block parameters. |
| 5085 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5086 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5087 | // Add BSI to CurBlock. |
| 5088 | BSI->PrevBlockInfo = CurBlock; |
| 5089 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5090 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5091 | BSI->ReturnType = 0; |
| 5092 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5093 | BSI->hasBlockDeclRefExprs = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5094 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5095 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5096 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5097 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5098 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5099 | } |
| 5100 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5101 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5102 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5103 | |
| 5104 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5105 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Fariborz Jahanian | 3d1a7af | 2009-05-18 23:17:46 +0000 | [diff] [blame] | 5106 | ProcessDeclAttributes(CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5107 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5108 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5109 | if (T->isArrayType()) { |
| 5110 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5111 | diag::err_block_returns_array); |
| 5112 | return; |
| 5113 | } |
| 5114 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5115 | // The parameter list is optional, if there was none, assume (). |
| 5116 | if (!T->isFunctionType()) |
| 5117 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5118 | |
| 5119 | CurBlock->hasPrototype = true; |
| 5120 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5121 | // Check for a valid sentinel attribute on this block. |
| 5122 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
| 5123 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5124 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5125 | // FIXME: remove the attribute. |
| 5126 | } |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5127 | QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType(); |
| 5128 | |
| 5129 | // Do not allow returning a objc interface by-value. |
| 5130 | if (RetTy->isObjCInterfaceType()) { |
| 5131 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5132 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5133 | return; |
| 5134 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5135 | return; |
| 5136 | } |
| 5137 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5138 | // Analyze arguments to block. |
| 5139 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5140 | "Not a function declarator!"); |
| 5141 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5142 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5143 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5144 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5145 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5146 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5147 | // no arguments, not a function that takes a single void argument. |
| 5148 | if (FTI.hasPrototype && |
| 5149 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5150 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5151 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5152 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5153 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5154 | } else if (FTI.hasPrototype) { |
| 5155 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5156 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5157 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5158 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5159 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5160 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5161 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Fariborz Jahanian | 3d1a7af | 2009-05-18 23:17:46 +0000 | [diff] [blame] | 5162 | ProcessDeclAttributes(CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5163 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5164 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5165 | // If this has an identifier, add it to the scope stack. |
| 5166 | if ((*AI)->getIdentifier()) |
| 5167 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5168 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5169 | // Check for a valid sentinel attribute on this block. |
| 5170 | if (!CurBlock->isVariadic && CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
| 5171 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5172 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5173 | // FIXME: remove the attribute. |
| 5174 | } |
| 5175 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5176 | // Analyze the return type. |
| 5177 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5178 | QualType RetTy = T->getAsFunctionType()->getResultType(); |
| 5179 | |
| 5180 | // Do not allow returning a objc interface by-value. |
| 5181 | if (RetTy->isObjCInterfaceType()) { |
| 5182 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5183 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5184 | } else if (!RetTy->isDependentType()) |
| 5185 | CurBlock->ReturnType = RetTy.getTypePtr(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5186 | } |
| 5187 | |
| 5188 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5189 | /// is invoked to pop the information about the block from the action impl. |
| 5190 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5191 | // Ensure that CurBlock is deleted. |
| 5192 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5193 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5194 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5195 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5196 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5197 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5198 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5199 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5200 | } |
| 5201 | |
| 5202 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5203 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5204 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5205 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5206 | // If blocks are disabled, emit an error. |
| 5207 | if (!LangOpts.Blocks) |
| 5208 | Diag(CaretLoc, diag::err_blocks_disable); |
| 5209 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5210 | // Ensure that CurBlock is deleted. |
| 5211 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5212 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5213 | PopDeclContext(); |
| 5214 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5215 | // Pop off CurBlock, handle nested blocks. |
| 5216 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5217 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5218 | QualType RetTy = Context.VoidTy; |
| 5219 | if (BSI->ReturnType) |
| 5220 | RetTy = QualType(BSI->ReturnType, 0); |
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 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 5223 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 5224 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5225 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5226 | QualType BlockTy; |
| 5227 | if (!BSI->hasPrototype) |
Eli Friedman | 687abff | 2009-06-08 04:24:21 +0000 | [diff] [blame] | 5228 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5229 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5230 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Argyrios Kyrtzidis | 7fb5e48 | 2008-10-26 16:43:14 +0000 | [diff] [blame] | 5231 | BSI->isVariadic, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5232 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5233 | // FIXME: Check that return/parameter types are complete/non-abstract |
| 5234 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5235 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5236 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5237 | // If needed, diagnose invalid gotos and switches in the block. |
| 5238 | if (CurFunctionNeedsScopeChecking) |
| 5239 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 5240 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
| 5241 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5242 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5243 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 5244 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5245 | } |
| 5246 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5247 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 5248 | ExprArg expr, TypeTy *type, |
| 5249 | SourceLocation RPLoc) { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5250 | QualType T = QualType::getFromOpaquePtr(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5251 | Expr *E = static_cast<Expr*>(expr.get()); |
| 5252 | Expr *OrigExpr = E; |
| 5253 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5254 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5255 | |
| 5256 | // Get the va_list type |
| 5257 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5258 | if (VaListType->isArrayType()) { |
| 5259 | // Deal with implicit array decay; for example, on x86-64, |
| 5260 | // va_list is an array, but it's supposed to decay to |
| 5261 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5262 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5263 | // Make sure the input expression also decays appropriately. |
| 5264 | UsualUnaryConversions(E); |
| 5265 | } else { |
| 5266 | // Otherwise, the va_list argument must be an l-value because |
| 5267 | // it is modified by va_arg. |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5268 | if (!E->isTypeDependent() && |
| 5269 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5270 | return ExprError(); |
| 5271 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5272 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5273 | if (!E->isTypeDependent() && |
| 5274 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5275 | return ExprError(Diag(E->getLocStart(), |
| 5276 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5277 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 5278 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5279 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5280 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5281 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5282 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5283 | expr.release(); |
| 5284 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 5285 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5286 | } |
| 5287 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5288 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5289 | // The type of __null will be int or long, depending on the size of |
| 5290 | // pointers on the target. |
| 5291 | QualType Ty; |
| 5292 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 5293 | Ty = Context.IntTy; |
| 5294 | else |
| 5295 | Ty = Context.LongTy; |
| 5296 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5297 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5298 | } |
| 5299 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5300 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 5301 | SourceLocation Loc, |
| 5302 | QualType DstType, QualType SrcType, |
| 5303 | Expr *SrcExpr, const char *Flavor) { |
| 5304 | // Decode the result (notice that AST's are still created for extensions). |
| 5305 | bool isInvalid = false; |
| 5306 | unsigned DiagKind; |
| 5307 | switch (ConvTy) { |
| 5308 | default: assert(0 && "Unknown conversion type"); |
| 5309 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5310 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5311 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 5312 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5313 | case IntToPointer: |
| 5314 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 5315 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5316 | case IncompatiblePointer: |
| 5317 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 5318 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5319 | case IncompatiblePointerSign: |
| 5320 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 5321 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5322 | case FunctionVoidPointer: |
| 5323 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 5324 | break; |
| 5325 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 5326 | // If the qualifiers lost were because we were applying the |
| 5327 | // (deprecated) C++ conversion from a string literal to a char* |
| 5328 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 5329 | // Ideally, this check would be performed in |
| 5330 | // CheckPointerTypesForAssignment. However, that would require a |
| 5331 | // bit of refactoring (so that the second argument is an |
| 5332 | // expression, rather than a type), which should be done as part |
| 5333 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 5334 | // C++ semantics. |
| 5335 | if (getLangOptions().CPlusPlus && |
| 5336 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 5337 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5338 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 5339 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5340 | case IntToBlockPointer: |
| 5341 | DiagKind = diag::err_int_to_block_pointer; |
| 5342 | break; |
| 5343 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 5344 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5345 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5346 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5347 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5348 | // it can give a more specific diagnostic. |
| 5349 | DiagKind = diag::warn_incompatible_qualified_id; |
| 5350 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5351 | case IncompatibleVectors: |
| 5352 | DiagKind = diag::warn_incompatible_vectors; |
| 5353 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5354 | case Incompatible: |
| 5355 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 5356 | isInvalid = true; |
| 5357 | break; |
| 5358 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5359 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 5360 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 5361 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5362 | return isInvalid; |
| 5363 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5364 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 5365 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5366 | llvm::APSInt ICEResult; |
| 5367 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 5368 | if (Result) |
| 5369 | *Result = ICEResult; |
| 5370 | return false; |
| 5371 | } |
| 5372 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5373 | Expr::EvalResult EvalResult; |
| 5374 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5375 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5376 | EvalResult.HasSideEffects) { |
| 5377 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 5378 | |
| 5379 | if (EvalResult.Diag) { |
| 5380 | // We only show the note if it's not the usual "invalid subexpression" |
| 5381 | // or if it's actually in a subexpression. |
| 5382 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 5383 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 5384 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 5385 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5386 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5387 | return true; |
| 5388 | } |
| 5389 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5390 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 5391 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5392 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5393 | if (EvalResult.Diag && |
| 5394 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 5395 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5396 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5397 | if (Result) |
| 5398 | *Result = EvalResult.Val.getInt(); |
| 5399 | return false; |
| 5400 | } |