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 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 91 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 92 | Expr *Ex = (Expr *)E; |
| 93 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 94 | } |
| 95 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 96 | //===----------------------------------------------------------------------===// |
| 97 | // Standard Promotions and Conversions |
| 98 | //===----------------------------------------------------------------------===// |
| 99 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 100 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 101 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 102 | QualType Ty = E->getType(); |
| 103 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 104 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 105 | if (Ty->isFunctionType()) |
| 106 | ImpCastExprToType(E, Context.getPointerType(Ty)); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 107 | else if (Ty->isArrayType()) { |
| 108 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 109 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 110 | // type 'array of type' is converted to an expression that has type 'pointer |
| 111 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 112 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 113 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 114 | // |
| 115 | // C++ 4.2p1: |
| 116 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 117 | // T" can be converted to an rvalue of type "pointer to T". |
| 118 | // |
| 119 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 120 | E->isLvalue(Context) == Expr::LV_Valid) |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 121 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); |
| 122 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 125 | /// \brief Whether this is a promotable bitfield reference according |
| 126 | /// to C99 6.3.1.1p2, bullet 2. |
| 127 | /// |
| 128 | /// \returns the type this bit-field will promote to, or NULL if no |
| 129 | /// promotion occurs. |
| 130 | static QualType isPromotableBitField(Expr *E, ASTContext &Context) { |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 131 | FieldDecl *Field = E->getBitField(); |
| 132 | if (!Field) |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 133 | return QualType(); |
| 134 | |
| 135 | const BuiltinType *BT = Field->getType()->getAsBuiltinType(); |
| 136 | if (!BT) |
| 137 | return QualType(); |
| 138 | |
| 139 | if (BT->getKind() != BuiltinType::Bool && |
| 140 | BT->getKind() != BuiltinType::Int && |
| 141 | BT->getKind() != BuiltinType::UInt) |
| 142 | return QualType(); |
| 143 | |
| 144 | llvm::APSInt BitWidthAP; |
| 145 | if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context)) |
| 146 | return QualType(); |
| 147 | |
| 148 | uint64_t BitWidth = BitWidthAP.getZExtValue(); |
| 149 | uint64_t IntSize = Context.getTypeSize(Context.IntTy); |
| 150 | if (BitWidth < IntSize || |
| 151 | (Field->getType()->isSignedIntegerType() && BitWidth == IntSize)) |
| 152 | return Context.IntTy; |
| 153 | |
| 154 | if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType()) |
| 155 | return Context.UnsignedIntTy; |
| 156 | |
| 157 | return QualType(); |
| 158 | } |
| 159 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 160 | /// UsualUnaryConversions - Performs various conversions that are common to most |
| 161 | /// operators (C99 6.3). The conversions of array and function types are |
| 162 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 163 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 164 | /// In these instances, this routine should *not* be called. |
| 165 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 166 | QualType Ty = Expr->getType(); |
| 167 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
| 168 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 169 | // C99 6.3.1.1p2: |
| 170 | // |
| 171 | // The following may be used in an expression wherever an int or |
| 172 | // unsigned int may be used: |
| 173 | // - an object or expression with an integer type whose integer |
| 174 | // conversion rank is less than or equal to the rank of int |
| 175 | // and unsigned int. |
| 176 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 177 | // |
| 178 | // If an int can represent all values of the original type, the |
| 179 | // value is converted to an int; otherwise, it is converted to an |
| 180 | // unsigned int. These are called the integer promotions. All |
| 181 | // other types are unchanged by the integer promotions. |
| 182 | if (Ty->isPromotableIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 183 | ImpCastExprToType(Expr, Context.IntTy); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 184 | return Expr; |
| 185 | } else { |
| 186 | QualType T = isPromotableBitField(Expr, Context); |
| 187 | if (!T.isNull()) { |
| 188 | ImpCastExprToType(Expr, T); |
| 189 | return Expr; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 194 | return Expr; |
| 195 | } |
| 196 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 197 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 198 | /// do not have a prototype. Arguments that have type float are promoted to |
| 199 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 200 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 201 | QualType Ty = Expr->getType(); |
| 202 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
| 203 | |
| 204 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
| 205 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 206 | if (BT->getKind() == BuiltinType::Float) |
| 207 | return ImpCastExprToType(Expr, Context.DoubleTy); |
| 208 | |
| 209 | UsualUnaryConversions(Expr); |
| 210 | } |
| 211 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 212 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 213 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 214 | /// interfaces passed by value. This returns true if the argument type is |
| 215 | /// completely illegal. |
| 216 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 217 | DefaultArgumentPromotion(Expr); |
| 218 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 219 | if (Expr->getType()->isObjCInterfaceType()) { |
| 220 | Diag(Expr->getLocStart(), |
| 221 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 222 | << Expr->getType() << CT; |
| 223 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 224 | } |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 225 | |
| 226 | if (!Expr->getType()->isPODType()) |
| 227 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 228 | << Expr->getType() << CT; |
| 229 | |
| 230 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 234 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 235 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 236 | /// routine returns the first non-arithmetic type found. The client is |
| 237 | /// responsible for emitting appropriate error diagnostics. |
| 238 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 239 | /// GCC. |
| 240 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 241 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 242 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 243 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 244 | |
| 245 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 246 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 247 | // For conversion purposes, we ignore any qualifiers. |
| 248 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 249 | QualType lhs = |
| 250 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
| 251 | QualType rhs = |
| 252 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 253 | |
| 254 | // If both types are identical, no conversion is needed. |
| 255 | if (lhs == rhs) |
| 256 | return lhs; |
| 257 | |
| 258 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 259 | // The caller can deal with this (e.g. pointer + int). |
| 260 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 261 | return lhs; |
| 262 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 263 | // Perform bitfield promotions. |
| 264 | QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context); |
| 265 | if (!LHSBitfieldPromoteTy.isNull()) |
| 266 | lhs = LHSBitfieldPromoteTy; |
| 267 | QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context); |
| 268 | if (!RHSBitfieldPromoteTy.isNull()) |
| 269 | rhs = RHSBitfieldPromoteTy; |
| 270 | |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 271 | QualType destType = UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 272 | if (!isCompAssign) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 273 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 274 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 275 | return destType; |
| 276 | } |
| 277 | |
| 278 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 279 | // Perform the usual unary conversions. We do this early so that |
| 280 | // integral promotions to "int" can allow us to exit early, in the |
| 281 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 282 | // qualifiers. For example, "const float" and "float" are |
| 283 | // equivalent. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 284 | if (lhs->isPromotableIntegerType()) |
| 285 | lhs = Context.IntTy; |
| 286 | else |
| 287 | lhs = lhs.getUnqualifiedType(); |
| 288 | if (rhs->isPromotableIntegerType()) |
| 289 | rhs = Context.IntTy; |
| 290 | else |
| 291 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 292 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 293 | // If both types are identical, no conversion is needed. |
| 294 | if (lhs == rhs) |
| 295 | return lhs; |
| 296 | |
| 297 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 298 | // The caller can deal with this (e.g. pointer + int). |
| 299 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 300 | return lhs; |
| 301 | |
| 302 | // At this point, we have two different arithmetic types. |
| 303 | |
| 304 | // Handle complex types first (C99 6.3.1.8p1). |
| 305 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 306 | // if we have an integer operand, the result is the complex type. |
| 307 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 308 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 309 | return lhs; |
| 310 | } |
| 311 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 312 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 313 | return rhs; |
| 314 | } |
| 315 | // This handles complex/complex, complex/float, or float/complex. |
| 316 | // When both operands are complex, the shorter operand is converted to the |
| 317 | // type of the longer, and that is the type of the result. This corresponds |
| 318 | // to what is done when combining two real floating-point operands. |
| 319 | // The fun begins when size promotion occur across type domains. |
| 320 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 321 | // floating-point type, the less precise type is converted, within it's |
| 322 | // real or complex domain, to the precision of the other type. For example, |
| 323 | // when combining a "long double" with a "double _Complex", the |
| 324 | // "double _Complex" is promoted to "long double _Complex". |
| 325 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 326 | |
| 327 | if (result > 0) { // The left side is bigger, convert rhs. |
| 328 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 329 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 330 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 331 | } |
| 332 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 333 | // domains match. This is a requirement for our implementation, C99 |
| 334 | // does not require this promotion. |
| 335 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 336 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 337 | return rhs; |
| 338 | } else { // handle "_Complex double, double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 339 | return lhs; |
| 340 | } |
| 341 | } |
| 342 | return lhs; // The domain/size match exactly. |
| 343 | } |
| 344 | // Now handle "real" floating types (i.e. float, double, long double). |
| 345 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 346 | // 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] | 347 | if (rhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 348 | // convert rhs to the lhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 349 | return lhs; |
| 350 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 351 | if (rhs->isComplexIntegerType()) { |
| 352 | // convert rhs to the complex floating point type. |
| 353 | return Context.getComplexType(lhs); |
| 354 | } |
| 355 | if (lhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 356 | // convert lhs to the rhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 357 | return rhs; |
| 358 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 359 | if (lhs->isComplexIntegerType()) { |
| 360 | // convert lhs to the complex floating point type. |
| 361 | return Context.getComplexType(rhs); |
| 362 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 363 | // We have two real floating types, float/complex combos were handled above. |
| 364 | // Convert the smaller operand to the bigger result. |
| 365 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 366 | if (result > 0) // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 367 | return lhs; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 368 | assert(result < 0 && "illegal float comparison"); |
| 369 | return rhs; // convert the lhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 370 | } |
| 371 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 372 | // Handle GCC complex int extension. |
| 373 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 374 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 375 | |
| 376 | if (lhsComplexInt && rhsComplexInt) { |
| 377 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 378 | rhsComplexInt->getElementType()) >= 0) |
| 379 | return lhs; // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 380 | return rhs; |
| 381 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 382 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 383 | return lhs; |
| 384 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 385 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 386 | return rhs; |
| 387 | } |
| 388 | } |
| 389 | // Finally, we have two differing integer types. |
| 390 | // The rules for this case are in C99 6.3.1.8 |
| 391 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 392 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 393 | rhsSigned = rhs->isSignedIntegerType(); |
| 394 | QualType destType; |
| 395 | if (lhsSigned == rhsSigned) { |
| 396 | // Same signedness; use the higher-ranked type |
| 397 | destType = compare >= 0 ? lhs : rhs; |
| 398 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 399 | // The unsigned type has greater than or equal rank to the |
| 400 | // signed type, so use the unsigned type |
| 401 | destType = lhsSigned ? rhs : lhs; |
| 402 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 403 | // The two types are different widths; if we are here, that |
| 404 | // means the signed type is larger than the unsigned type, so |
| 405 | // use the signed type. |
| 406 | destType = lhsSigned ? lhs : rhs; |
| 407 | } else { |
| 408 | // The signed type is higher-ranked than the unsigned type, |
| 409 | // but isn't actually any bigger (like unsigned int and long |
| 410 | // on most 32-bit systems). Use the unsigned type corresponding |
| 411 | // to the signed type. |
| 412 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 413 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 414 | return destType; |
| 415 | } |
| 416 | |
| 417 | //===----------------------------------------------------------------------===// |
| 418 | // Semantic Analysis for various Expression Types |
| 419 | //===----------------------------------------------------------------------===// |
| 420 | |
| 421 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 422 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 423 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 424 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 425 | /// multiple tokens. However, the common case is that StringToks points to one |
| 426 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 427 | /// |
| 428 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 429 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 430 | assert(NumStringToks && "Must have at least one string!"); |
| 431 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 432 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 433 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 434 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 435 | |
| 436 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 437 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 438 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 439 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 440 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 441 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 442 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 443 | |
| 444 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 445 | if (getLangOptions().CPlusPlus) |
| 446 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 447 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 448 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 449 | // the nul terminator character as well as the string length for pascal |
| 450 | // strings. |
| 451 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 452 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 453 | ArrayType::Normal, 0); |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 454 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 455 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 456 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 457 | Literal.GetStringLength(), |
| 458 | Literal.AnyWide, StrTy, |
| 459 | &StringTokLocs[0], |
| 460 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 461 | } |
| 462 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 463 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 464 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 465 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 466 | /// for values inside the block or for globals). |
| 467 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 468 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 469 | /// up-to-date. |
| 470 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 471 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 472 | ValueDecl *VD) { |
| 473 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 474 | // we wanted to. |
| 475 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 476 | return false; |
| 477 | |
| 478 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 479 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 480 | return false; |
| 481 | |
| 482 | // If this is a reference to an extern, static, or global variable, no need to |
| 483 | // snapshot it. |
| 484 | // FIXME: What about 'const' variables in C++? |
| 485 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 486 | if (!Var->hasLocalStorage()) |
| 487 | return false; |
| 488 | |
| 489 | // Blocks that have these can't be constant. |
| 490 | CurBlock->hasBlockDeclRefExprs = true; |
| 491 | |
| 492 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 493 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 494 | // be defined outside all of the current blocks (in which case the blocks do |
| 495 | // all get the bit). Walk the nesting chain. |
| 496 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 497 | NextBlock = NextBlock->PrevBlockInfo) { |
| 498 | // If we found the defining block for the variable, don't mark the block as |
| 499 | // having a reference outside it. |
| 500 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 501 | break; |
| 502 | |
| 503 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 504 | // a snapshot as well. |
| 505 | NextBlock->hasBlockDeclRefExprs = true; |
| 506 | } |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 507 | |
| 508 | return true; |
| 509 | } |
| 510 | |
| 511 | |
| 512 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 513 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 514 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 515 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 516 | /// 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] | 517 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 518 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 519 | IdentifierInfo &II, |
| 520 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 521 | const CXXScopeSpec *SS, |
| 522 | bool isAddressOfOperand) { |
| 523 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 524 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 525 | } |
| 526 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 527 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 528 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 529 | /// nested-name-specifier. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 530 | DeclRefExpr * |
| 531 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 532 | bool TypeDependent, bool ValueDependent, |
| 533 | const CXXScopeSpec *SS) { |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 534 | if (SS && !SS->isEmpty()) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 535 | return new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 536 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 537 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 538 | } else |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 539 | return new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 540 | } |
| 541 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 542 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 543 | /// variable corresponding to the anonymous union or struct whose type |
| 544 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 545 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 546 | RecordDecl *Record) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 547 | assert(Record->isAnonymousStructOrUnion() && |
| 548 | "Record must be an anonymous struct or union!"); |
| 549 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 550 | // FIXME: Once Decls are directly linked together, this will |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 551 | // be an O(1) operation rather than a slow walk through DeclContext's |
| 552 | // vector (which itself will be eliminated). DeclGroups might make |
| 553 | // this even better. |
| 554 | DeclContext *Ctx = Record->getDeclContext(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 555 | for (DeclContext::decl_iterator D = Ctx->decls_begin(Context), |
| 556 | DEnd = Ctx->decls_end(Context); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 557 | D != DEnd; ++D) { |
| 558 | if (*D == Record) { |
| 559 | // The object for the anonymous struct/union directly |
| 560 | // follows its type in the list of declarations. |
| 561 | ++D; |
| 562 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 563 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 564 | return *D; |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | assert(false && "Missing object for anonymous record"); |
| 569 | return 0; |
| 570 | } |
| 571 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 572 | /// \brief Given a field that represents a member of an anonymous |
| 573 | /// struct/union, build the path from that field's context to the |
| 574 | /// actual member. |
| 575 | /// |
| 576 | /// Construct the sequence of field member references we'll have to |
| 577 | /// perform to get to the field in the anonymous union/struct. The |
| 578 | /// list of members is built from the field outward, so traverse it |
| 579 | /// backwards to go from an object in the current context to the field |
| 580 | /// we found. |
| 581 | /// |
| 582 | /// \returns The variable from which the field access should begin, |
| 583 | /// for an anonymous struct/union that is not a member of another |
| 584 | /// class. Otherwise, returns NULL. |
| 585 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 586 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 587 | assert(Field->getDeclContext()->isRecord() && |
| 588 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 589 | && "Field must be stored inside an anonymous struct or union"); |
| 590 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 591 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 592 | VarDecl *BaseObject = 0; |
| 593 | DeclContext *Ctx = Field->getDeclContext(); |
| 594 | do { |
| 595 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 596 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 597 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 598 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 599 | else { |
| 600 | BaseObject = cast<VarDecl>(AnonObject); |
| 601 | break; |
| 602 | } |
| 603 | Ctx = Ctx->getParent(); |
| 604 | } while (Ctx->isRecord() && |
| 605 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 606 | |
| 607 | return BaseObject; |
| 608 | } |
| 609 | |
| 610 | Sema::OwningExprResult |
| 611 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 612 | FieldDecl *Field, |
| 613 | Expr *BaseObjectExpr, |
| 614 | SourceLocation OpLoc) { |
| 615 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 616 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
| 617 | AnonFields); |
| 618 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 619 | // Build the expression that refers to the base object, from |
| 620 | // which we will build a sequence of member references to each |
| 621 | // of the anonymous union objects and, eventually, the field we |
| 622 | // found via name lookup. |
| 623 | bool BaseObjectIsPointer = false; |
| 624 | unsigned ExtraQuals = 0; |
| 625 | if (BaseObject) { |
| 626 | // BaseObject is an anonymous struct/union variable (and is, |
| 627 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 628 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 629 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 630 | SourceLocation()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 631 | ExtraQuals |
| 632 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 633 | } else if (BaseObjectExpr) { |
| 634 | // The caller provided the base object expression. Determine |
| 635 | // whether its a pointer and whether it adds any qualifiers to the |
| 636 | // anonymous struct/union fields we're looking into. |
| 637 | QualType ObjectType = BaseObjectExpr->getType(); |
| 638 | if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) { |
| 639 | BaseObjectIsPointer = true; |
| 640 | ObjectType = ObjectPtr->getPointeeType(); |
| 641 | } |
| 642 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 643 | } else { |
| 644 | // We've found a member of an anonymous struct/union that is |
| 645 | // inside a non-anonymous struct/union, so in a well-formed |
| 646 | // program our base object expression is "this". |
| 647 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 648 | if (!MD->isStatic()) { |
| 649 | QualType AnonFieldType |
| 650 | = Context.getTagDeclType( |
| 651 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 652 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 653 | if ((Context.getCanonicalType(AnonFieldType) |
| 654 | == Context.getCanonicalType(ThisType)) || |
| 655 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 656 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 657 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 658 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 659 | BaseObjectIsPointer = true; |
| 660 | } |
| 661 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 662 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 663 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 664 | } |
| 665 | ExtraQuals = MD->getTypeQualifiers(); |
| 666 | } |
| 667 | |
| 668 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 669 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 670 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | // Build the implicit member references to the field of the |
| 674 | // anonymous struct/union. |
| 675 | Expr *Result = BaseObjectExpr; |
| 676 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 677 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 678 | FI != FIEnd; ++FI) { |
| 679 | QualType MemberType = (*FI)->getType(); |
| 680 | if (!(*FI)->isMutable()) { |
| 681 | unsigned combinedQualifiers |
| 682 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 683 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 684 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 685 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 686 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 687 | BaseObjectIsPointer = false; |
| 688 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 691 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 692 | } |
| 693 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 694 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 695 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 696 | /// performs lookup on that name and returns an expression that refers |
| 697 | /// to that name. This routine isn't directly called from the parser, |
| 698 | /// because the parser doesn't know about DeclarationName. Rather, |
| 699 | /// this routine is called by ActOnIdentifierExpr, |
| 700 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 701 | /// which form the DeclarationName from the corresponding syntactic |
| 702 | /// forms. |
| 703 | /// |
| 704 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 705 | /// function call context. LookupCtx is only used for a C++ |
| 706 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 707 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 708 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 709 | /// isAddressOfOperand means that this expression is the direct operand |
| 710 | /// of an address-of operator. This matters because this is the only |
| 711 | /// situation where a qualified name referencing a non-static member may |
| 712 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 713 | Sema::OwningExprResult |
| 714 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 715 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 716 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 717 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 718 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 719 | if (SS && SS->isInvalid()) |
| 720 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 721 | |
| 722 | // C++ [temp.dep.expr]p3: |
| 723 | // An id-expression is type-dependent if it contains: |
| 724 | // -- a nested-name-specifier that contains a class-name that |
| 725 | // names a dependent type. |
| 726 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 727 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 728 | Loc, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 729 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()))); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 730 | } |
| 731 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 732 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 733 | false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 734 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 735 | if (Lookup.isAmbiguous()) { |
| 736 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 737 | SS && SS->isSet() ? SS->getRange() |
| 738 | : SourceRange()); |
| 739 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | NamedDecl *D = Lookup.getAsDecl(); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 743 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 744 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 745 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 746 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 747 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 748 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 749 | // 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] | 750 | // found a decl, but that decl is outside the current instance method (i.e. |
| 751 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 752 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 753 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 754 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 755 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 756 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II, |
| 757 | ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 758 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 759 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 760 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 761 | |
| 762 | // If we're referencing an invalid decl, just return this as a silent |
| 763 | // error node. The error diagnostic was already emitted on the decl. |
| 764 | if (IV->isInvalidDecl()) |
| 765 | return ExprError(); |
| 766 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 767 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 768 | // If a class method attemps to use a free standing ivar, this is |
| 769 | // an error. |
| 770 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 771 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 772 | << IV->getDeclName()); |
| 773 | // If a class method uses a global variable, even if an ivar with |
| 774 | // same name exists, use the global. |
| 775 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 776 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 777 | ClassDeclared != IFace) |
| 778 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 779 | // FIXME: This should use a new expr for a direct reference, don't turn |
| 780 | // this into Self->ivar, just return a BareIVarExpr or something. |
| 781 | IdentifierInfo &II = Context.Idents.get("self"); |
| 782 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false); |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 783 | return Owned(new (Context) |
| 784 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 785 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 786 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 787 | } |
| 788 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 789 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 790 | // We should warn if a local variable hides an ivar. |
| 791 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 792 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 793 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II, |
| 794 | ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 795 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 796 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 797 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 798 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 799 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 800 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 801 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 802 | QualType T; |
| 803 | |
| 804 | if (getCurMethodDecl()->isInstanceMethod()) |
| 805 | T = Context.getPointerType(Context.getObjCInterfaceType( |
| 806 | getCurMethodDecl()->getClassInterface())); |
| 807 | else |
| 808 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 809 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 810 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 811 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 812 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 813 | // Determine whether this name might be a candidate for |
| 814 | // argument-dependent lookup. |
| 815 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 816 | HasTrailingLParen; |
| 817 | |
| 818 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 819 | // We've seen something of the form |
| 820 | // |
| 821 | // identifier( |
| 822 | // |
| 823 | // and we did not find any entity by the name |
| 824 | // "identifier". However, this identifier is still subject to |
| 825 | // argument-dependent lookup, so keep track of the name. |
| 826 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 827 | Context.OverloadTy, |
| 828 | Loc)); |
| 829 | } |
| 830 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 831 | if (D == 0) { |
| 832 | // Otherwise, this could be an implicitly declared function reference (legal |
| 833 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 834 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 835 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 836 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 837 | else { |
| 838 | // If this name wasn't predeclared and if this is not a function call, |
| 839 | // diagnose the problem. |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 840 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 841 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 842 | << Name << SS->getRange()); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 843 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 844 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 845 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 846 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 847 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 848 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 849 | } |
| 850 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 851 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 852 | // If this is an expression of the form &Class::member, don't build an |
| 853 | // implicit member ref, because we want a pointer to the member in general, |
| 854 | // not any specific instance's member. |
| 855 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 856 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 857 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 858 | QualType DType; |
| 859 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 860 | DType = FD->getType().getNonReferenceType(); |
| 861 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 862 | DType = Method->getType(); |
| 863 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 864 | DType = Context.OverloadTy; |
| 865 | } |
| 866 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 867 | if (!DType.isNull()) { |
| 868 | // The pointer is type- and value-dependent if it points into something |
| 869 | // dependent. |
| 870 | bool Dependent = false; |
| 871 | for (; DC; DC = DC->getParent()) { |
| 872 | // FIXME: could stop early at namespace scope. |
| 873 | if (DC->isRecord()) { |
| 874 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 875 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 876 | Dependent = true; |
| 877 | break; |
| 878 | } |
| 879 | } |
| 880 | } |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 881 | return Owned(BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS)); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 882 | } |
| 883 | } |
| 884 | } |
| 885 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 886 | // We may have found a field within an anonymous union or struct |
| 887 | // (C++ [class.union]). |
| 888 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 889 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 890 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 891 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 892 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 893 | if (!MD->isStatic()) { |
| 894 | // C++ [class.mfct.nonstatic]p2: |
| 895 | // [...] if name lookup (3.4.1) resolves the name in the |
| 896 | // id-expression to a nonstatic nontype member of class X or of |
| 897 | // a base class of X, the id-expression is transformed into a |
| 898 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 899 | // as the postfix-expression to the left of the '.' operator. |
| 900 | DeclContext *Ctx = 0; |
| 901 | QualType MemberType; |
| 902 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 903 | Ctx = FD->getDeclContext(); |
| 904 | MemberType = FD->getType(); |
| 905 | |
| 906 | if (const ReferenceType *RefType = MemberType->getAsReferenceType()) |
| 907 | MemberType = RefType->getPointeeType(); |
| 908 | else if (!FD->isMutable()) { |
| 909 | unsigned combinedQualifiers |
| 910 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 911 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 912 | } |
| 913 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 914 | if (!Method->isStatic()) { |
| 915 | Ctx = Method->getParent(); |
| 916 | MemberType = Method->getType(); |
| 917 | } |
| 918 | } else if (OverloadedFunctionDecl *Ovl |
| 919 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 920 | for (OverloadedFunctionDecl::function_iterator |
| 921 | Func = Ovl->function_begin(), |
| 922 | FuncEnd = Ovl->function_end(); |
| 923 | Func != FuncEnd; ++Func) { |
| 924 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 925 | if (!DMethod->isStatic()) { |
| 926 | Ctx = Ovl->getDeclContext(); |
| 927 | MemberType = Context.OverloadTy; |
| 928 | break; |
| 929 | } |
| 930 | } |
| 931 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 932 | |
| 933 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 934 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 935 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 936 | if ((Context.getCanonicalType(CtxType) |
| 937 | == Context.getCanonicalType(ThisType)) || |
| 938 | IsDerivedFrom(ThisType, CtxType)) { |
| 939 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 940 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 941 | MD->getThisType(Context)); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 942 | return Owned(new (Context) MemberExpr(This, true, D, |
Eli Friedman | 7252713 | 2009-04-29 17:56:47 +0000 | [diff] [blame] | 943 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 944 | } |
| 945 | } |
| 946 | } |
| 947 | } |
| 948 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 949 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 950 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 951 | if (MD->isStatic()) |
| 952 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 953 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 954 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 955 | } |
| 956 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 957 | // Any other ways we could have found the field in a well-formed |
| 958 | // program would have been turned into implicit member expressions |
| 959 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 960 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 961 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 962 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 963 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 964 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 965 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 966 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 967 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 968 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 969 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 970 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 971 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 972 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 973 | return Owned(BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 974 | false, false, SS)); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 975 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
| 976 | return Owned(BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 977 | false, false, SS)); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 978 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 979 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 980 | // Check whether this declaration can be used. Note that we suppress |
| 981 | // this check when we're going to perform argument-dependent lookup |
| 982 | // on this function name, because this might not be the function |
| 983 | // that overload resolution actually selects. |
| 984 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 985 | return ExprError(); |
| 986 | |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 987 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 988 | // Warn about constructs like: |
| 989 | // if (void *X = foo()) { ... } else { X }. |
| 990 | // In the else block, the pointer is always false. |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 991 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 992 | Scope *CheckS = S; |
| 993 | while (CheckS) { |
| 994 | if (CheckS->isWithinElse() && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 995 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 996 | if (Var->getType()->isBooleanType()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 997 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 998 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 999 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1000 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 1001 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1002 | break; |
| 1003 | } |
| 1004 | |
| 1005 | // Move up one more control parent to check again. |
| 1006 | CheckS = CheckS->getControlParent(); |
| 1007 | if (CheckS) |
| 1008 | CheckS = CheckS->getParent(); |
| 1009 | } |
| 1010 | } |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 1011 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(VD)) { |
| 1012 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 1013 | // C99 DR 316 says that, if a function type comes from a |
| 1014 | // function definition (without a prototype), that type is only |
| 1015 | // used for checking compatibility. Therefore, when referencing |
| 1016 | // the function, we pretend that we don't have the full function |
| 1017 | // type. |
| 1018 | QualType T = Func->getType(); |
| 1019 | QualType NoProtoType = T; |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 1020 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 1021 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 1022 | return Owned(BuildDeclRefExpr(VD, NoProtoType, Loc, false, false, SS)); |
| 1023 | } |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 1024 | } |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1025 | |
| 1026 | // Only create DeclRefExpr's for valid Decl's. |
| 1027 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1028 | return ExprError(); |
| 1029 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1030 | // If the identifier reference is inside a block, and it refers to a value |
| 1031 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1032 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1033 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1034 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1035 | // We do not do this for things like enum constants, global variables, etc, |
| 1036 | // as they do not get snapshotted. |
| 1037 | // |
| 1038 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1039 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1040 | // The BlocksAttr indicates the variable is bound by-reference. |
| 1041 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1042 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1043 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1044 | // Variable will be bound by-copy, make it const within the closure. |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1045 | ExprTy.addConst(); |
| 1046 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1047 | } |
| 1048 | // If this reference is not in a block or if the referenced variable is |
| 1049 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1050 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1051 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1052 | bool ValueDependent = false; |
| 1053 | if (getLangOptions().CPlusPlus) { |
| 1054 | // C++ [temp.dep.expr]p3: |
| 1055 | // An id-expression is type-dependent if it contains: |
| 1056 | // - an identifier that was declared with a dependent type, |
| 1057 | if (VD->getType()->isDependentType()) |
| 1058 | TypeDependent = true; |
| 1059 | // - FIXME: a template-id that is dependent, |
| 1060 | // - a conversion-function-id that specifies a dependent type, |
| 1061 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1062 | Name.getCXXNameType()->isDependentType()) |
| 1063 | TypeDependent = true; |
| 1064 | // - a nested-name-specifier that contains a class-name that |
| 1065 | // names a dependent type. |
| 1066 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1067 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1068 | DC; DC = DC->getParent()) { |
| 1069 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1070 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1071 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1072 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1073 | TypeDependent = true; |
| 1074 | break; |
| 1075 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1076 | } |
| 1077 | } |
| 1078 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1079 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1080 | // C++ [temp.dep.constexpr]p2: |
| 1081 | // |
| 1082 | // An identifier is value-dependent if it is: |
| 1083 | // - a name declared with a dependent type, |
| 1084 | if (TypeDependent) |
| 1085 | ValueDependent = true; |
| 1086 | // - the name of a non-type template parameter, |
| 1087 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1088 | ValueDependent = true; |
| 1089 | // - a constant with integral or enumeration type and is |
| 1090 | // initialized with an expression that is value-dependent |
| 1091 | // (FIXME!). |
| 1092 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1093 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1094 | return Owned(BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1095 | TypeDependent, ValueDependent, SS)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1096 | } |
| 1097 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1098 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1099 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1100 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1101 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1102 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1103 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1104 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1105 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1106 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1107 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1108 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1109 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1110 | // string. |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1111 | unsigned Length; |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 1112 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1113 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1114 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1115 | Length = MD->getSynthesizedMethodSize(); |
| 1116 | else { |
| 1117 | Diag(Loc, diag::ext_predef_outside_function); |
| 1118 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1119 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1120 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1121 | |
| 1122 | |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1123 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1124 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1125 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1126 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1127 | } |
| 1128 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1129 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1130 | llvm::SmallString<16> CharBuffer; |
| 1131 | CharBuffer.resize(Tok.getLength()); |
| 1132 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1133 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1134 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1135 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1136 | Tok.getLocation(), PP); |
| 1137 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1138 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1139 | |
| 1140 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1141 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1142 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1143 | Literal.isWide(), |
| 1144 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1147 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1148 | // 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] | 1149 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1150 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1151 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1152 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1153 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1154 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1155 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1156 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1157 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1158 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1159 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1160 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1161 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1162 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1163 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1164 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1165 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1166 | Tok.getLocation(), PP); |
| 1167 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1168 | return ExprError(); |
| 1169 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1170 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1171 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1172 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1173 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1174 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1175 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1176 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1177 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1178 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1179 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1180 | |
| 1181 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1182 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1183 | // isExact will be set by GetFloatValue(). |
| 1184 | bool isExact = false; |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1185 | Res = new (Context) FloatingLiteral(Literal.GetFloatValue(Format, &isExact), |
| 1186 | &isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1187 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1188 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1189 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1190 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1191 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1192 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1193 | // long long is a C99 feature. |
| 1194 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1195 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1196 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1197 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1198 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1199 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1200 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1201 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1202 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1203 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1204 | Ty = Context.UnsignedLongLongTy; |
| 1205 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1206 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1207 | } else { |
| 1208 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1209 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1210 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1211 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1212 | // be an unsigned int. |
| 1213 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1214 | |
| 1215 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1216 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1217 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1218 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1219 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1220 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1221 | // Does it fit in a unsigned int? |
| 1222 | if (ResultVal.isIntN(IntSize)) { |
| 1223 | // Does it fit in a signed int? |
| 1224 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1225 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1226 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1227 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1228 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1229 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1230 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1231 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1232 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1233 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1234 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1235 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1236 | // Does it fit in a unsigned long? |
| 1237 | if (ResultVal.isIntN(LongSize)) { |
| 1238 | // Does it fit in a signed long? |
| 1239 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1240 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1241 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1242 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1243 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1244 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1245 | } |
| 1246 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1247 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1248 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1249 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1250 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1251 | // Does it fit in a unsigned long long? |
| 1252 | if (ResultVal.isIntN(LongLongSize)) { |
| 1253 | // Does it fit in a signed long long? |
| 1254 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1255 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1256 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1257 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1258 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1259 | } |
| 1260 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1261 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1262 | // If we still couldn't decide a type, we probably have something that |
| 1263 | // 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] | 1264 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1265 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1266 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1267 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1268 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1269 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1270 | if (ResultVal.getBitWidth() != Width) |
| 1271 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1272 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1273 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1274 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1275 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1276 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1277 | if (Literal.isImaginary) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1278 | Res = new (Context) ImaginaryLiteral(Res, |
| 1279 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1280 | |
| 1281 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1284 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1285 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1286 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1287 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1288 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1292 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1293 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1294 | SourceLocation OpLoc, |
| 1295 | const SourceRange &ExprRange, |
| 1296 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1297 | if (exprType->isDependentType()) |
| 1298 | return false; |
| 1299 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1300 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1301 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1302 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1303 | if (isSizeof) |
| 1304 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1305 | return false; |
| 1306 | } |
| 1307 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1308 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1309 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1310 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1311 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1312 | return false; |
| 1313 | } |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1314 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1315 | if (RequireCompleteType(OpLoc, exprType, |
| 1316 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1317 | diag::err_alignof_incomplete_type, |
| 1318 | ExprRange)) |
| 1319 | return true; |
| 1320 | |
| 1321 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1322 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1323 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1324 | << exprType << isSizeof << ExprRange; |
| 1325 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1326 | } |
| 1327 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1328 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1329 | } |
| 1330 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1331 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1332 | const SourceRange &ExprRange) { |
| 1333 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1334 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1335 | // alignof decl is always ok. |
| 1336 | if (isa<DeclRefExpr>(E)) |
| 1337 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1338 | |
| 1339 | // Cannot know anything else if the expression is dependent. |
| 1340 | if (E->isTypeDependent()) |
| 1341 | return false; |
| 1342 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1343 | if (E->getBitField()) { |
| 1344 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1345 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1346 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1347 | |
| 1348 | // Alignment of a field access is always okay, so long as it isn't a |
| 1349 | // bit-field. |
| 1350 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
| 1351 | if (dyn_cast<FieldDecl>(ME->getMemberDecl())) |
| 1352 | return false; |
| 1353 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1354 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1355 | } |
| 1356 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1357 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1358 | Action::OwningExprResult |
| 1359 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1360 | bool isSizeOf, SourceRange R) { |
| 1361 | if (T.isNull()) |
| 1362 | return ExprError(); |
| 1363 | |
| 1364 | if (!T->isDependentType() && |
| 1365 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1366 | return ExprError(); |
| 1367 | |
| 1368 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1369 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1370 | Context.getSizeType(), OpLoc, |
| 1371 | R.getEnd())); |
| 1372 | } |
| 1373 | |
| 1374 | /// \brief Build a sizeof or alignof expression given an expression |
| 1375 | /// operand. |
| 1376 | Action::OwningExprResult |
| 1377 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1378 | bool isSizeOf, SourceRange R) { |
| 1379 | // Verify that the operand is valid. |
| 1380 | bool isInvalid = false; |
| 1381 | if (E->isTypeDependent()) { |
| 1382 | // Delay type-checking for type-dependent expressions. |
| 1383 | } else if (!isSizeOf) { |
| 1384 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1385 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1386 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1387 | isInvalid = true; |
| 1388 | } else { |
| 1389 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1390 | } |
| 1391 | |
| 1392 | if (isInvalid) |
| 1393 | return ExprError(); |
| 1394 | |
| 1395 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1396 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1397 | Context.getSizeType(), OpLoc, |
| 1398 | R.getEnd())); |
| 1399 | } |
| 1400 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1401 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1402 | /// the same for @c alignof and @c __alignof |
| 1403 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1404 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1405 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1406 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1407 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1408 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1409 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1410 | if (isType) { |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1411 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1412 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1413 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1414 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1415 | // Get the end location. |
| 1416 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1417 | Action::OwningExprResult Result |
| 1418 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1419 | |
| 1420 | if (Result.isInvalid()) |
| 1421 | DeleteExpr(ArgEx); |
| 1422 | |
| 1423 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1426 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1427 | if (V->isTypeDependent()) |
| 1428 | return Context.DependentTy; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1429 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1430 | // These operators return the element type of a complex type. |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1431 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1432 | return CT->getElementType(); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1433 | |
| 1434 | // Otherwise they pass through real integer and floating point types here. |
| 1435 | if (V->getType()->isArithmeticType()) |
| 1436 | return V->getType(); |
| 1437 | |
| 1438 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1439 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1440 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1441 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1445 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1446 | Action::OwningExprResult |
| 1447 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1448 | tok::TokenKind Kind, ExprArg Input) { |
| 1449 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1450 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1451 | UnaryOperator::Opcode Opc; |
| 1452 | switch (Kind) { |
| 1453 | default: assert(0 && "Unknown unary op!"); |
| 1454 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1455 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1456 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1457 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1458 | if (getLangOptions().CPlusPlus && |
| 1459 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1460 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1461 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1462 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1463 | |
| 1464 | // C++ [over.inc]p1: |
| 1465 | // |
| 1466 | // [...] If the function is a member function with one |
| 1467 | // parameter (which shall be of type int) or a non-member |
| 1468 | // function with two parameters (the second of which shall be |
| 1469 | // of type int), it defines the postfix increment operator ++ |
| 1470 | // for objects of that type. When the postfix increment is |
| 1471 | // called as a result of using the ++ operator, the int |
| 1472 | // argument will have value zero. |
| 1473 | Expr *Args[2] = { |
| 1474 | Arg, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1475 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1476 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1477 | }; |
| 1478 | |
| 1479 | // Build the candidate set for overloading |
| 1480 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1481 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1482 | |
| 1483 | // Perform overload resolution. |
| 1484 | OverloadCandidateSet::iterator Best; |
| 1485 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1486 | case OR_Success: { |
| 1487 | // We found a built-in operator or an overloaded operator. |
| 1488 | FunctionDecl *FnDecl = Best->Function; |
| 1489 | |
| 1490 | if (FnDecl) { |
| 1491 | // We matched an overloaded operator. Build a call to that |
| 1492 | // operator. |
| 1493 | |
| 1494 | // Convert the arguments. |
| 1495 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1496 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1497 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1498 | } else { |
| 1499 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1500 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1501 | FnDecl->getParamDecl(0)->getType(), |
| 1502 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1503 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1504 | } |
| 1505 | |
| 1506 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1507 | QualType ResultTy |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1508 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1509 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1510 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1511 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1512 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1513 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1514 | UsualUnaryConversions(FnExpr); |
| 1515 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1516 | Input.release(); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1517 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1518 | Args, 2, ResultTy, |
| 1519 | OpLoc)); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1520 | } else { |
| 1521 | // We matched a built-in operator. Convert the arguments, then |
| 1522 | // break out so that we will build the appropriate built-in |
| 1523 | // operator node. |
| 1524 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1525 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1526 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1527 | |
| 1528 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1529 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1530 | } |
| 1531 | |
| 1532 | case OR_No_Viable_Function: |
| 1533 | // No viable function; fall through to handling this as a |
| 1534 | // built-in operator, which will produce an error message for us. |
| 1535 | break; |
| 1536 | |
| 1537 | case OR_Ambiguous: |
| 1538 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1539 | << UnaryOperator::getOpcodeStr(Opc) |
| 1540 | << Arg->getSourceRange(); |
| 1541 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1542 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1543 | |
| 1544 | case OR_Deleted: |
| 1545 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1546 | << Best->Function->isDeleted() |
| 1547 | << UnaryOperator::getOpcodeStr(Opc) |
| 1548 | << Arg->getSourceRange(); |
| 1549 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1550 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | // Either we found no viable overloaded operator or we matched a |
| 1554 | // built-in operator. In either case, fall through to trying to |
| 1555 | // build a built-in operation. |
| 1556 | } |
| 1557 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 1558 | QualType result = CheckIncrementDecrementOperand(Arg, OpLoc, |
| 1559 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1560 | if (result.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1561 | return ExprError(); |
| 1562 | Input.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1563 | return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1566 | Action::OwningExprResult |
| 1567 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1568 | ExprArg Idx, SourceLocation RLoc) { |
| 1569 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1570 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1571 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1572 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1573 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1574 | LHSExp->getType()->isEnumeralType() || |
| 1575 | RHSExp->getType()->isRecordType() || |
| 1576 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1577 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1578 | // to the candidate set. |
| 1579 | OverloadCandidateSet CandidateSet; |
| 1580 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1581 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1582 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1583 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1584 | // Perform overload resolution. |
| 1585 | OverloadCandidateSet::iterator Best; |
| 1586 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1587 | case OR_Success: { |
| 1588 | // We found a built-in operator or an overloaded operator. |
| 1589 | FunctionDecl *FnDecl = Best->Function; |
| 1590 | |
| 1591 | if (FnDecl) { |
| 1592 | // We matched an overloaded operator. Build a call to that |
| 1593 | // operator. |
| 1594 | |
| 1595 | // Convert the arguments. |
| 1596 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1597 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1598 | PerformCopyInitialization(RHSExp, |
| 1599 | FnDecl->getParamDecl(0)->getType(), |
| 1600 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1601 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1602 | } else { |
| 1603 | // Convert the arguments. |
| 1604 | if (PerformCopyInitialization(LHSExp, |
| 1605 | FnDecl->getParamDecl(0)->getType(), |
| 1606 | "passing") || |
| 1607 | PerformCopyInitialization(RHSExp, |
| 1608 | FnDecl->getParamDecl(1)->getType(), |
| 1609 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1610 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1614 | QualType ResultTy |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1615 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1616 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1617 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1618 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1619 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1620 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1621 | UsualUnaryConversions(FnExpr); |
| 1622 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1623 | Base.release(); |
| 1624 | Idx.release(); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1625 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1626 | FnExpr, Args, 2, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1627 | ResultTy, LLoc)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1628 | } else { |
| 1629 | // We matched a built-in operator. Convert the arguments, then |
| 1630 | // break out so that we will build the appropriate built-in |
| 1631 | // operator node. |
| 1632 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1633 | "passing") || |
| 1634 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1635 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1636 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1637 | |
| 1638 | break; |
| 1639 | } |
| 1640 | } |
| 1641 | |
| 1642 | case OR_No_Viable_Function: |
| 1643 | // No viable function; fall through to handling this as a |
| 1644 | // built-in operator, which will produce an error message for us. |
| 1645 | break; |
| 1646 | |
| 1647 | case OR_Ambiguous: |
| 1648 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1649 | << "[]" |
| 1650 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1651 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1652 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1653 | |
| 1654 | case OR_Deleted: |
| 1655 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1656 | << Best->Function->isDeleted() |
| 1657 | << "[]" |
| 1658 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1659 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1660 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1661 | } |
| 1662 | |
| 1663 | // Either we found no viable overloaded operator or we matched a |
| 1664 | // built-in operator. In either case, fall through to trying to |
| 1665 | // build a built-in operation. |
| 1666 | } |
| 1667 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1668 | // Perform default conversions. |
| 1669 | DefaultFunctionArrayConversion(LHSExp); |
| 1670 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1671 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1672 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1673 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1674 | // 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] | 1675 | // 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] | 1676 | // 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] | 1677 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1678 | Expr *BaseExpr, *IndexExpr; |
| 1679 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1680 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1681 | BaseExpr = LHSExp; |
| 1682 | IndexExpr = RHSExp; |
| 1683 | ResultType = Context.DependentTy; |
| 1684 | } else if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1685 | BaseExpr = LHSExp; |
| 1686 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1687 | ResultType = PTy->getPointeeType(); |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1688 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1689 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1690 | BaseExpr = RHSExp; |
| 1691 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1692 | ResultType = PTy->getPointeeType(); |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1693 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1694 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1695 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1696 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1697 | // FIXME: need to deal with const... |
| 1698 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1699 | } else if (LHSTy->isArrayType()) { |
| 1700 | // If we see an array that wasn't promoted by |
| 1701 | // DefaultFunctionArrayConversion, it must be an array that |
| 1702 | // wasn't promoted because of the C90 rule that doesn't |
| 1703 | // allow promoting non-lvalue arrays. Warn, then |
| 1704 | // force the promotion here. |
| 1705 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1706 | LHSExp->getSourceRange(); |
| 1707 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); |
| 1708 | LHSTy = LHSExp->getType(); |
| 1709 | |
| 1710 | BaseExpr = LHSExp; |
| 1711 | IndexExpr = RHSExp; |
| 1712 | ResultType = LHSTy->getAsPointerType()->getPointeeType(); |
| 1713 | } else if (RHSTy->isArrayType()) { |
| 1714 | // Same as previous, except for 123[f().a] case |
| 1715 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1716 | RHSExp->getSourceRange(); |
| 1717 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); |
| 1718 | RHSTy = RHSExp->getType(); |
| 1719 | |
| 1720 | BaseExpr = RHSExp; |
| 1721 | IndexExpr = LHSExp; |
| 1722 | ResultType = RHSTy->getAsPointerType()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1723 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1724 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1725 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1726 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1727 | // C99 6.5.2.1p1 |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1728 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1729 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1730 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1731 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1732 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1733 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1734 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1735 | // incomplete types are not object types. |
| 1736 | if (ResultType->isFunctionType()) { |
| 1737 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1738 | << ResultType << BaseExpr->getSourceRange(); |
| 1739 | return ExprError(); |
| 1740 | } |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1741 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1742 | if (!ResultType->isDependentType() && |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1743 | RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1744 | BaseExpr->getSourceRange())) |
| 1745 | return ExprError(); |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1746 | |
| 1747 | // Diagnose bad cases where we step over interface counts. |
| 1748 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1749 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1750 | << ResultType << BaseExpr->getSourceRange(); |
| 1751 | return ExprError(); |
| 1752 | } |
| 1753 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1754 | Base.release(); |
| 1755 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1756 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1757 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1758 | } |
| 1759 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1760 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1761 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1762 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1763 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1764 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1765 | // The vector accessor can't exceed the number of elements. |
| 1766 | const char *compStr = CompName.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1767 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1768 | // 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] | 1769 | // special names that indicate a subset of exactly half the elements are |
| 1770 | // to be selected. |
| 1771 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1772 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1773 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1774 | // indicating that it is a string of hex values to be used as vector indices. |
| 1775 | bool HexSwizzle = *compStr == 's'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1776 | |
| 1777 | // Check that we've found one of the special components, or that the component |
| 1778 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1779 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1780 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1781 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1782 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1783 | do |
| 1784 | compStr++; |
| 1785 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1786 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1787 | do |
| 1788 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1789 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1790 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1791 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1792 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1793 | // We didn't get to the end of the string. This means the component names |
| 1794 | // 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] | 1795 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1796 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1797 | return QualType(); |
| 1798 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1799 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1800 | // Ensure no component accessor exceeds the width of the vector type it |
| 1801 | // operates on. |
| 1802 | if (!HalvingSwizzle) { |
| 1803 | compStr = CompName.getName(); |
| 1804 | |
| 1805 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1806 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1807 | |
| 1808 | while (*compStr) { |
| 1809 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1810 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1811 | << baseType << SourceRange(CompLoc); |
| 1812 | return QualType(); |
| 1813 | } |
| 1814 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1815 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1816 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1817 | // If this is a halving swizzle, verify that the base type has an even |
| 1818 | // number of elements. |
| 1819 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1820 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1821 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1822 | return QualType(); |
| 1823 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1824 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1825 | // 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] | 1826 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1827 | // 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] | 1828 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1829 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1830 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 1831 | : CompName.getLength(); |
| 1832 | if (HexSwizzle) |
| 1833 | CompSize--; |
| 1834 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1835 | if (CompSize == 1) |
| 1836 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1837 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1838 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1839 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1840 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1841 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1842 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1843 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1844 | } |
| 1845 | 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] | 1846 | } |
| 1847 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1848 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 1849 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1850 | const Selector &Sel, |
| 1851 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1852 | |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1853 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Context, &Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1854 | return PD; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1855 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Context, Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1856 | return OMD; |
| 1857 | |
| 1858 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1859 | E = PDecl->protocol_end(); I != E; ++I) { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1860 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
| 1861 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1862 | return D; |
| 1863 | } |
| 1864 | return 0; |
| 1865 | } |
| 1866 | |
| 1867 | static Decl *FindGetterNameDecl(const ObjCQualifiedIdType *QIdTy, |
| 1868 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1869 | const Selector &Sel, |
| 1870 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1871 | // Check protocols on qualified interfaces. |
| 1872 | Decl *GDecl = 0; |
| 1873 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1874 | E = QIdTy->qual_end(); I != E; ++I) { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1875 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, &Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1876 | GDecl = PD; |
| 1877 | break; |
| 1878 | } |
| 1879 | // Also must look for a getter name which uses property syntax. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1880 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Context, Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1881 | GDecl = OMD; |
| 1882 | break; |
| 1883 | } |
| 1884 | } |
| 1885 | if (!GDecl) { |
| 1886 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1887 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1888 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1889 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1890 | if (GDecl) |
| 1891 | return GDecl; |
| 1892 | } |
| 1893 | } |
| 1894 | return GDecl; |
| 1895 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1896 | |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 1897 | /// FindMethodInNestedImplementations - Look up a method in current and |
| 1898 | /// all base class implementations. |
| 1899 | /// |
| 1900 | ObjCMethodDecl *Sema::FindMethodInNestedImplementations( |
| 1901 | const ObjCInterfaceDecl *IFace, |
| 1902 | const Selector &Sel) { |
| 1903 | ObjCMethodDecl *Method = 0; |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 1904 | if (ObjCImplementationDecl *ImpDecl |
| 1905 | = LookupObjCImplementation(IFace->getIdentifier())) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1906 | Method = ImpDecl->getInstanceMethod(Context, Sel); |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 1907 | |
| 1908 | if (!Method && IFace->getSuperClass()) |
| 1909 | return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel); |
| 1910 | return Method; |
| 1911 | } |
| 1912 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1913 | Action::OwningExprResult |
| 1914 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 1915 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1916 | IdentifierInfo &Member, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1917 | DeclPtrTy ObjCImpDecl) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 1918 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1919 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 1920 | |
| 1921 | // Perform default conversions. |
| 1922 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1923 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1924 | QualType BaseType = BaseExpr->getType(); |
| 1925 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1926 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1927 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 1928 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1929 | if (OpKind == tok::arrow) { |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1930 | if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1931 | BaseType = PT->getPointeeType(); |
Douglas Gregor | 8ba1074 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 1932 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1933 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 1934 | MemberLoc, Member)); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1935 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1936 | return ExprError(Diag(MemberLoc, |
| 1937 | diag::err_typecheck_member_reference_arrow) |
| 1938 | << BaseType << BaseExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1939 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1940 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1941 | // Handle field access to simple records. This also handles access to fields |
| 1942 | // of the ObjC 'id' struct. |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1943 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1944 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 1945 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 1946 | diag::err_typecheck_incomplete_tag, |
| 1947 | BaseExpr->getSourceRange())) |
| 1948 | return ExprError(); |
| 1949 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1950 | // The record definition is complete, now make sure the member is valid. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1951 | // FIXME: Qualified name lookup for C++ is a bit more complicated |
| 1952 | // than this. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1953 | LookupResult Result |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1954 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1955 | LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1956 | |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1957 | if (!Result) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1958 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 1959 | << &Member << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 1960 | if (Result.isAmbiguous()) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1961 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 1962 | MemberLoc, BaseExpr->getSourceRange()); |
| 1963 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 1964 | } |
| 1965 | |
| 1966 | NamedDecl *MemberDecl = Result; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1967 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1968 | // If the decl being referenced had an error, return an error for this |
| 1969 | // sub-expr without emitting another error, in order to avoid cascading |
| 1970 | // error cases. |
| 1971 | if (MemberDecl->isInvalidDecl()) |
| 1972 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1973 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1974 | // Check the use of this field |
| 1975 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 1976 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1977 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1978 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1979 | // We may have found a field within an anonymous union or struct |
| 1980 | // (C++ [class.union]). |
| 1981 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1982 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1983 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1984 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1985 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 1986 | // FIXME: Handle address space modifiers |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1987 | QualType MemberType = FD->getType(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1988 | if (const ReferenceType *Ref = MemberType->getAsReferenceType()) |
| 1989 | MemberType = Ref->getPointeeType(); |
| 1990 | else { |
| 1991 | unsigned combinedQualifiers = |
| 1992 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1993 | if (FD->isMutable()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1994 | combinedQualifiers &= ~QualType::Const; |
| 1995 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 1996 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 1997 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1998 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 1999 | MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2000 | } |
| 2001 | |
| 2002 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2003 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2004 | Var, MemberLoc, |
| 2005 | Var->getType().getNonReferenceType())); |
| 2006 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2007 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2008 | MemberFn, MemberLoc, |
| 2009 | MemberFn->getType())); |
| 2010 | if (OverloadedFunctionDecl *Ovl |
| 2011 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2012 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2013 | MemberLoc, Context.OverloadTy)); |
| 2014 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2015 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 2016 | Enum, MemberLoc, Enum->getType())); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2017 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2018 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 2019 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2020 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2021 | // We found a declaration kind that we didn't expect. This is a |
| 2022 | // generic error message that tells the user that she can't refer |
| 2023 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2024 | return ExprError(Diag(MemberLoc, |
| 2025 | diag::err_typecheck_member_reference_unknown) |
| 2026 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2027 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2028 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2029 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2030 | // (*Obj).ivar. |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2031 | if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2032 | ObjCInterfaceDecl *ClassDeclared; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2033 | if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(Context, |
| 2034 | &Member, |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2035 | ClassDeclared)) { |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2036 | // If the decl being referenced had an error, return an error for this |
| 2037 | // sub-expr without emitting another error, in order to avoid cascading |
| 2038 | // error cases. |
| 2039 | if (IV->isInvalidDecl()) |
| 2040 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2041 | |
| 2042 | // Check whether we can reference this field. |
| 2043 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2044 | return ExprError(); |
Steve Naroff | 8bfd1b8 | 2009-03-26 16:01:08 +0000 | [diff] [blame] | 2045 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2046 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2047 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2048 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2049 | ClassOfMethodDecl = MD->getClassInterface(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2050 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2051 | // Case of a c-function declared inside an objc implementation. |
| 2052 | // FIXME: For a c-style function nested inside an objc implementation |
| 2053 | // class, there is no implementation context available, so we pass down |
| 2054 | // the context as argument to this routine. Ideally, this context need |
| 2055 | // be passed down in the AST node and somehow calculated from the AST |
| 2056 | // for a function decl. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2057 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2058 | if (ObjCImplementationDecl *IMPD = |
| 2059 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2060 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2061 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2062 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2063 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2064 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2065 | |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2066 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2067 | if (ClassDeclared != IFTy->getDecl() || |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2068 | ClassOfMethodDecl != ClassDeclared) |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2069 | Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 2070 | } |
| 2071 | // @protected |
| 2072 | else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl)) |
| 2073 | Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName(); |
| 2074 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2075 | |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2076 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2077 | MemberLoc, BaseExpr, |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 2078 | OpKind == tok::arrow)); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2079 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2080 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 2081 | << IFTy->getDecl()->getDeclName() << &Member |
| 2082 | << BaseExpr->getSourceRange()); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2083 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2084 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2085 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2086 | // pointer to a (potentially qualified) interface type. |
| 2087 | const PointerType *PTy; |
| 2088 | const ObjCInterfaceType *IFTy; |
| 2089 | if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) && |
| 2090 | (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) { |
| 2091 | ObjCInterfaceDecl *IFace = IFTy->getDecl(); |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 2092 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2093 | // Search for a declared property first. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2094 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Context, |
| 2095 | &Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2096 | // Check whether we can reference this property. |
| 2097 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2098 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2099 | QualType ResTy = PD->getType(); |
| 2100 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2101 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2102 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2103 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2104 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2105 | MemberLoc, BaseExpr)); |
| 2106 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2107 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2108 | // Check protocols on qualified interfaces. |
Chris Lattner | 9baefc2 | 2008-07-21 05:20:01 +0000 | [diff] [blame] | 2109 | for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(), |
| 2110 | E = IFTy->qual_end(); I != E; ++I) |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2111 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, |
| 2112 | &Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2113 | // Check whether we can reference this property. |
| 2114 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2115 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2116 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2117 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2118 | MemberLoc, BaseExpr)); |
| 2119 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2120 | |
| 2121 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2122 | // selector is implemented. |
| 2123 | |
| 2124 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2125 | // shared with the code in ActOnInstanceMessage. |
| 2126 | |
| 2127 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2128 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2129 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2130 | // If this reference is in an @implementation, check for 'private' methods. |
| 2131 | if (!Getter) |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2132 | Getter = FindMethodInNestedImplementations(IFace, Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2133 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2134 | // Look through local category implementations associated with the class. |
| 2135 | if (!Getter) { |
| 2136 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) { |
| 2137 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2138 | Getter = ObjCCategoryImpls[i]->getInstanceMethod(Context, Sel); |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2139 | } |
| 2140 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2141 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2142 | // Check if we can reference this property. |
| 2143 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2144 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2145 | } |
| 2146 | // If we found a getter then this may be a valid dot-reference, we |
| 2147 | // will look for the matching setter, in case it is needed. |
| 2148 | Selector SetterSel = |
| 2149 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2150 | PP.getSelectorTable(), &Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2151 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(Context, SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2152 | if (!Setter) { |
| 2153 | // If this reference is in an @implementation, also check for 'private' |
| 2154 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2155 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2156 | } |
| 2157 | // Look through local category implementations associated with the class. |
| 2158 | if (!Setter) { |
| 2159 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2160 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2161 | Setter = ObjCCategoryImpls[i]->getInstanceMethod(Context, SetterSel); |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 2162 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2163 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2164 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2165 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2166 | return ExprError(); |
| 2167 | |
| 2168 | if (Getter || Setter) { |
| 2169 | QualType PType; |
| 2170 | |
| 2171 | if (Getter) |
| 2172 | PType = Getter->getResultType(); |
| 2173 | else { |
| 2174 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2175 | E = Setter->param_end(); PI != E; ++PI) |
| 2176 | PType = (*PI)->getType(); |
| 2177 | } |
| 2178 | // FIXME: we must check that the setter has property type. |
| 2179 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2180 | Setter, MemberLoc, BaseExpr)); |
| 2181 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2182 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2183 | << &Member << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2184 | } |
Steve Naroff | 18bc164 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2185 | // Handle properties on qualified "id" protocols. |
| 2186 | const ObjCQualifiedIdType *QIdTy; |
| 2187 | if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) { |
| 2188 | // Check protocols on qualified interfaces. |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2189 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2190 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2191 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2192 | // Check the use of this declaration |
| 2193 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2194 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2195 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2196 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2197 | MemberLoc, BaseExpr)); |
| 2198 | } |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2199 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2200 | // Check the use of this method. |
| 2201 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2202 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2203 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2204 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2205 | OMD->getResultType(), |
| 2206 | OMD, OpLoc, MemberLoc, |
| 2207 | NULL, 0)); |
Fariborz Jahanian | 391d895 | 2008-12-10 00:21:50 +0000 | [diff] [blame] | 2208 | } |
| 2209 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2210 | |
| 2211 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2212 | << &Member << BaseType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2213 | } |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2214 | // Handle properties on ObjC 'Class' types. |
| 2215 | if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) { |
| 2216 | // Also must look for a getter name which uses property syntax. |
| 2217 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2218 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2219 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2220 | ObjCMethodDecl *Getter; |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2221 | // FIXME: need to also look locally in the implementation. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2222 | if ((Getter = IFace->lookupClassMethod(Context, Sel))) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2223 | // Check the use of this method. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2224 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2225 | return ExprError(); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2226 | } |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2227 | // If we found a getter then this may be a valid dot-reference, we |
| 2228 | // will look for the matching setter, in case it is needed. |
| 2229 | Selector SetterSel = |
| 2230 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2231 | PP.getSelectorTable(), &Member); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2232 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(Context, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2233 | if (!Setter) { |
| 2234 | // If this reference is in an @implementation, also check for 'private' |
| 2235 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2236 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2237 | } |
| 2238 | // Look through local category implementations associated with the class. |
| 2239 | if (!Setter) { |
| 2240 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2241 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2242 | Setter = ObjCCategoryImpls[i]->getClassMethod(Context, SetterSel); |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2243 | } |
| 2244 | } |
| 2245 | |
| 2246 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2247 | return ExprError(); |
| 2248 | |
| 2249 | if (Getter || Setter) { |
| 2250 | QualType PType; |
| 2251 | |
| 2252 | if (Getter) |
| 2253 | PType = Getter->getResultType(); |
| 2254 | else { |
| 2255 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2256 | E = Setter->param_end(); PI != E; ++PI) |
| 2257 | PType = (*PI)->getType(); |
| 2258 | } |
| 2259 | // FIXME: we must check that the setter has property type. |
| 2260 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2261 | Setter, MemberLoc, BaseExpr)); |
| 2262 | } |
| 2263 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2264 | << &Member << BaseType); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2265 | } |
| 2266 | } |
| 2267 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2268 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2269 | if (BaseType->isExtVectorType()) { |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2270 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2271 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2272 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2273 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2274 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2275 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2276 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2277 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2278 | << BaseType << BaseExpr->getSourceRange(); |
| 2279 | |
| 2280 | // If the user is trying to apply -> or . to a function or function |
| 2281 | // pointer, it's probably because they forgot parentheses to call |
| 2282 | // the function. Suggest the addition of those parentheses. |
| 2283 | if (BaseType == Context.OverloadTy || |
| 2284 | BaseType->isFunctionType() || |
| 2285 | (BaseType->isPointerType() && |
| 2286 | BaseType->getAsPointerType()->isFunctionType())) { |
| 2287 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2288 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2289 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2290 | } |
| 2291 | |
| 2292 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2295 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2296 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2297 | /// function prototype Proto. Call is the call expression itself, and |
| 2298 | /// Fn is the function expression. For a C++ member function, this |
| 2299 | /// routine does not attempt to convert the object argument. Returns |
| 2300 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2301 | bool |
| 2302 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2303 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2304 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2305 | Expr **Args, unsigned NumArgs, |
| 2306 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2307 | // 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] | 2308 | // assignment, to the types of the corresponding parameter, ... |
| 2309 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2310 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2311 | bool Invalid = false; |
| 2312 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2313 | // If too few arguments are available (and we don't have default |
| 2314 | // arguments for the remaining parameters), don't make the call. |
| 2315 | if (NumArgs < NumArgsInProto) { |
| 2316 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2317 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2318 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2319 | // Use default arguments for missing arguments |
| 2320 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2321 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2322 | } |
| 2323 | |
| 2324 | // If too many are passed and not variadic, error on the extras and drop |
| 2325 | // them. |
| 2326 | if (NumArgs > NumArgsInProto) { |
| 2327 | if (!Proto->isVariadic()) { |
| 2328 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2329 | diag::err_typecheck_call_too_many_args) |
| 2330 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2331 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2332 | Args[NumArgs-1]->getLocEnd()); |
| 2333 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2334 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2335 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2336 | } |
| 2337 | NumArgsToCheck = NumArgsInProto; |
| 2338 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2339 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2340 | // Continue to check argument types (even if we have too few/many args). |
| 2341 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2342 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2343 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2344 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2345 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2346 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2347 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2348 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2349 | ProtoArgType, |
| 2350 | diag::err_call_incomplete_argument, |
| 2351 | Arg->getSourceRange())) |
| 2352 | return true; |
| 2353 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2354 | // Pass the argument. |
| 2355 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2356 | return true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2357 | } else |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2358 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2359 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2360 | QualType ArgType = Arg->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2361 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2362 | Call->setArg(i, Arg); |
| 2363 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2364 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2365 | // If this is a variadic call, handle args passed through "...". |
| 2366 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2367 | VariadicCallType CallType = VariadicFunction; |
| 2368 | if (Fn->getType()->isBlockPointerType()) |
| 2369 | CallType = VariadicBlock; // Block |
| 2370 | else if (isa<MemberExpr>(Fn)) |
| 2371 | CallType = VariadicMethod; |
| 2372 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2373 | // Promote the arguments (C99 6.5.2.2p7). |
| 2374 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2375 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2376 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2377 | Call->setArg(i, Arg); |
| 2378 | } |
| 2379 | } |
| 2380 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2381 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2382 | } |
| 2383 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2384 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2385 | /// This provides the location of the left/right parens and a list of comma |
| 2386 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2387 | Action::OwningExprResult |
| 2388 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2389 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2390 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2391 | unsigned NumArgs = args.size(); |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2392 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2393 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2394 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2395 | FunctionDecl *FDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2396 | DeclarationName UnqualifiedName; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2397 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2398 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2399 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2400 | // in which case we won't do any semantic analysis now. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2401 | // FIXME: Will need to cache the results of name lookup (including ADL) in Fn. |
| 2402 | bool Dependent = false; |
| 2403 | if (Fn->isTypeDependent()) |
| 2404 | Dependent = true; |
| 2405 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2406 | Dependent = true; |
| 2407 | |
| 2408 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2409 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2410 | Context.DependentTy, RParenLoc)); |
| 2411 | |
| 2412 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2413 | if (Fn->getType()->isRecordType()) |
| 2414 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2415 | CommaLocs, RParenLoc)); |
| 2416 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2417 | // Determine whether this is a call to a member function. |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2418 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) |
| 2419 | if (isa<OverloadedFunctionDecl>(MemExpr->getMemberDecl()) || |
| 2420 | isa<CXXMethodDecl>(MemExpr->getMemberDecl())) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2421 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2422 | CommaLocs, RParenLoc)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2423 | } |
| 2424 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2425 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2426 | DeclRefExpr *DRExpr = NULL; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2427 | Expr *FnExpr = Fn; |
| 2428 | bool ADL = true; |
| 2429 | while (true) { |
| 2430 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2431 | FnExpr = IcExpr->getSubExpr(); |
| 2432 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2433 | // Parentheses around a function disable ADL |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2434 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2435 | ADL = false; |
| 2436 | FnExpr = PExpr->getSubExpr(); |
| 2437 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2438 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2439 | == UnaryOperator::AddrOf) { |
| 2440 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2441 | } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) { |
| 2442 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2443 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
| 2444 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2445 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2446 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2447 | UnqualifiedName = DepName->getName(); |
| 2448 | break; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2449 | } else { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2450 | // Any kind of name that does not refer to a declaration (or |
| 2451 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2452 | ADL = false; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2453 | break; |
| 2454 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2455 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2456 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2457 | OverloadedFunctionDecl *Ovl = 0; |
| 2458 | if (DRExpr) { |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2459 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2460 | Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl()); |
| 2461 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2462 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2463 | if (Ovl || (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2464 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2465 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2466 | ADL = false; |
| 2467 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2468 | // We don't perform ADL in C. |
| 2469 | if (!getLangOptions().CPlusPlus) |
| 2470 | ADL = false; |
| 2471 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2472 | if (Ovl || ADL) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2473 | FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0, |
| 2474 | UnqualifiedName, LParenLoc, Args, |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2475 | NumArgs, CommaLocs, RParenLoc, ADL); |
| 2476 | if (!FDecl) |
| 2477 | return ExprError(); |
| 2478 | |
| 2479 | // Update Fn to refer to the actual function selected. |
| 2480 | Expr *NewFn = 0; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2481 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2482 | = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr)) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2483 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2484 | QDRExpr->getLocation(), |
| 2485 | false, false, |
| 2486 | QDRExpr->getQualifierRange(), |
| 2487 | QDRExpr->getQualifier()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2488 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2489 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2490 | Fn->getSourceRange().getBegin()); |
| 2491 | Fn->Destroy(Context); |
| 2492 | Fn = NewFn; |
| 2493 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2494 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2495 | |
| 2496 | // Promote the function operand. |
| 2497 | UsualUnaryConversions(Fn); |
| 2498 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2499 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2500 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2501 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2502 | Args, NumArgs, |
| 2503 | Context.BoolTy, |
| 2504 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2505 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2506 | const FunctionType *FuncT; |
| 2507 | if (!Fn->getType()->isBlockPointerType()) { |
| 2508 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2509 | // have type pointer to function". |
| 2510 | const PointerType *PT = Fn->getType()->getAsPointerType(); |
| 2511 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2512 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2513 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2514 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2515 | } else { // This is a block call. |
| 2516 | FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()-> |
| 2517 | getAsFunctionType(); |
| 2518 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2519 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2520 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2521 | << Fn->getType() << Fn->getSourceRange()); |
| 2522 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2523 | // Check for a valid return type |
| 2524 | if (!FuncT->getResultType()->isVoidType() && |
| 2525 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2526 | FuncT->getResultType(), |
| 2527 | diag::err_call_incomplete_return, |
| 2528 | TheCall->getSourceRange())) |
| 2529 | return ExprError(); |
| 2530 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2531 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2532 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2533 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2534 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2535 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2536 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2537 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2538 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2539 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2540 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2541 | if (FDecl) { |
| 2542 | // Check if we have too few/too many template arguments, based |
| 2543 | // on our knowledge of the function definition. |
| 2544 | const FunctionDecl *Def = 0; |
Douglas Gregor | 7297134 | 2009-04-18 00:02:19 +0000 | [diff] [blame] | 2545 | if (FDecl->getBody(Context, Def) && NumArgs != Def->param_size()) |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2546 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2547 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2548 | } |
| 2549 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2550 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2551 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2552 | Expr *Arg = Args[i]; |
| 2553 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2554 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2555 | Arg->getType(), |
| 2556 | diag::err_call_incomplete_argument, |
| 2557 | Arg->getSourceRange())) |
| 2558 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2559 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2560 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2561 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2562 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2563 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2564 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2565 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2566 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2567 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2568 | // Do special checking on direct calls to functions. |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2569 | if (FDecl) |
| 2570 | return CheckFunctionCall(FDecl, TheCall.take()); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2571 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2572 | return Owned(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2573 | } |
| 2574 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2575 | Action::OwningExprResult |
| 2576 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2577 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2578 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2579 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2580 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2581 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2582 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2583 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2584 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2585 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2586 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2587 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2588 | } else if (RequireCompleteType(LParenLoc, literalType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2589 | diag::err_typecheck_decl_incomplete_type, |
| 2590 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2591 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2592 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2593 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2594 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2595 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2596 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2597 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2598 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2599 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2600 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2601 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2602 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2603 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2604 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2605 | } |
| 2606 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2607 | Action::OwningExprResult |
| 2608 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2609 | SourceLocation RBraceLoc) { |
| 2610 | unsigned NumInit = initlist.size(); |
| 2611 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2612 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2613 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2614 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2615 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2616 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2617 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2618 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2619 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2620 | } |
| 2621 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2622 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 58d5ebb | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 2623 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2624 | UsualUnaryConversions(castExpr); |
| 2625 | |
| 2626 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2627 | // type needs to be scalar. |
| 2628 | if (castType->isVoidType()) { |
| 2629 | // Cast to void allows any expr type. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2630 | } else if (castType->isDependentType() || castExpr->isTypeDependent()) { |
| 2631 | // We can't check any more until template instantiation time. |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2632 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2633 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2634 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2635 | (castType->isStructureType() || castType->isUnionType())) { |
| 2636 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2637 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2638 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2639 | << castType << castExpr->getSourceRange(); |
| 2640 | } else if (castType->isUnionType()) { |
| 2641 | // GCC cast to union extension |
| 2642 | RecordDecl *RD = castType->getAsRecordType()->getDecl(); |
| 2643 | RecordDecl::field_iterator Field, FieldEnd; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2644 | for (Field = RD->field_begin(Context), FieldEnd = RD->field_end(Context); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2645 | Field != FieldEnd; ++Field) { |
| 2646 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2647 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2648 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2649 | << castExpr->getSourceRange(); |
| 2650 | break; |
| 2651 | } |
| 2652 | } |
| 2653 | if (Field == FieldEnd) |
| 2654 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2655 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2656 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2657 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2658 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2659 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2660 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2661 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2662 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2663 | return Diag(castExpr->getLocStart(), |
| 2664 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2665 | << castExpr->getType() << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2666 | } else if (castExpr->getType()->isVectorType()) { |
| 2667 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 2668 | return true; |
| 2669 | } else if (castType->isVectorType()) { |
| 2670 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 2671 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2672 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 2673 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 2674 | } else if (!castType->isArithmeticType()) { |
| 2675 | QualType castExprType = castExpr->getType(); |
| 2676 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 2677 | return Diag(castExpr->getLocStart(), |
| 2678 | diag::err_cast_pointer_from_non_pointer_int) |
| 2679 | << castExprType << castExpr->getSourceRange(); |
| 2680 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 2681 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 2682 | return Diag(castExpr->getLocStart(), |
| 2683 | diag::err_cast_pointer_to_non_pointer_int) |
| 2684 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2685 | } |
| 2686 | return false; |
| 2687 | } |
| 2688 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 2689 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2690 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2691 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2692 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2693 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2694 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2695 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2696 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2697 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2698 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2699 | } else |
| 2700 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2701 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2702 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2703 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2704 | return false; |
| 2705 | } |
| 2706 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2707 | Action::OwningExprResult |
| 2708 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 2709 | SourceLocation RParenLoc, ExprArg Op) { |
| 2710 | assert((Ty != 0) && (Op.get() != 0) && |
| 2711 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2712 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2713 | Expr *castExpr = Op.takeAs<Expr>(); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2714 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 2715 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2716 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2717 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2718 | return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2719 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2720 | } |
| 2721 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2722 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 2723 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2724 | /// C99 6.5.15 |
| 2725 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 2726 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2727 | // C++ is sufficiently different to merit its own checker. |
| 2728 | if (getLangOptions().CPlusPlus) |
| 2729 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 2730 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2731 | UsualUnaryConversions(Cond); |
| 2732 | UsualUnaryConversions(LHS); |
| 2733 | UsualUnaryConversions(RHS); |
| 2734 | QualType CondTy = Cond->getType(); |
| 2735 | QualType LHSTy = LHS->getType(); |
| 2736 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 2737 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2738 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2739 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 2740 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 2741 | << CondTy; |
| 2742 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2743 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2744 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2745 | // Now check the two expressions. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2746 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2747 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 2748 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2749 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 2750 | UsualArithmeticConversions(LHS, RHS); |
| 2751 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 2752 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2753 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2754 | // If both operands are the same structure or union type, the result is that |
| 2755 | // type. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2756 | if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3 |
| 2757 | if (const RecordType *RHSRT = RHSTy->getAsRecordType()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2758 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2759 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2760 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2761 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2762 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2763 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2764 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2765 | // 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] | 2766 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2767 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 2768 | if (!LHSTy->isVoidType()) |
| 2769 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2770 | << RHS->getSourceRange(); |
| 2771 | if (!RHSTy->isVoidType()) |
| 2772 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2773 | << LHS->getSourceRange(); |
| 2774 | ImpCastExprToType(LHS, Context.VoidTy); |
| 2775 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 2776 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 2777 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2778 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 2779 | // the type of the other operand." |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2780 | if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() || |
| 2781 | Context.isObjCObjectPointerType(LHSTy)) && |
| 2782 | RHS->isNullPointerConstant(Context)) { |
| 2783 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 2784 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2785 | } |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2786 | if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() || |
| 2787 | Context.isObjCObjectPointerType(RHSTy)) && |
| 2788 | LHS->isNullPointerConstant(Context)) { |
| 2789 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 2790 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2791 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2792 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2793 | const PointerType *LHSPT = LHSTy->getAsPointerType(); |
| 2794 | const PointerType *RHSPT = RHSTy->getAsPointerType(); |
| 2795 | const BlockPointerType *LHSBPT = LHSTy->getAsBlockPointerType(); |
| 2796 | const BlockPointerType *RHSBPT = RHSTy->getAsBlockPointerType(); |
| 2797 | |
Chris Lattner | bd57d36 | 2008-01-06 22:50:31 +0000 | [diff] [blame] | 2798 | // Handle the case where both operands are pointers before we handle null |
| 2799 | // pointer constants in case both operands are null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2800 | if ((LHSPT || LHSBPT) && (RHSPT || RHSBPT)) { // C99 6.5.15p3,6 |
| 2801 | // get the "pointed to" types |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 2802 | QualType lhptee = (LHSPT ? LHSPT->getPointeeType() |
| 2803 | : LHSBPT->getPointeeType()); |
| 2804 | QualType rhptee = (RHSPT ? RHSPT->getPointeeType() |
| 2805 | : RHSBPT->getPointeeType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2806 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2807 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 2808 | if (lhptee->isVoidType() |
| 2809 | && (RHSBPT || rhptee->isIncompleteOrObjectType())) { |
| 2810 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 2811 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
| 2812 | QualType destType = Context.getPointerType(destPointee); |
| 2813 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2814 | ImpCastExprToType(RHS, destType); // promote to void* |
| 2815 | return destType; |
| 2816 | } |
| 2817 | if (rhptee->isVoidType() |
| 2818 | && (LHSBPT || lhptee->isIncompleteOrObjectType())) { |
| 2819 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
| 2820 | QualType destType = Context.getPointerType(destPointee); |
| 2821 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2822 | ImpCastExprToType(RHS, destType); // promote to void* |
| 2823 | return destType; |
| 2824 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2825 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2826 | bool sameKind = (LHSPT && RHSPT) || (LHSBPT && RHSBPT); |
| 2827 | if (sameKind |
| 2828 | && Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 2829 | // Two identical pointer types are always compatible. |
| 2830 | return LHSTy; |
| 2831 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2832 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2833 | QualType compositeType = LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2834 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2835 | // If either type is an Objective-C object type then check |
| 2836 | // compatibility according to Objective-C. |
| 2837 | if (Context.isObjCObjectPointerType(LHSTy) || |
| 2838 | Context.isObjCObjectPointerType(RHSTy)) { |
| 2839 | // If both operands are interfaces and either operand can be |
| 2840 | // assigned to the other, use that type as the composite |
| 2841 | // type. This allows |
| 2842 | // xxx ? (A*) a : (B*) b |
| 2843 | // where B is a subclass of A. |
| 2844 | // |
| 2845 | // Additionally, as for assignment, if either type is 'id' |
| 2846 | // allow silent coercion. Finally, if the types are |
| 2847 | // incompatible then make sure to use 'id' as the composite |
| 2848 | // type so the result is acceptable for sending messages to. |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2849 | |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2850 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 2851 | // It could return the composite type. |
| 2852 | const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType(); |
| 2853 | const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType(); |
| 2854 | if (LHSIface && RHSIface && |
| 2855 | Context.canAssignObjCInterfaces(LHSIface, RHSIface)) { |
| 2856 | compositeType = LHSTy; |
| 2857 | } else if (LHSIface && RHSIface && |
| 2858 | Context.canAssignObjCInterfaces(RHSIface, LHSIface)) { |
| 2859 | compositeType = RHSTy; |
| 2860 | } else if (Context.isObjCIdStructType(lhptee) || |
| 2861 | Context.isObjCIdStructType(rhptee)) { |
| 2862 | compositeType = Context.getObjCIdType(); |
| 2863 | } else if (LHSBPT || RHSBPT) { |
| 2864 | if (!sameKind |
| 2865 | || !Context.typesAreBlockCompatible(lhptee.getUnqualifiedType(), |
| 2866 | rhptee.getUnqualifiedType())) |
| 2867 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 2868 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 2869 | return QualType(); |
| 2870 | } else { |
| 2871 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 2872 | << LHSTy << RHSTy |
| 2873 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 2874 | QualType incompatTy = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2875 | ImpCastExprToType(LHS, incompatTy); |
| 2876 | ImpCastExprToType(RHS, incompatTy); |
Daniel Dunbar | a56f746 | 2008-08-26 00:41:39 +0000 | [diff] [blame] | 2877 | return incompatTy; |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2878 | } |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2879 | } else if (!sameKind |
| 2880 | || !Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 2881 | rhptee.getUnqualifiedType())) { |
| 2882 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 2883 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 2884 | // In this situation, we assume void* type. No especially good |
| 2885 | // reason, but this is what gcc does, and we do have to pick |
| 2886 | // to get a consistent AST. |
| 2887 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 2888 | ImpCastExprToType(LHS, incompatTy); |
| 2889 | ImpCastExprToType(RHS, incompatTy); |
| 2890 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2891 | } |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 2892 | // The pointer types are compatible. |
| 2893 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 2894 | // differently qualified versions of compatible types, the result type is |
| 2895 | // a pointer to an appropriately qualified version of the *composite* |
| 2896 | // type. |
| 2897 | // FIXME: Need to calculate the composite type. |
| 2898 | // FIXME: Need to add qualifiers |
| 2899 | ImpCastExprToType(LHS, compositeType); |
| 2900 | ImpCastExprToType(RHS, compositeType); |
| 2901 | return compositeType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2902 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2903 | |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 2904 | // GCC compatibility: soften pointer/integer mismatch. |
| 2905 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 2906 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 2907 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 2908 | ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. |
| 2909 | return RHSTy; |
| 2910 | } |
| 2911 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 2912 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 2913 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 2914 | ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. |
| 2915 | return LHSTy; |
| 2916 | } |
| 2917 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2918 | // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type |
| 2919 | // evaluates to "struct objc_object *" (and is handled above when comparing |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2920 | // id with statically typed objects). |
| 2921 | if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2922 | // GCC allows qualified id and any Objective-C type to devolve to |
| 2923 | // id. Currently localizing to here until clear this should be |
| 2924 | // part of ObjCQualifiedIdTypesAreCompatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2925 | if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2926 | (LHSTy->isObjCQualifiedIdType() && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2927 | Context.isObjCObjectPointerType(RHSTy)) || |
| 2928 | (RHSTy->isObjCQualifiedIdType() && |
| 2929 | Context.isObjCObjectPointerType(LHSTy))) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2930 | // FIXME: This is not the correct composite type. This only |
| 2931 | // happens to work because id can more or less be used anywhere, |
| 2932 | // however this may change the type of method sends. |
| 2933 | // FIXME: gcc adds some type-checking of the arguments and emits |
| 2934 | // (confusing) incompatible comparison warnings in some |
| 2935 | // cases. Investigate. |
| 2936 | QualType compositeType = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2937 | ImpCastExprToType(LHS, compositeType); |
| 2938 | ImpCastExprToType(RHS, compositeType); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2939 | return compositeType; |
| 2940 | } |
| 2941 | } |
| 2942 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2943 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2944 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 2945 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2946 | return QualType(); |
| 2947 | } |
| 2948 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2949 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2950 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2951 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 2952 | SourceLocation ColonLoc, |
| 2953 | ExprArg Cond, ExprArg LHS, |
| 2954 | ExprArg RHS) { |
| 2955 | Expr *CondExpr = (Expr *) Cond.get(); |
| 2956 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2957 | |
| 2958 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 2959 | // was the condition. |
| 2960 | bool isLHSNull = LHSExpr == 0; |
| 2961 | if (isLHSNull) |
| 2962 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2963 | |
| 2964 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 2965 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2966 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2967 | return ExprError(); |
| 2968 | |
| 2969 | Cond.release(); |
| 2970 | LHS.release(); |
| 2971 | RHS.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2972 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2973 | isLHSNull ? 0 : LHSExpr, |
| 2974 | RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2975 | } |
| 2976 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2977 | |
| 2978 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2979 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2980 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 2981 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 2982 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2983 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2984 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 2985 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2986 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2987 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2988 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 2989 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2990 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2991 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 2992 | lhptee = Context.getCanonicalType(lhptee); |
| 2993 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2994 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2995 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2996 | |
| 2997 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 2998 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 2999 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3000 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3001 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3002 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3003 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3004 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3005 | // 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] | 3006 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3007 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3008 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3009 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3010 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3011 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3012 | assert(rhptee->isFunctionType()); |
| 3013 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3014 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3015 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3016 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3017 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3018 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3019 | |
| 3020 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3021 | assert(lhptee->isFunctionType()); |
| 3022 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3023 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3024 | // 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] | 3025 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3026 | lhptee = lhptee.getUnqualifiedType(); |
| 3027 | rhptee = rhptee.getUnqualifiedType(); |
| 3028 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3029 | // Check if the pointee types are compatible ignoring the sign. |
| 3030 | // We explicitly check for char so that we catch "char" vs |
| 3031 | // "unsigned char" on systems where "char" is unsigned. |
| 3032 | if (lhptee->isCharType()) { |
| 3033 | lhptee = Context.UnsignedCharTy; |
| 3034 | } else if (lhptee->isSignedIntegerType()) { |
| 3035 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 3036 | } |
| 3037 | if (rhptee->isCharType()) { |
| 3038 | rhptee = Context.UnsignedCharTy; |
| 3039 | } else if (rhptee->isSignedIntegerType()) { |
| 3040 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 3041 | } |
| 3042 | if (lhptee == rhptee) { |
| 3043 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3044 | // takes priority over sign incompatibility because the sign |
| 3045 | // warning can be disabled. |
| 3046 | if (ConvTy != Compatible) |
| 3047 | return ConvTy; |
| 3048 | return IncompatiblePointerSign; |
| 3049 | } |
| 3050 | // General pointer incompatibility takes priority over qualifiers. |
| 3051 | return IncompatiblePointer; |
| 3052 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3053 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3054 | } |
| 3055 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3056 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3057 | /// block pointer types are compatible or whether a block and normal pointer |
| 3058 | /// are compatible. It is more restrict than comparing two function pointer |
| 3059 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3060 | Sema::AssignConvertType |
| 3061 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3062 | QualType rhsType) { |
| 3063 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3064 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3065 | // get the "pointed to" type (ignoring qualifiers at the top level) |
| 3066 | lhptee = lhsType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3067 | rhptee = rhsType->getAsBlockPointerType()->getPointeeType(); |
| 3068 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3069 | // make sure we operate on the canonical type |
| 3070 | lhptee = Context.getCanonicalType(lhptee); |
| 3071 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3072 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3073 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3074 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3075 | // For blocks we enforce that qualifiers are identical. |
| 3076 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3077 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3078 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3079 | if (!Context.typesAreBlockCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3080 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3081 | return ConvTy; |
| 3082 | } |
| 3083 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3084 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3085 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3086 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3087 | /// |
| 3088 | /// int a, *pint; |
| 3089 | /// short *pshort; |
| 3090 | /// struct foo *pfoo; |
| 3091 | /// |
| 3092 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3093 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3094 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3095 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3096 | /// |
| 3097 | /// 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] | 3098 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3099 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3100 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3101 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3102 | // Get canonical types. We're not formatting these types, just comparing |
| 3103 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3104 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3105 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3106 | |
| 3107 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3108 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3109 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3110 | // If the left-hand side is a reference type, then we are in a |
| 3111 | // (rare!) case where we've allowed the use of references in C, |
| 3112 | // e.g., as a parameter type in a built-in function. In this case, |
| 3113 | // just make sure that the type referenced is compatible with the |
| 3114 | // right-hand side type. The caller is responsible for adjusting |
| 3115 | // lhsType so that the resulting expression does not have reference |
| 3116 | // type. |
| 3117 | if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) { |
| 3118 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3119 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3120 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3121 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3122 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3123 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) { |
| 3124 | if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false)) |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3125 | return Compatible; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3126 | // Relax integer conversions like we do for pointers below. |
| 3127 | if (rhsType->isIntegerType()) |
| 3128 | return IntToPointer; |
| 3129 | if (lhsType->isIntegerType()) |
| 3130 | return PointerToInt; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3131 | return IncompatibleObjCQualifiedId; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3132 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3133 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3134 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3135 | // For ExtVector, allow vector splats; float -> <n x float> |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3136 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) |
| 3137 | if (LV->getElementType() == rhsType) |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3138 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3139 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3140 | // 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] | 3141 | // 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] | 3142 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3143 | if (getLangOptions().LaxVectorConversions && |
| 3144 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3145 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3146 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3147 | } |
| 3148 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3149 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3150 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3151 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3152 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3153 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3154 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3155 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3156 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3157 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3158 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3159 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3160 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3161 | if (rhsType->getAsBlockPointerType()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3162 | if (lhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3163 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3164 | |
| 3165 | // Treat block pointers as objects. |
| 3166 | if (getLangOptions().ObjC1 && |
| 3167 | lhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3168 | return Compatible; |
| 3169 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3170 | return Incompatible; |
| 3171 | } |
| 3172 | |
| 3173 | if (isa<BlockPointerType>(lhsType)) { |
| 3174 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3175 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3176 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3177 | // Treat block pointers as objects. |
| 3178 | if (getLangOptions().ObjC1 && |
| 3179 | rhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 3180 | return Compatible; |
| 3181 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3182 | if (rhsType->isBlockPointerType()) |
| 3183 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3184 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3185 | if (const PointerType *RHSPT = rhsType->getAsPointerType()) { |
| 3186 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3187 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3188 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3189 | return Incompatible; |
| 3190 | } |
| 3191 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3192 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3193 | // 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] | 3194 | if (lhsType == Context.BoolTy) |
| 3195 | return Compatible; |
| 3196 | |
| 3197 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3198 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3199 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3200 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3201 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3202 | |
| 3203 | if (isa<BlockPointerType>(lhsType) && |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3204 | rhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3205 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3206 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3207 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3208 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3209 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3210 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3211 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3212 | } |
| 3213 | return Incompatible; |
| 3214 | } |
| 3215 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3216 | /// \brief Constructs a transparent union from an expression that is |
| 3217 | /// used to initialize the transparent union. |
| 3218 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
| 3219 | QualType UnionType, FieldDecl *Field) { |
| 3220 | // Build an initializer list that designates the appropriate member |
| 3221 | // of the transparent union. |
| 3222 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3223 | &E, 1, |
| 3224 | SourceLocation()); |
| 3225 | Initializer->setType(UnionType); |
| 3226 | Initializer->setInitializedFieldInUnion(Field); |
| 3227 | |
| 3228 | // Build a compound literal constructing a value of the transparent |
| 3229 | // union type from this initializer list. |
| 3230 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3231 | false); |
| 3232 | } |
| 3233 | |
| 3234 | Sema::AssignConvertType |
| 3235 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3236 | QualType FromType = rExpr->getType(); |
| 3237 | |
| 3238 | // If the ArgType is a Union type, we want to handle a potential |
| 3239 | // transparent_union GCC extension. |
| 3240 | const RecordType *UT = ArgType->getAsUnionType(); |
| 3241 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
| 3242 | return Incompatible; |
| 3243 | |
| 3244 | // The field to initialize within the transparent union. |
| 3245 | RecordDecl *UD = UT->getDecl(); |
| 3246 | FieldDecl *InitField = 0; |
| 3247 | // It's compatible if the expression matches any of the fields. |
| 3248 | for (RecordDecl::field_iterator it = UD->field_begin(Context), |
| 3249 | itend = UD->field_end(Context); |
| 3250 | it != itend; ++it) { |
| 3251 | if (it->getType()->isPointerType()) { |
| 3252 | // If the transparent union contains a pointer type, we allow: |
| 3253 | // 1) void pointer |
| 3254 | // 2) null pointer constant |
| 3255 | if (FromType->isPointerType()) |
| 3256 | if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) { |
| 3257 | ImpCastExprToType(rExpr, it->getType()); |
| 3258 | InitField = *it; |
| 3259 | break; |
| 3260 | } |
| 3261 | |
| 3262 | if (rExpr->isNullPointerConstant(Context)) { |
| 3263 | ImpCastExprToType(rExpr, it->getType()); |
| 3264 | InitField = *it; |
| 3265 | break; |
| 3266 | } |
| 3267 | } |
| 3268 | |
| 3269 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 3270 | == Compatible) { |
| 3271 | InitField = *it; |
| 3272 | break; |
| 3273 | } |
| 3274 | } |
| 3275 | |
| 3276 | if (!InitField) |
| 3277 | return Incompatible; |
| 3278 | |
| 3279 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 3280 | return Compatible; |
| 3281 | } |
| 3282 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3283 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3284 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3285 | if (getLangOptions().CPlusPlus) { |
| 3286 | if (!lhsType->isRecordType()) { |
| 3287 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3288 | // expression is implicitly converted (C++ 4) to the |
| 3289 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3290 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3291 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3292 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 3293 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3294 | } |
| 3295 | |
| 3296 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3297 | // structures. |
| 3298 | } |
| 3299 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3300 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3301 | // a null pointer constant. |
Steve Naroff | f7f52e7 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3302 | if ((lhsType->isPointerType() || |
| 3303 | lhsType->isObjCQualifiedIdType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3304 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | 9d3185e | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3305 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3306 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3307 | return Compatible; |
| 3308 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3309 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3310 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3311 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3312 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3313 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3314 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3315 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3316 | if (!lhsType->isReferenceType()) |
| 3317 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3318 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3319 | Sema::AssignConvertType result = |
| 3320 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3321 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3322 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3323 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3324 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3325 | // so that we can use references in built-in functions even in C. |
| 3326 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3327 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3328 | if (result != Incompatible && rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3329 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3330 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3331 | } |
| 3332 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3333 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3334 | Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) { |
| 3335 | return CheckAssignmentConstraints(lhsType, rhsType); |
| 3336 | } |
| 3337 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3338 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3339 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3340 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3341 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3342 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3343 | } |
| 3344 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3345 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3346 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3347 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3348 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3349 | QualType lhsType = |
| 3350 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3351 | QualType rhsType = |
| 3352 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3353 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3354 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3355 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3356 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3357 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3358 | // Handle the case of a vector & extvector type of the same size and element |
| 3359 | // 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] | 3360 | if (getLangOptions().LaxVectorConversions) { |
| 3361 | // FIXME: Should we warn here? |
| 3362 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3363 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3364 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3365 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3366 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3367 | } |
| 3368 | } |
| 3369 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3370 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3371 | // If the lhs is an extended vector and the rhs is a scalar of the same type |
| 3372 | // or a literal, promote the rhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3373 | if (const ExtVectorType *V = lhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3374 | QualType eltType = V->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3375 | |
| 3376 | if ((eltType->getAsBuiltinType() == rhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3377 | (eltType->isIntegerType() && isa<IntegerLiteral>(rex)) || |
| 3378 | (eltType->isFloatingType() && isa<FloatingLiteral>(rex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3379 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3380 | return lhsType; |
| 3381 | } |
| 3382 | } |
| 3383 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3384 | // 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] | 3385 | // promote the lhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3386 | if (const ExtVectorType *V = rhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3387 | QualType eltType = V->getElementType(); |
| 3388 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3389 | if ((eltType->getAsBuiltinType() == lhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3390 | (eltType->isIntegerType() && isa<IntegerLiteral>(lex)) || |
| 3391 | (eltType->isFloatingType() && isa<FloatingLiteral>(lex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3392 | ImpCastExprToType(lex, rhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3393 | return rhsType; |
| 3394 | } |
| 3395 | } |
| 3396 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3397 | // You cannot convert between vector values of different size. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3398 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3399 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3400 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3401 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3402 | } |
| 3403 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3404 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3405 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3406 | { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3407 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3408 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3409 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3410 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3411 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3412 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3413 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3414 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3415 | } |
| 3416 | |
| 3417 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3418 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3419 | { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3420 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3421 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3422 | return CheckVectorOperands(Loc, lex, rex); |
| 3423 | return InvalidOperands(Loc, lex, rex); |
| 3424 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3425 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3426 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3427 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3428 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3429 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3430 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3431 | } |
| 3432 | |
| 3433 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3434 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3435 | { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3436 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3437 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3438 | if (CompLHSTy) *CompLHSTy = compType; |
| 3439 | return compType; |
| 3440 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3441 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3442 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3443 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3444 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3445 | if (lex->getType()->isArithmeticType() && |
| 3446 | rex->getType()->isArithmeticType()) { |
| 3447 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3448 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3449 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3450 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3451 | // Put any potential pointer into PExp |
| 3452 | Expr* PExp = lex, *IExp = rex; |
| 3453 | if (IExp->getType()->isPointerType()) |
| 3454 | std::swap(PExp, IExp); |
| 3455 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3456 | if (const PointerType *PTy = PExp->getType()->getAsPointerType()) { |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3457 | if (IExp->getType()->isIntegerType()) { |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3458 | QualType PointeeTy = PTy->getPointeeType(); |
| 3459 | // Check for arithmetic on pointers to incomplete types. |
| 3460 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3461 | if (getLangOptions().CPlusPlus) { |
| 3462 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3463 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3464 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3465 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3466 | |
| 3467 | // GNU extension: arithmetic on pointer to void |
| 3468 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3469 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3470 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3471 | if (getLangOptions().CPlusPlus) { |
| 3472 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3473 | << lex->getType() << lex->getSourceRange(); |
| 3474 | return QualType(); |
| 3475 | } |
| 3476 | |
| 3477 | // GNU extension: arithmetic on pointer to function |
| 3478 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3479 | << lex->getType() << lex->getSourceRange(); |
| 3480 | } else if (!PTy->isDependentType() && |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3481 | RequireCompleteType(Loc, PointeeTy, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3482 | diag::err_typecheck_arithmetic_incomplete_type, |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3483 | PExp->getSourceRange(), SourceRange(), |
| 3484 | PExp->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3485 | return QualType(); |
| 3486 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3487 | // Diagnose bad cases where we step over interface counts. |
| 3488 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3489 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3490 | << PointeeTy << PExp->getSourceRange(); |
| 3491 | return QualType(); |
| 3492 | } |
| 3493 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3494 | if (CompLHSTy) { |
| 3495 | QualType LHSTy = lex->getType(); |
| 3496 | if (LHSTy->isPromotableIntegerType()) |
| 3497 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3498 | else { |
| 3499 | QualType T = isPromotableBitField(lex, Context); |
| 3500 | if (!T.isNull()) |
| 3501 | LHSTy = T; |
| 3502 | } |
| 3503 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3504 | *CompLHSTy = LHSTy; |
| 3505 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3506 | return PExp->getType(); |
| 3507 | } |
| 3508 | } |
| 3509 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3510 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3511 | } |
| 3512 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3513 | // C99 6.5.6 |
| 3514 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3515 | SourceLocation Loc, QualType* CompLHSTy) { |
| 3516 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3517 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3518 | if (CompLHSTy) *CompLHSTy = compType; |
| 3519 | return compType; |
| 3520 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3521 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3522 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3523 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3524 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3525 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3526 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3527 | if (lex->getType()->isArithmeticType() |
| 3528 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3529 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3530 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3531 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3532 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3533 | // Either ptr - int or ptr - ptr. |
| 3534 | if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) { |
Steve Naroff | 2565eef | 2008-01-29 18:58:14 +0000 | [diff] [blame] | 3535 | QualType lpointee = LHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3536 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3537 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3538 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3539 | bool ComplainAboutVoid = false; |
| 3540 | Expr *ComplainAboutFunc = 0; |
| 3541 | if (lpointee->isVoidType()) { |
| 3542 | if (getLangOptions().CPlusPlus) { |
| 3543 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3544 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3545 | return QualType(); |
| 3546 | } |
| 3547 | |
| 3548 | // GNU C extension: arithmetic on pointer to void |
| 3549 | ComplainAboutVoid = true; |
| 3550 | } else if (lpointee->isFunctionType()) { |
| 3551 | if (getLangOptions().CPlusPlus) { |
| 3552 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3553 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3554 | return QualType(); |
| 3555 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3556 | |
| 3557 | // GNU C extension: arithmetic on pointer to function |
| 3558 | ComplainAboutFunc = lex; |
| 3559 | } else if (!lpointee->isDependentType() && |
| 3560 | RequireCompleteType(Loc, lpointee, |
| 3561 | diag::err_typecheck_sub_ptr_object, |
| 3562 | lex->getSourceRange(), |
| 3563 | SourceRange(), |
| 3564 | lex->getType())) |
| 3565 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3566 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3567 | // Diagnose bad cases where we step over interface counts. |
| 3568 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3569 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3570 | << lpointee << lex->getSourceRange(); |
| 3571 | return QualType(); |
| 3572 | } |
| 3573 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3574 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3575 | if (rex->getType()->isIntegerType()) { |
| 3576 | if (ComplainAboutVoid) |
| 3577 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3578 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3579 | if (ComplainAboutFunc) |
| 3580 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3581 | << ComplainAboutFunc->getType() |
| 3582 | << ComplainAboutFunc->getSourceRange(); |
| 3583 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3584 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3585 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3586 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3587 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3588 | // Handle pointer-pointer subtractions. |
| 3589 | if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 3590 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3591 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3592 | // RHS must be a completely-type object type. |
| 3593 | // Handle the GNU void* extension. |
| 3594 | if (rpointee->isVoidType()) { |
| 3595 | if (getLangOptions().CPlusPlus) { |
| 3596 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3597 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3598 | return QualType(); |
| 3599 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3600 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3601 | ComplainAboutVoid = true; |
| 3602 | } else if (rpointee->isFunctionType()) { |
| 3603 | if (getLangOptions().CPlusPlus) { |
| 3604 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3605 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3606 | return QualType(); |
| 3607 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3608 | |
| 3609 | // GNU extension: arithmetic on pointer to function |
| 3610 | if (!ComplainAboutFunc) |
| 3611 | ComplainAboutFunc = rex; |
| 3612 | } else if (!rpointee->isDependentType() && |
| 3613 | RequireCompleteType(Loc, rpointee, |
| 3614 | diag::err_typecheck_sub_ptr_object, |
| 3615 | rex->getSourceRange(), |
| 3616 | SourceRange(), |
| 3617 | rex->getType())) |
| 3618 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3619 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3620 | // Pointee types must be compatible. |
Eli Friedman | f1c7b48 | 2008-09-02 05:09:35 +0000 | [diff] [blame] | 3621 | if (!Context.typesAreCompatible( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3622 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
Eli Friedman | f1c7b48 | 2008-09-02 05:09:35 +0000 | [diff] [blame] | 3623 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3624 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3625 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3626 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3627 | return QualType(); |
| 3628 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3629 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3630 | if (ComplainAboutVoid) |
| 3631 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3632 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3633 | if (ComplainAboutFunc) |
| 3634 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3635 | << ComplainAboutFunc->getType() |
| 3636 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3637 | |
| 3638 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3639 | return Context.getPointerDiffType(); |
| 3640 | } |
| 3641 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3642 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3643 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3644 | } |
| 3645 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3646 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3647 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3648 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3649 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 3650 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3651 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3652 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3653 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 3654 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3655 | QualType LHSTy; |
| 3656 | if (lex->getType()->isPromotableIntegerType()) |
| 3657 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3658 | else { |
| 3659 | LHSTy = isPromotableBitField(lex, Context); |
| 3660 | if (LHSTy.isNull()) |
| 3661 | LHSTy = lex->getType(); |
| 3662 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 3663 | if (!isCompAssign) |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3664 | ImpCastExprToType(lex, LHSTy); |
| 3665 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3666 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3667 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3668 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3669 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3670 | } |
| 3671 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3672 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3673 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3674 | unsigned OpaqueOpc, bool isRelational) { |
| 3675 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 3676 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3677 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3678 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3679 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3680 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 3681 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 3682 | UsualArithmeticConversions(lex, rex); |
| 3683 | else { |
| 3684 | UsualUnaryConversions(lex); |
| 3685 | UsualUnaryConversions(rex); |
| 3686 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3687 | QualType lType = lex->getType(); |
| 3688 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3689 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3690 | if (!lType->isFloatingType() |
| 3691 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3692 | // For non-floating point types, check for self-comparisons of the form |
| 3693 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3694 | // often indicate logic errors in the program. |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 3695 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 3696 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3697 | Expr *LHSStripped = lex->IgnoreParens(); |
| 3698 | Expr *RHSStripped = rex->IgnoreParens(); |
| 3699 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 3700 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 3701 | if (DRL->getDecl() == DRR->getDecl() && |
| 3702 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3703 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3704 | |
| 3705 | if (isa<CastExpr>(LHSStripped)) |
| 3706 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 3707 | if (isa<CastExpr>(RHSStripped)) |
| 3708 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 3709 | |
| 3710 | // Warn about comparisons against a string constant (unless the other |
| 3711 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3712 | Expr *literalString = 0; |
| 3713 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3714 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3715 | !RHSStripped->isNullPointerConstant(Context)) { |
| 3716 | literalString = lex; |
| 3717 | literalStringStripped = LHSStripped; |
| 3718 | } |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3719 | else if ((isa<StringLiteral>(RHSStripped) || |
| 3720 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3721 | !LHSStripped->isNullPointerConstant(Context)) { |
| 3722 | literalString = rex; |
| 3723 | literalStringStripped = RHSStripped; |
| 3724 | } |
| 3725 | |
| 3726 | if (literalString) { |
| 3727 | std::string resultComparison; |
| 3728 | switch (Opc) { |
| 3729 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 3730 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 3731 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 3732 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 3733 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 3734 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 3735 | default: assert(false && "Invalid comparison operator"); |
| 3736 | } |
| 3737 | Diag(Loc, diag::warn_stringcompare) |
| 3738 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 3739 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 3740 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 3741 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 3742 | "strcmp(") |
| 3743 | << CodeModificationHint::CreateInsertion( |
| 3744 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 3745 | resultComparison); |
| 3746 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 3747 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3748 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3749 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3750 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3751 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3752 | if (isRelational) { |
| 3753 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3754 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3755 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3756 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3757 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3758 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3759 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 3760 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3761 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3762 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3763 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3764 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3765 | |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3766 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 3767 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3768 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3769 | // All of the following pointer related warnings are GCC extensions, except |
| 3770 | // when handling null pointer constants. One day, we can consider making them |
| 3771 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 3772 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3773 | QualType LCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3774 | Context.getCanonicalType(lType->getAsPointerType()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3775 | QualType RCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3776 | Context.getCanonicalType(rType->getAsPointerType()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3777 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3778 | // Simple check: if the pointee types are identical, we're done. |
| 3779 | if (LCanPointeeTy == RCanPointeeTy) |
| 3780 | return ResultTy; |
| 3781 | |
| 3782 | if (getLangOptions().CPlusPlus) { |
| 3783 | // C++ [expr.rel]p2: |
| 3784 | // [...] Pointer conversions (4.10) and qualification |
| 3785 | // conversions (4.4) are performed on pointer operands (or on |
| 3786 | // a pointer operand and a null pointer constant) to bring |
| 3787 | // them to their composite pointer type. [...] |
| 3788 | // |
| 3789 | // C++ [expr.eq]p2 uses the same notion for (in)equality |
| 3790 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 3791 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 3792 | if (T.isNull()) { |
| 3793 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 3794 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 3795 | return QualType(); |
| 3796 | } |
| 3797 | |
| 3798 | ImpCastExprToType(lex, T); |
| 3799 | ImpCastExprToType(rex, T); |
| 3800 | return ResultTy; |
| 3801 | } |
| 3802 | |
Steve Naroff | 66296cb | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 3803 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3804 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 3805 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Eli Friedman | 3d815e7 | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 3806 | RCanPointeeTy.getUnqualifiedType()) && |
Steve Naroff | 389bf46 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 3807 | !Context.areComparableObjCPointerTypes(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3808 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3809 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3810 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3811 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3812 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3813 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3814 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3815 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3816 | QualType lpointee = lType->getAsBlockPointerType()->getPointeeType(); |
| 3817 | QualType rpointee = rType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3818 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3819 | if (!LHSIsNull && !RHSIsNull && |
| 3820 | !Context.typesAreBlockCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3821 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3822 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3823 | } |
| 3824 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3825 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3826 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3827 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3828 | if (!isRelational |
| 3829 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 3830 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3831 | if (!LHSIsNull && !RHSIsNull) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3832 | if (!((rType->isPointerType() && rType->getAsPointerType() |
| 3833 | ->getPointeeType()->isVoidType()) |
| 3834 | || (lType->isPointerType() && lType->getAsPointerType() |
| 3835 | ->getPointeeType()->isVoidType()))) |
| 3836 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 3837 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3838 | } |
| 3839 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3840 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3841 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3842 | |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3843 | if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3844 | if (lType->isPointerType() || rType->isPointerType()) { |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3845 | const PointerType *LPT = lType->getAsPointerType(); |
| 3846 | const PointerType *RPT = rType->getAsPointerType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3847 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3848 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3849 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3850 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3851 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3852 | if (!LPtrToVoid && !RPtrToVoid && |
| 3853 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3854 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3855 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3856 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3857 | return ResultTy; |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3858 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 3859 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3860 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 3861 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3862 | if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) { |
| 3863 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3864 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3865 | } else { |
| 3866 | if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3867 | Diag(Loc, diag::warn_incompatible_qualified_id_operands) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3868 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 3869 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3870 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3871 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3872 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 3873 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3874 | if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3875 | rType->isIntegerType()) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3876 | if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3877 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3878 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3879 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3880 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3881 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3882 | if (lType->isIntegerType() && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3883 | (rType->isPointerType() || rType->isObjCQualifiedIdType())) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3884 | if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3885 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3886 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3887 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3888 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3889 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3890 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3891 | if (!isRelational && RHSIsNull |
| 3892 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3893 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3894 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3895 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3896 | if (!isRelational && LHSIsNull |
| 3897 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3898 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3899 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3900 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3901 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3902 | } |
| 3903 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3904 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3905 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3906 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 3907 | /// types. |
| 3908 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3909 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3910 | bool isRelational) { |
| 3911 | // Check to make sure we're operating on vectors of the same type and width, |
| 3912 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3913 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3914 | if (vType.isNull()) |
| 3915 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3916 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3917 | QualType lType = lex->getType(); |
| 3918 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3919 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3920 | // For non-floating point types, check for self-comparisons of the form |
| 3921 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3922 | // often indicate logic errors in the program. |
| 3923 | if (!lType->isFloatingType()) { |
| 3924 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 3925 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 3926 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3927 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3928 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3929 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3930 | // Check for comparisons of floating point operands using != and ==. |
| 3931 | if (!isRelational && lType->isFloatingType()) { |
| 3932 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3933 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3934 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3935 | |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 3936 | // FIXME: Vector compare support in the LLVM backend is not fully reliable, |
| 3937 | // just reject all vector comparisons for now. |
| 3938 | if (1) { |
| 3939 | Diag(Loc, diag::err_typecheck_vector_comparison) |
| 3940 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 3941 | return QualType(); |
| 3942 | } |
| 3943 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3944 | // Return the type for the comparison, which is the same as vector type for |
| 3945 | // integer vectors, or an integer type of identical size and number of |
| 3946 | // elements for floating point vectors. |
| 3947 | if (lType->isIntegerType()) |
| 3948 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3949 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3950 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3951 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3952 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3953 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 3954 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3955 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 3956 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3957 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3958 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3959 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 3960 | } |
| 3961 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3962 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3963 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3964 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 3965 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3966 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3967 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3968 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3969 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3970 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3971 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3972 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3973 | } |
| 3974 | |
| 3975 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3976 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3977 | { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3978 | UsualUnaryConversions(lex); |
| 3979 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3980 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 3981 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3982 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3983 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3984 | } |
| 3985 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3986 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 3987 | /// is a read-only property; return true if so. A readonly property expression |
| 3988 | /// depends on various declarations and thus must be treated specially. |
| 3989 | /// |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3990 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3991 | { |
| 3992 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 3993 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 3994 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 3995 | QualType BaseType = PropExpr->getBase()->getType(); |
| 3996 | if (const PointerType *PTy = BaseType->getAsPointerType()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3997 | if (const ObjCInterfaceType *IFTy = |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3998 | PTy->getPointeeType()->getAsObjCInterfaceType()) |
| 3999 | if (ObjCInterfaceDecl *IFace = IFTy->getDecl()) |
| 4000 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4001 | return true; |
| 4002 | } |
| 4003 | } |
| 4004 | return false; |
| 4005 | } |
| 4006 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4007 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4008 | /// emit an error and return true. If so, return false. |
| 4009 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4010 | SourceLocation OrigLoc = Loc; |
| 4011 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
| 4012 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4013 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4014 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4015 | if (IsLV == Expr::MLV_Valid) |
| 4016 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4017 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4018 | unsigned Diag = 0; |
| 4019 | bool NeedType = false; |
| 4020 | switch (IsLV) { // C99 6.5.16p2 |
| 4021 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4022 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4023 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4024 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4025 | NeedType = true; |
| 4026 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4027 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4028 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4029 | NeedType = true; |
| 4030 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4031 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4032 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4033 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4034 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4035 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4036 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4037 | case Expr::MLV_IncompleteType: |
| 4038 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4039 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4040 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 4041 | E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4042 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4043 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4044 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4045 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4046 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4047 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4048 | case Expr::MLV_ReadonlyProperty: |
| 4049 | Diag = diag::error_readonly_property_assignment; |
| 4050 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4051 | case Expr::MLV_NoSetterProperty: |
| 4052 | Diag = diag::error_nosetter_property_assignment; |
| 4053 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4054 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4055 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4056 | SourceRange Assign; |
| 4057 | if (Loc != OrigLoc) |
| 4058 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4059 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4060 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4061 | else |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4062 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4063 | return true; |
| 4064 | } |
| 4065 | |
| 4066 | |
| 4067 | |
| 4068 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4069 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4070 | SourceLocation Loc, |
| 4071 | QualType CompoundType) { |
| 4072 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4073 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4074 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4075 | |
| 4076 | QualType LHSType = LHS->getType(); |
| 4077 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4078 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4079 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4080 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4081 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4082 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4083 | // Special case of NSObject attributes on c-style pointer types. |
| 4084 | if (ConvTy == IncompatiblePointer && |
| 4085 | ((Context.isObjCNSObjectType(LHSType) && |
| 4086 | Context.isObjCObjectPointerType(RHSType)) || |
| 4087 | (Context.isObjCNSObjectType(RHSType) && |
| 4088 | Context.isObjCObjectPointerType(LHSType)))) |
| 4089 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4090 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4091 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4092 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4093 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4094 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4095 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4096 | RHSCheck = ICE->getSubExpr(); |
| 4097 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4098 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4099 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4100 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4101 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4102 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4103 | // And there is a space or other character before the subexpr of the |
| 4104 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4105 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4106 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4107 | Diag(Loc, diag::warn_not_compound_assign) |
| 4108 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4109 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4110 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4111 | } |
| 4112 | } else { |
| 4113 | // Compound assignment "x += y" |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4114 | ConvTy = CheckCompoundAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4115 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4116 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4117 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4118 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4119 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4120 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4121 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4122 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4123 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4124 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4125 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4126 | // 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] | 4127 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4128 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4129 | } |
| 4130 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4131 | // C99 6.5.17 |
| 4132 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4133 | // 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] | 4134 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4135 | |
| 4136 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4137 | // incomplete in C++). |
| 4138 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4139 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4140 | } |
| 4141 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4142 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4143 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4144 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4145 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4146 | if (Op->isTypeDependent()) |
| 4147 | return Context.DependentTy; |
| 4148 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4149 | QualType ResType = Op->getType(); |
| 4150 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4151 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4152 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4153 | // Decrement of bool is not allowed. |
| 4154 | if (!isInc) { |
| 4155 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 4156 | return QualType(); |
| 4157 | } |
| 4158 | // Increment of bool sets it to true, but is deprecated. |
| 4159 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 4160 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4161 | // OK! |
| 4162 | } else if (const PointerType *PT = ResType->getAsPointerType()) { |
| 4163 | // C99 6.5.2.4p2, 6.5.6p2 |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4164 | if (PT->getPointeeType()->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4165 | if (getLangOptions().CPlusPlus) { |
| 4166 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 4167 | << Op->getSourceRange(); |
| 4168 | return QualType(); |
| 4169 | } |
| 4170 | |
| 4171 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4172 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4173 | } else if (PT->getPointeeType()->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4174 | if (getLangOptions().CPlusPlus) { |
| 4175 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 4176 | << Op->getType() << Op->getSourceRange(); |
| 4177 | return QualType(); |
| 4178 | } |
| 4179 | |
| 4180 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4181 | << ResType << Op->getSourceRange(); |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4182 | } else if (RequireCompleteType(OpLoc, PT->getPointeeType(), |
| 4183 | diag::err_typecheck_arithmetic_incomplete_type, |
| 4184 | Op->getSourceRange(), SourceRange(), |
| 4185 | ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4186 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4187 | } else if (ResType->isComplexType()) { |
| 4188 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 4189 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4190 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4191 | } else { |
| 4192 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4193 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4194 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4195 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4196 | // 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] | 4197 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4198 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4199 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4200 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4201 | } |
| 4202 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4203 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4204 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4205 | /// where the declaration is needed for type checking. We only need to |
| 4206 | /// handle cases when the expression references a function designator |
| 4207 | /// or is an lvalue. Here are some examples: |
| 4208 | /// - &(x) => x |
| 4209 | /// - &*****f => f for f a function designator. |
| 4210 | /// - &s.xx => s |
| 4211 | /// - &s.zz[1].yy -> s, if zz is an array |
| 4212 | /// - *(x + 1) -> x, if x is an array |
| 4213 | /// - &"123"[2] -> 0 |
| 4214 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4215 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4216 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4217 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 4218 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4219 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4220 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4221 | // If this is an arrow operator, the address is an offset from |
| 4222 | // the base's value, so the object the base refers to is |
| 4223 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4224 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4225 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4226 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4227 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4228 | case Stmt::ArraySubscriptExprClass: { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4229 | // FIXME: This code shouldn't be necessary! We should catch the |
| 4230 | // implicit promotion of register arrays earlier. |
| 4231 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 4232 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 4233 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 4234 | return getPrimaryDecl(ICE->getSubExpr()); |
| 4235 | } |
| 4236 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4237 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4238 | case Stmt::UnaryOperatorClass: { |
| 4239 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4240 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4241 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4242 | case UnaryOperator::Real: |
| 4243 | case UnaryOperator::Imag: |
| 4244 | case UnaryOperator::Extension: |
| 4245 | return getPrimaryDecl(UO->getSubExpr()); |
| 4246 | default: |
| 4247 | return 0; |
| 4248 | } |
| 4249 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4250 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4251 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4252 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4253 | // If the result of an implicit cast is an l-value, we care about |
| 4254 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4255 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4256 | default: |
| 4257 | return 0; |
| 4258 | } |
| 4259 | } |
| 4260 | |
| 4261 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4262 | /// 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] | 4263 | /// 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] | 4264 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4265 | /// 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] | 4266 | /// 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] | 4267 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4268 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4269 | // Make sure to ignore parentheses in subsequent checks |
| 4270 | op = op->IgnoreParens(); |
| 4271 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 4272 | if (op->isTypeDependent()) |
| 4273 | return Context.DependentTy; |
| 4274 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4275 | if (getLangOptions().C99) { |
| 4276 | // Implement C99-only parts of addressof rules. |
| 4277 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 4278 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 4279 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 4280 | // (assuming the deref expression is valid). |
| 4281 | return uOp->getSubExpr()->getType(); |
| 4282 | } |
| 4283 | // Technically, there should be a check for array subscript |
| 4284 | // expressions here, but the result of one is always an lvalue anyway. |
| 4285 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4286 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 4287 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 4288 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4289 | if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4290 | // The operand must be either an l-value or a function designator |
Eli Friedman | 5320285 | 2009-05-03 22:36:05 +0000 | [diff] [blame] | 4291 | if (op->getType()->isFunctionType()) { |
| 4292 | // Function designator is valid |
| 4293 | } else if (lval == Expr::LV_IncompleteVoidType) { |
| 4294 | Diag(OpLoc, diag::ext_typecheck_addrof_void) |
| 4295 | << op->getSourceRange(); |
| 4296 | } else { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4297 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4298 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 4299 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4300 | return QualType(); |
| 4301 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 4302 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4303 | // The operand cannot be a bit-field |
| 4304 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4305 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 4306 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4307 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 4308 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4309 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4310 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4311 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 4312 | return QualType(); |
| 4313 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4314 | // 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] | 4315 | // with the register storage-class specifier. |
| 4316 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 4317 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4318 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4319 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4320 | return QualType(); |
| 4321 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4322 | } else if (isa<OverloadedFunctionDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4323 | return Context.OverloadTy; |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4324 | } else if (isa<FieldDecl>(dcl)) { |
| 4325 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4326 | // Could be a pointer to member, though, if there is an explicit |
| 4327 | // scope qualifier for the class. |
| 4328 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 4329 | DeclContext *Ctx = dcl->getDeclContext(); |
| 4330 | if (Ctx && Ctx->isRecord()) |
| 4331 | return Context.getMemberPointerType(op->getType(), |
| 4332 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 4333 | } |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 4334 | } else if (isa<FunctionDecl>(dcl)) { |
| 4335 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4336 | // As above. |
| 4337 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 4338 | DeclContext *Ctx = dcl->getDeclContext(); |
| 4339 | if (Ctx && Ctx->isRecord()) |
| 4340 | return Context.getMemberPointerType(op->getType(), |
| 4341 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 4342 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4343 | } |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 4344 | else |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4345 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4346 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4347 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4348 | // If the operand has type "type", the result has type "pointer to type". |
| 4349 | return Context.getPointerType(op->getType()); |
| 4350 | } |
| 4351 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4352 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4353 | if (Op->isTypeDependent()) |
| 4354 | return Context.DependentTy; |
| 4355 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4356 | UsualUnaryConversions(Op); |
| 4357 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4358 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4359 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 4360 | // incomplete type or void. It would be possible to warn about dereferencing |
| 4361 | // a void pointer, but it's completely well-defined, and such a warning is |
| 4362 | // unlikely to catch any mistakes. |
| 4363 | if (const PointerType *PT = Ty->getAsPointerType()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4364 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4365 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4366 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4367 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4368 | return QualType(); |
| 4369 | } |
| 4370 | |
| 4371 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 4372 | tok::TokenKind Kind) { |
| 4373 | BinaryOperator::Opcode Opc; |
| 4374 | switch (Kind) { |
| 4375 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4376 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 4377 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4378 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 4379 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 4380 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 4381 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 4382 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 4383 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 4384 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 4385 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4386 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4387 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4388 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4389 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4390 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4391 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4392 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4393 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4394 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4395 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4396 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4397 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4398 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4399 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4400 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4401 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4402 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4403 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4404 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4405 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4406 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4407 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4408 | } |
| 4409 | return Opc; |
| 4410 | } |
| 4411 | |
| 4412 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4413 | tok::TokenKind Kind) { |
| 4414 | UnaryOperator::Opcode Opc; |
| 4415 | switch (Kind) { |
| 4416 | default: assert(0 && "Unknown unary op!"); |
| 4417 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4418 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4419 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4420 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4421 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4422 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4423 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4424 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4425 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4426 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4427 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4428 | } |
| 4429 | return Opc; |
| 4430 | } |
| 4431 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4432 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4433 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4434 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4435 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4436 | unsigned Op, |
| 4437 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4438 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4439 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4440 | // The following two variables are used for compound assignment operators |
| 4441 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 4442 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4443 | |
| 4444 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4445 | case BinaryOperator::Assign: |
| 4446 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4447 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4448 | case BinaryOperator::PtrMemD: |
| 4449 | case BinaryOperator::PtrMemI: |
| 4450 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4451 | Opc == BinaryOperator::PtrMemI); |
| 4452 | break; |
| 4453 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4454 | case BinaryOperator::Div: |
| 4455 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4456 | break; |
| 4457 | case BinaryOperator::Rem: |
| 4458 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4459 | break; |
| 4460 | case BinaryOperator::Add: |
| 4461 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4462 | break; |
| 4463 | case BinaryOperator::Sub: |
| 4464 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4465 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4466 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4467 | case BinaryOperator::Shr: |
| 4468 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4469 | break; |
| 4470 | case BinaryOperator::LE: |
| 4471 | case BinaryOperator::LT: |
| 4472 | case BinaryOperator::GE: |
| 4473 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4474 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4475 | break; |
| 4476 | case BinaryOperator::EQ: |
| 4477 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4478 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4479 | break; |
| 4480 | case BinaryOperator::And: |
| 4481 | case BinaryOperator::Xor: |
| 4482 | case BinaryOperator::Or: |
| 4483 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4484 | break; |
| 4485 | case BinaryOperator::LAnd: |
| 4486 | case BinaryOperator::LOr: |
| 4487 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4488 | break; |
| 4489 | case BinaryOperator::MulAssign: |
| 4490 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4491 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4492 | CompLHSTy = CompResultTy; |
| 4493 | if (!CompResultTy.isNull()) |
| 4494 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4495 | break; |
| 4496 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4497 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4498 | CompLHSTy = CompResultTy; |
| 4499 | if (!CompResultTy.isNull()) |
| 4500 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4501 | break; |
| 4502 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4503 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4504 | if (!CompResultTy.isNull()) |
| 4505 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4506 | break; |
| 4507 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4508 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4509 | if (!CompResultTy.isNull()) |
| 4510 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4511 | break; |
| 4512 | case BinaryOperator::ShlAssign: |
| 4513 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4514 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4515 | CompLHSTy = CompResultTy; |
| 4516 | if (!CompResultTy.isNull()) |
| 4517 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4518 | break; |
| 4519 | case BinaryOperator::AndAssign: |
| 4520 | case BinaryOperator::XorAssign: |
| 4521 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4522 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 4523 | CompLHSTy = CompResultTy; |
| 4524 | if (!CompResultTy.isNull()) |
| 4525 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4526 | break; |
| 4527 | case BinaryOperator::Comma: |
| 4528 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 4529 | break; |
| 4530 | } |
| 4531 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4532 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4533 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4534 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 4535 | else |
| 4536 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4537 | CompLHSTy, CompResultTy, |
| 4538 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4539 | } |
| 4540 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4541 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4542 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 4543 | tok::TokenKind Kind, |
| 4544 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4545 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 4546 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4547 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4548 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 4549 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4550 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4551 | if (getLangOptions().CPlusPlus && |
| 4552 | (lhs->getType()->isOverloadableType() || |
| 4553 | rhs->getType()->isOverloadableType())) { |
| 4554 | // Find all of the overloaded operators visible from this |
| 4555 | // point. We perform both an operator-name lookup from the local |
| 4556 | // scope and an argument-dependent lookup based on the types of |
| 4557 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 4558 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4559 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 4560 | if (OverOp != OO_None) { |
| 4561 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 4562 | Functions); |
| 4563 | Expr *Args[2] = { lhs, rhs }; |
| 4564 | DeclarationName OpName |
| 4565 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4566 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 4567 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4568 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4569 | // Build the (potentially-overloaded, potentially-dependent) |
| 4570 | // binary operation. |
| 4571 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4572 | } |
| 4573 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4574 | // Build a built-in binary operation. |
| 4575 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4576 | } |
| 4577 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4578 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 4579 | unsigned OpcIn, |
| 4580 | ExprArg InputArg) { |
| 4581 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4582 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4583 | // FIXME: Input is modified below, but InputArg is not updated |
| 4584 | // appropriately. |
| 4585 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4586 | QualType resultType; |
| 4587 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4588 | case UnaryOperator::PostInc: |
| 4589 | case UnaryOperator::PostDec: |
| 4590 | case UnaryOperator::OffsetOf: |
| 4591 | assert(false && "Invalid unary operator"); |
| 4592 | break; |
| 4593 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4594 | case UnaryOperator::PreInc: |
| 4595 | case UnaryOperator::PreDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4596 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
| 4597 | Opc == UnaryOperator::PreInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4598 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4599 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4600 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 4601 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4602 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 4603 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4604 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 4605 | break; |
| 4606 | case UnaryOperator::Plus: |
| 4607 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4608 | UsualUnaryConversions(Input); |
| 4609 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4610 | if (resultType->isDependentType()) |
| 4611 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4612 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 4613 | break; |
| 4614 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 4615 | resultType->isEnumeralType()) |
| 4616 | break; |
| 4617 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 4618 | Opc == UnaryOperator::Plus && |
| 4619 | resultType->isPointerType()) |
| 4620 | break; |
| 4621 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4622 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4623 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4624 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4625 | UsualUnaryConversions(Input); |
| 4626 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4627 | if (resultType->isDependentType()) |
| 4628 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4629 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 4630 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 4631 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4632 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4633 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4634 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4635 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4636 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4637 | break; |
| 4638 | case UnaryOperator::LNot: // logical negation |
| 4639 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4640 | DefaultFunctionArrayConversion(Input); |
| 4641 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4642 | if (resultType->isDependentType()) |
| 4643 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4644 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4645 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4646 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4647 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4648 | // In C++, it's bool. C++ 5.3.1p8 |
| 4649 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4650 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4651 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4652 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 4653 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4654 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4655 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4656 | resultType = Input->getType(); |
| 4657 | break; |
| 4658 | } |
| 4659 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4660 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4661 | |
| 4662 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4663 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4664 | } |
| 4665 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4666 | // Unary Operators. 'Tok' is the token for the operator. |
| 4667 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 4668 | tok::TokenKind Op, ExprArg input) { |
| 4669 | Expr *Input = (Expr*)input.get(); |
| 4670 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 4671 | |
| 4672 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 4673 | // Find all of the overloaded operators visible from this |
| 4674 | // point. We perform both an operator-name lookup from the local |
| 4675 | // scope and an argument-dependent lookup based on the types of |
| 4676 | // the arguments. |
| 4677 | FunctionSet Functions; |
| 4678 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 4679 | if (OverOp != OO_None) { |
| 4680 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 4681 | Functions); |
| 4682 | DeclarationName OpName |
| 4683 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4684 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 4685 | } |
| 4686 | |
| 4687 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 4688 | } |
| 4689 | |
| 4690 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 4691 | } |
| 4692 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 4693 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4694 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 4695 | SourceLocation LabLoc, |
| 4696 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4697 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 4698 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4699 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 4700 | // If we haven't seen this label yet, create a forward reference. It |
| 4701 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 4702 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4703 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4704 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4705 | // 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] | 4706 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 4707 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4708 | } |
| 4709 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4710 | Sema::OwningExprResult |
| 4711 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 4712 | SourceLocation RPLoc) { // "({..})" |
| 4713 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4714 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 4715 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 4716 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4717 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 4718 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4719 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4720 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4721 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 4722 | // example, it is not possible to goto into a stmt expression apparently. |
| 4723 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4724 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4725 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 4726 | // as the type of the stmtexpr. |
| 4727 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4728 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4729 | if (!Compound->body_empty()) { |
| 4730 | Stmt *LastStmt = Compound->body_back(); |
| 4731 | // If LastStmt is a label, skip down through into the body. |
| 4732 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 4733 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4734 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4735 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4736 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4737 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4738 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4739 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 4740 | // expressions are not lvalues. |
| 4741 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4742 | substmt.release(); |
| 4743 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4744 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4745 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4746 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 4747 | SourceLocation BuiltinLoc, |
| 4748 | SourceLocation TypeLoc, |
| 4749 | TypeTy *argty, |
| 4750 | OffsetOfComponent *CompPtr, |
| 4751 | unsigned NumComponents, |
| 4752 | SourceLocation RPLoc) { |
| 4753 | // FIXME: This function leaks all expressions in the offset components on |
| 4754 | // error. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4755 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 4756 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4757 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4758 | bool Dependent = ArgTy->isDependentType(); |
| 4759 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4760 | // We must have at least one component that refers to the type, and the first |
| 4761 | // one is known to be a field designator. Verify that the ArgTy represents |
| 4762 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4763 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4764 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4765 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4766 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 4767 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 4768 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4769 | // Otherwise, create a null pointer as the base, and iteratively process |
| 4770 | // the offsetof designators. |
| 4771 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 4772 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4773 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4774 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 4775 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4776 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 4777 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4778 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 4779 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4780 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4781 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 4782 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4783 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4784 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 4785 | bool DidWarnAboutNonPOD = false; |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 4786 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4787 | // FIXME: Dependent case loses a lot of information here. And probably |
| 4788 | // leaks like a sieve. |
| 4789 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 4790 | const OffsetOfComponent &OC = CompPtr[i]; |
| 4791 | if (OC.isBrackets) { |
| 4792 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 4793 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 4794 | if (!AT) { |
| 4795 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4796 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 4797 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4798 | } |
| 4799 | |
| 4800 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 4801 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4802 | // Promote the array so it looks more like a normal array subscript |
| 4803 | // expression. |
| 4804 | DefaultFunctionArrayConversion(Res); |
| 4805 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4806 | // C99 6.5.2.1p1 |
| 4807 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4808 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4809 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4810 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 4811 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4812 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4813 | |
| 4814 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 4815 | OC.LocEnd); |
| 4816 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4817 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4818 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4819 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 4820 | if (!RC) { |
| 4821 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4822 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 4823 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4824 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 4825 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4826 | // Get the decl corresponding to this. |
| 4827 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 4828 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 4829 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 4830 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 4831 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 4832 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 4833 | DidWarnAboutNonPOD = true; |
| 4834 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 4835 | } |
| 4836 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4837 | FieldDecl *MemberDecl |
| 4838 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 4839 | LookupMemberName) |
| 4840 | .getAsDecl()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4841 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4842 | if (!MemberDecl) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4843 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 4844 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4845 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4846 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 4847 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 4848 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 4849 | Res = BuildAnonymousStructUnionMemberReference( |
| 4850 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 4851 | } else { |
| 4852 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 4853 | // doesn't matter here. |
| 4854 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 4855 | MemberDecl->getType().getNonReferenceType()); |
| 4856 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4857 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4858 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4859 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4860 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 4861 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4862 | } |
| 4863 | |
| 4864 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4865 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 4866 | TypeTy *arg1,TypeTy *arg2, |
| 4867 | SourceLocation RPLoc) { |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4868 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 4869 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4870 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4871 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4872 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4873 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 4874 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4875 | } |
| 4876 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4877 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 4878 | ExprArg cond, |
| 4879 | ExprArg expr1, ExprArg expr2, |
| 4880 | SourceLocation RPLoc) { |
| 4881 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 4882 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 4883 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4884 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4885 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 4886 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4887 | QualType resType; |
| 4888 | if (CondExpr->isValueDependent()) { |
| 4889 | resType = Context.DependentTy; |
| 4890 | } else { |
| 4891 | // The conditional expression is required to be a constant expression. |
| 4892 | llvm::APSInt condEval(32); |
| 4893 | SourceLocation ExpLoc; |
| 4894 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4895 | return ExprError(Diag(ExpLoc, |
| 4896 | diag::err_typecheck_choose_expr_requires_constant) |
| 4897 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4898 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4899 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 4900 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 4901 | } |
| 4902 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4903 | cond.release(); expr1.release(); expr2.release(); |
| 4904 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 4905 | resType, RPLoc)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4906 | } |
| 4907 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4908 | //===----------------------------------------------------------------------===// |
| 4909 | // Clang Extensions. |
| 4910 | //===----------------------------------------------------------------------===// |
| 4911 | |
| 4912 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4913 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4914 | // Analyze block parameters. |
| 4915 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4916 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4917 | // Add BSI to CurBlock. |
| 4918 | BSI->PrevBlockInfo = CurBlock; |
| 4919 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4920 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4921 | BSI->ReturnType = 0; |
| 4922 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 4923 | BSI->hasBlockDeclRefExprs = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 4924 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 4925 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4926 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4927 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 4928 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4929 | } |
| 4930 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4931 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4932 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4933 | |
Mike Stump | 6c92fa7 | 2009-04-29 21:40:37 +0000 | [diff] [blame] | 4934 | ProcessDeclAttributes(CurBlock->TheDecl, ParamInfo); |
| 4935 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4936 | if (ParamInfo.getNumTypeObjects() == 0 |
| 4937 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
| 4938 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 4939 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 4940 | if (T->isArrayType()) { |
| 4941 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 4942 | diag::err_block_returns_array); |
| 4943 | return; |
| 4944 | } |
| 4945 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4946 | // The parameter list is optional, if there was none, assume (). |
| 4947 | if (!T->isFunctionType()) |
| 4948 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 4949 | |
| 4950 | CurBlock->hasPrototype = true; |
| 4951 | CurBlock->isVariadic = false; |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 4952 | |
| 4953 | QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType(); |
| 4954 | |
| 4955 | // Do not allow returning a objc interface by-value. |
| 4956 | if (RetTy->isObjCInterfaceType()) { |
| 4957 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 4958 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 4959 | return; |
| 4960 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4961 | return; |
| 4962 | } |
| 4963 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4964 | // Analyze arguments to block. |
| 4965 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 4966 | "Not a function declarator!"); |
| 4967 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4968 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4969 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 4970 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4971 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4972 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 4973 | // no arguments, not a function that takes a single void argument. |
| 4974 | if (FTI.hasPrototype && |
| 4975 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 4976 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 4977 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4978 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4979 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4980 | } else if (FTI.hasPrototype) { |
| 4981 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 4982 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4983 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4984 | } |
Steve Naroff | e78b809 | 2009-03-13 16:56:44 +0000 | [diff] [blame] | 4985 | CurBlock->TheDecl->setParams(Context, &CurBlock->Params[0], |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 4986 | CurBlock->Params.size()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4987 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4988 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 4989 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 4990 | // If this has an identifier, add it to the scope stack. |
| 4991 | if ((*AI)->getIdentifier()) |
| 4992 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 4993 | |
| 4994 | // Analyze the return type. |
| 4995 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 4996 | QualType RetTy = T->getAsFunctionType()->getResultType(); |
| 4997 | |
| 4998 | // Do not allow returning a objc interface by-value. |
| 4999 | if (RetTy->isObjCInterfaceType()) { |
| 5000 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5001 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5002 | } else if (!RetTy->isDependentType()) |
| 5003 | CurBlock->ReturnType = RetTy.getTypePtr(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5004 | } |
| 5005 | |
| 5006 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5007 | /// is invoked to pop the information about the block from the action impl. |
| 5008 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5009 | // Ensure that CurBlock is deleted. |
| 5010 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5011 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5012 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5013 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5014 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5015 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5016 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5017 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5018 | } |
| 5019 | |
| 5020 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5021 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5022 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5023 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5024 | // If blocks are disabled, emit an error. |
| 5025 | if (!LangOpts.Blocks) |
| 5026 | Diag(CaretLoc, diag::err_blocks_disable); |
| 5027 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5028 | // Ensure that CurBlock is deleted. |
| 5029 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5030 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5031 | PopDeclContext(); |
| 5032 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5033 | // Pop off CurBlock, handle nested blocks. |
| 5034 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5035 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5036 | QualType RetTy = Context.VoidTy; |
| 5037 | if (BSI->ReturnType) |
| 5038 | RetTy = QualType(BSI->ReturnType, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5039 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5040 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 5041 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 5042 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5043 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5044 | QualType BlockTy; |
| 5045 | if (!BSI->hasPrototype) |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 5046 | BlockTy = Context.getFunctionNoProtoType(RetTy); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5047 | else |
| 5048 | BlockTy = Context.getFunctionType(RetTy, &ArgTypes[0], ArgTypes.size(), |
Argyrios Kyrtzidis | 7fb5e48 | 2008-10-26 16:43:14 +0000 | [diff] [blame] | 5049 | BSI->isVariadic, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5050 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5051 | // FIXME: Check that return/parameter types are complete/non-abstract |
| 5052 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5053 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5054 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5055 | // If needed, diagnose invalid gotos and switches in the block. |
| 5056 | if (CurFunctionNeedsScopeChecking) |
| 5057 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 5058 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
| 5059 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5060 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5061 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 5062 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5063 | } |
| 5064 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5065 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 5066 | ExprArg expr, TypeTy *type, |
| 5067 | SourceLocation RPLoc) { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5068 | QualType T = QualType::getFromOpaquePtr(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5069 | Expr *E = static_cast<Expr*>(expr.get()); |
| 5070 | Expr *OrigExpr = E; |
| 5071 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5072 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5073 | |
| 5074 | // Get the va_list type |
| 5075 | QualType VaListType = Context.getBuiltinVaListType(); |
| 5076 | // Deal with implicit array decay; for example, on x86-64, |
| 5077 | // va_list is an array, but it's supposed to decay to |
| 5078 | // a pointer for va_arg. |
| 5079 | if (VaListType->isArrayType()) |
| 5080 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | efbe85c | 2008-08-20 22:17:17 +0000 | [diff] [blame] | 5081 | // Make sure the input expression also decays appropriately. |
| 5082 | UsualUnaryConversions(E); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5083 | |
Chris Lattner | 3f41976 | 2009-04-06 17:07:34 +0000 | [diff] [blame] | 5084 | if (CheckAssignmentConstraints(VaListType, E->getType()) != Compatible) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5085 | return ExprError(Diag(E->getLocStart(), |
| 5086 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5087 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 5088 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5089 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5090 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5091 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5092 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5093 | expr.release(); |
| 5094 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 5095 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5096 | } |
| 5097 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5098 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5099 | // The type of __null will be int or long, depending on the size of |
| 5100 | // pointers on the target. |
| 5101 | QualType Ty; |
| 5102 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 5103 | Ty = Context.IntTy; |
| 5104 | else |
| 5105 | Ty = Context.LongTy; |
| 5106 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5107 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5108 | } |
| 5109 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5110 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 5111 | SourceLocation Loc, |
| 5112 | QualType DstType, QualType SrcType, |
| 5113 | Expr *SrcExpr, const char *Flavor) { |
| 5114 | // Decode the result (notice that AST's are still created for extensions). |
| 5115 | bool isInvalid = false; |
| 5116 | unsigned DiagKind; |
| 5117 | switch (ConvTy) { |
| 5118 | default: assert(0 && "Unknown conversion type"); |
| 5119 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5120 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5121 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 5122 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5123 | case IntToPointer: |
| 5124 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 5125 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5126 | case IncompatiblePointer: |
| 5127 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 5128 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5129 | case IncompatiblePointerSign: |
| 5130 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 5131 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5132 | case FunctionVoidPointer: |
| 5133 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 5134 | break; |
| 5135 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 5136 | // If the qualifiers lost were because we were applying the |
| 5137 | // (deprecated) C++ conversion from a string literal to a char* |
| 5138 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 5139 | // Ideally, this check would be performed in |
| 5140 | // CheckPointerTypesForAssignment. However, that would require a |
| 5141 | // bit of refactoring (so that the second argument is an |
| 5142 | // expression, rather than a type), which should be done as part |
| 5143 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 5144 | // C++ semantics. |
| 5145 | if (getLangOptions().CPlusPlus && |
| 5146 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 5147 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5148 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 5149 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5150 | case IntToBlockPointer: |
| 5151 | DiagKind = diag::err_int_to_block_pointer; |
| 5152 | break; |
| 5153 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 5154 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5155 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5156 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5157 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5158 | // it can give a more specific diagnostic. |
| 5159 | DiagKind = diag::warn_incompatible_qualified_id; |
| 5160 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5161 | case IncompatibleVectors: |
| 5162 | DiagKind = diag::warn_incompatible_vectors; |
| 5163 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5164 | case Incompatible: |
| 5165 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 5166 | isInvalid = true; |
| 5167 | break; |
| 5168 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5169 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 5170 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 5171 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5172 | return isInvalid; |
| 5173 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5174 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 5175 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5176 | llvm::APSInt ICEResult; |
| 5177 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 5178 | if (Result) |
| 5179 | *Result = ICEResult; |
| 5180 | return false; |
| 5181 | } |
| 5182 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5183 | Expr::EvalResult EvalResult; |
| 5184 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5185 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5186 | EvalResult.HasSideEffects) { |
| 5187 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 5188 | |
| 5189 | if (EvalResult.Diag) { |
| 5190 | // We only show the note if it's not the usual "invalid subexpression" |
| 5191 | // or if it's actually in a subexpression. |
| 5192 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 5193 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 5194 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 5195 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5196 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5197 | return true; |
| 5198 | } |
| 5199 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5200 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 5201 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5202 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5203 | if (EvalResult.Diag && |
| 5204 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 5205 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5206 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5207 | if (Result) |
| 5208 | *Result = EvalResult.Val.getInt(); |
| 5209 | return false; |
| 5210 | } |