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 | |
| 61 | MD = Impl->getClassInterface()->getMethod(MD->getSelector(), |
| 62 | MD->isInstanceMethod()); |
| 63 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | if (!isSilenced) |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 69 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 70 | } |
| 71 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 72 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 73 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 74 | if (FD->isDeleted()) { |
| 75 | Diag(Loc, diag::err_deleted_function_use); |
| 76 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 77 | return true; |
| 78 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 79 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 80 | |
| 81 | // See if the decl is unavailable |
| 82 | if (D->getAttr<UnavailableAttr>()) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 83 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 84 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 85 | } |
| 86 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 87 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 90 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 91 | Expr *Ex = (Expr *)E; |
| 92 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 93 | } |
| 94 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 95 | //===----------------------------------------------------------------------===// |
| 96 | // Standard Promotions and Conversions |
| 97 | //===----------------------------------------------------------------------===// |
| 98 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 99 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 100 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 101 | QualType Ty = E->getType(); |
| 102 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 103 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 104 | if (Ty->isFunctionType()) |
| 105 | ImpCastExprToType(E, Context.getPointerType(Ty)); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 106 | else if (Ty->isArrayType()) { |
| 107 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 108 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 109 | // type 'array of type' is converted to an expression that has type 'pointer |
| 110 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 111 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 112 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 113 | // |
| 114 | // C++ 4.2p1: |
| 115 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 116 | // T" can be converted to an rvalue of type "pointer to T". |
| 117 | // |
| 118 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 119 | E->isLvalue(Context) == Expr::LV_Valid) |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 120 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); |
| 121 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | /// UsualUnaryConversions - Performs various conversions that are common to most |
| 125 | /// operators (C99 6.3). The conversions of array and function types are |
| 126 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 127 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 128 | /// In these instances, this routine should *not* be called. |
| 129 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 130 | QualType Ty = Expr->getType(); |
| 131 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
| 132 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 133 | if (Ty->isPromotableIntegerType()) // C99 6.3.1.1p2 |
| 134 | ImpCastExprToType(Expr, Context.IntTy); |
| 135 | else |
| 136 | DefaultFunctionArrayConversion(Expr); |
| 137 | |
| 138 | return Expr; |
| 139 | } |
| 140 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 141 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 142 | /// do not have a prototype. Arguments that have type float are promoted to |
| 143 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 144 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 145 | QualType Ty = Expr->getType(); |
| 146 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
| 147 | |
| 148 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
| 149 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 150 | if (BT->getKind() == BuiltinType::Float) |
| 151 | return ImpCastExprToType(Expr, Context.DoubleTy); |
| 152 | |
| 153 | UsualUnaryConversions(Expr); |
| 154 | } |
| 155 | |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 156 | // DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 157 | // will warn if the resulting type is not a POD type. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 158 | void Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 159 | DefaultArgumentPromotion(Expr); |
| 160 | |
| 161 | if (!Expr->getType()->isPODType()) { |
| 162 | Diag(Expr->getLocStart(), |
| 163 | diag::warn_cannot_pass_non_pod_arg_to_vararg) << |
| 164 | Expr->getType() << CT; |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 169 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 170 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 171 | /// routine returns the first non-arithmetic type found. The client is |
| 172 | /// responsible for emitting appropriate error diagnostics. |
| 173 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 174 | /// GCC. |
| 175 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 176 | bool isCompAssign) { |
| 177 | if (!isCompAssign) { |
| 178 | UsualUnaryConversions(lhsExpr); |
| 179 | UsualUnaryConversions(rhsExpr); |
| 180 | } |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 181 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 182 | // For conversion purposes, we ignore any qualifiers. |
| 183 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 184 | QualType lhs = |
| 185 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
| 186 | QualType rhs = |
| 187 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 188 | |
| 189 | // If both types are identical, no conversion is needed. |
| 190 | if (lhs == rhs) |
| 191 | return lhs; |
| 192 | |
| 193 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 194 | // The caller can deal with this (e.g. pointer + int). |
| 195 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 196 | return lhs; |
| 197 | |
| 198 | QualType destType = UsualArithmeticConversionsType(lhs, rhs); |
| 199 | if (!isCompAssign) { |
| 200 | ImpCastExprToType(lhsExpr, destType); |
| 201 | ImpCastExprToType(rhsExpr, destType); |
| 202 | } |
| 203 | return destType; |
| 204 | } |
| 205 | |
| 206 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 207 | // Perform the usual unary conversions. We do this early so that |
| 208 | // integral promotions to "int" can allow us to exit early, in the |
| 209 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 210 | // qualifiers. For example, "const float" and "float" are |
| 211 | // equivalent. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 212 | if (lhs->isPromotableIntegerType()) |
| 213 | lhs = Context.IntTy; |
| 214 | else |
| 215 | lhs = lhs.getUnqualifiedType(); |
| 216 | if (rhs->isPromotableIntegerType()) |
| 217 | rhs = Context.IntTy; |
| 218 | else |
| 219 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 220 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 221 | // If both types are identical, no conversion is needed. |
| 222 | if (lhs == rhs) |
| 223 | return lhs; |
| 224 | |
| 225 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 226 | // The caller can deal with this (e.g. pointer + int). |
| 227 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 228 | return lhs; |
| 229 | |
| 230 | // At this point, we have two different arithmetic types. |
| 231 | |
| 232 | // Handle complex types first (C99 6.3.1.8p1). |
| 233 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 234 | // if we have an integer operand, the result is the complex type. |
| 235 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 236 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 237 | return lhs; |
| 238 | } |
| 239 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 240 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 241 | return rhs; |
| 242 | } |
| 243 | // This handles complex/complex, complex/float, or float/complex. |
| 244 | // When both operands are complex, the shorter operand is converted to the |
| 245 | // type of the longer, and that is the type of the result. This corresponds |
| 246 | // to what is done when combining two real floating-point operands. |
| 247 | // The fun begins when size promotion occur across type domains. |
| 248 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 249 | // floating-point type, the less precise type is converted, within it's |
| 250 | // real or complex domain, to the precision of the other type. For example, |
| 251 | // when combining a "long double" with a "double _Complex", the |
| 252 | // "double _Complex" is promoted to "long double _Complex". |
| 253 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 254 | |
| 255 | if (result > 0) { // The left side is bigger, convert rhs. |
| 256 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 257 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 258 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 259 | } |
| 260 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 261 | // domains match. This is a requirement for our implementation, C99 |
| 262 | // does not require this promotion. |
| 263 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 264 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 265 | return rhs; |
| 266 | } else { // handle "_Complex double, double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 267 | return lhs; |
| 268 | } |
| 269 | } |
| 270 | return lhs; // The domain/size match exactly. |
| 271 | } |
| 272 | // Now handle "real" floating types (i.e. float, double, long double). |
| 273 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 274 | // 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] | 275 | if (rhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 276 | // convert rhs to the lhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 277 | return lhs; |
| 278 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 279 | if (rhs->isComplexIntegerType()) { |
| 280 | // convert rhs to the complex floating point type. |
| 281 | return Context.getComplexType(lhs); |
| 282 | } |
| 283 | if (lhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 284 | // convert lhs to the rhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 285 | return rhs; |
| 286 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 287 | if (lhs->isComplexIntegerType()) { |
| 288 | // convert lhs to the complex floating point type. |
| 289 | return Context.getComplexType(rhs); |
| 290 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 291 | // We have two real floating types, float/complex combos were handled above. |
| 292 | // Convert the smaller operand to the bigger result. |
| 293 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 294 | if (result > 0) // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 295 | return lhs; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 296 | assert(result < 0 && "illegal float comparison"); |
| 297 | return rhs; // convert the lhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 298 | } |
| 299 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 300 | // Handle GCC complex int extension. |
| 301 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 302 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 303 | |
| 304 | if (lhsComplexInt && rhsComplexInt) { |
| 305 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 306 | rhsComplexInt->getElementType()) >= 0) |
| 307 | return lhs; // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 308 | return rhs; |
| 309 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 310 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 311 | return lhs; |
| 312 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 313 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 314 | return rhs; |
| 315 | } |
| 316 | } |
| 317 | // Finally, we have two differing integer types. |
| 318 | // The rules for this case are in C99 6.3.1.8 |
| 319 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 320 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 321 | rhsSigned = rhs->isSignedIntegerType(); |
| 322 | QualType destType; |
| 323 | if (lhsSigned == rhsSigned) { |
| 324 | // Same signedness; use the higher-ranked type |
| 325 | destType = compare >= 0 ? lhs : rhs; |
| 326 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 327 | // The unsigned type has greater than or equal rank to the |
| 328 | // signed type, so use the unsigned type |
| 329 | destType = lhsSigned ? rhs : lhs; |
| 330 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 331 | // The two types are different widths; if we are here, that |
| 332 | // means the signed type is larger than the unsigned type, so |
| 333 | // use the signed type. |
| 334 | destType = lhsSigned ? lhs : rhs; |
| 335 | } else { |
| 336 | // The signed type is higher-ranked than the unsigned type, |
| 337 | // but isn't actually any bigger (like unsigned int and long |
| 338 | // on most 32-bit systems). Use the unsigned type corresponding |
| 339 | // to the signed type. |
| 340 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 341 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 342 | return destType; |
| 343 | } |
| 344 | |
| 345 | //===----------------------------------------------------------------------===// |
| 346 | // Semantic Analysis for various Expression Types |
| 347 | //===----------------------------------------------------------------------===// |
| 348 | |
| 349 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 350 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 351 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 352 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 353 | /// multiple tokens. However, the common case is that StringToks points to one |
| 354 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 355 | /// |
| 356 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 357 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 358 | assert(NumStringToks && "Must have at least one string!"); |
| 359 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 360 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 361 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 362 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 363 | |
| 364 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 365 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 366 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 367 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 368 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 369 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 370 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 371 | |
| 372 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 373 | if (getLangOptions().CPlusPlus) |
| 374 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 375 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 376 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 377 | // the nul terminator character as well as the string length for pascal |
| 378 | // strings. |
| 379 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 380 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 381 | ArrayType::Normal, 0); |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 382 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 383 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 384 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 385 | Literal.GetStringLength(), |
| 386 | Literal.AnyWide, StrTy, |
| 387 | &StringTokLocs[0], |
| 388 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 391 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 392 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 393 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 394 | /// for values inside the block or for globals). |
| 395 | /// |
| 396 | /// FIXME: This will create BlockDeclRefExprs for global variables, |
| 397 | /// function references, etc which is suboptimal :) and breaks |
| 398 | /// things like "integer constant expression" tests. |
| 399 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 400 | ValueDecl *VD) { |
| 401 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 402 | // we wanted to. |
| 403 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 404 | return false; |
| 405 | |
| 406 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 407 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 408 | return false; |
| 409 | |
| 410 | // If this is a reference to an extern, static, or global variable, no need to |
| 411 | // snapshot it. |
| 412 | // FIXME: What about 'const' variables in C++? |
| 413 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
| 414 | return Var->hasLocalStorage(); |
| 415 | |
| 416 | return true; |
| 417 | } |
| 418 | |
| 419 | |
| 420 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 421 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 422 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 423 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 424 | /// 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] | 425 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 426 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 427 | IdentifierInfo &II, |
| 428 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 429 | const CXXScopeSpec *SS, |
| 430 | bool isAddressOfOperand) { |
| 431 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 432 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 435 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 436 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 437 | /// nested-name-specifier. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 438 | DeclRefExpr * |
| 439 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 440 | bool TypeDependent, bool ValueDependent, |
| 441 | const CXXScopeSpec *SS) { |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 442 | if (SS && !SS->isEmpty()) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 443 | return new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 444 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 445 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 446 | } else |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 447 | return new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 448 | } |
| 449 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 450 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 451 | /// variable corresponding to the anonymous union or struct whose type |
| 452 | /// is Record. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 453 | static Decl *getObjectForAnonymousRecordDecl(RecordDecl *Record) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 454 | assert(Record->isAnonymousStructOrUnion() && |
| 455 | "Record must be an anonymous struct or union!"); |
| 456 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 457 | // FIXME: Once Decls are directly linked together, this will |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 458 | // be an O(1) operation rather than a slow walk through DeclContext's |
| 459 | // vector (which itself will be eliminated). DeclGroups might make |
| 460 | // this even better. |
| 461 | DeclContext *Ctx = Record->getDeclContext(); |
| 462 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
| 463 | DEnd = Ctx->decls_end(); |
| 464 | D != DEnd; ++D) { |
| 465 | if (*D == Record) { |
| 466 | // The object for the anonymous struct/union directly |
| 467 | // follows its type in the list of declarations. |
| 468 | ++D; |
| 469 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 470 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 471 | return *D; |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | assert(false && "Missing object for anonymous record"); |
| 476 | return 0; |
| 477 | } |
| 478 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 479 | Sema::OwningExprResult |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 480 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 481 | FieldDecl *Field, |
| 482 | Expr *BaseObjectExpr, |
| 483 | SourceLocation OpLoc) { |
| 484 | assert(Field->getDeclContext()->isRecord() && |
| 485 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 486 | && "Field must be stored inside an anonymous struct or union"); |
| 487 | |
| 488 | // Construct the sequence of field member references |
| 489 | // we'll have to perform to get to the field in the anonymous |
| 490 | // union/struct. The list of members is built from the field |
| 491 | // outward, so traverse it backwards to go from an object in |
| 492 | // the current context to the field we found. |
| 493 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 494 | AnonFields.push_back(Field); |
| 495 | VarDecl *BaseObject = 0; |
| 496 | DeclContext *Ctx = Field->getDeclContext(); |
| 497 | do { |
| 498 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 499 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 500 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
| 501 | AnonFields.push_back(AnonField); |
| 502 | else { |
| 503 | BaseObject = cast<VarDecl>(AnonObject); |
| 504 | break; |
| 505 | } |
| 506 | Ctx = Ctx->getParent(); |
| 507 | } while (Ctx->isRecord() && |
| 508 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
| 509 | |
| 510 | // Build the expression that refers to the base object, from |
| 511 | // which we will build a sequence of member references to each |
| 512 | // of the anonymous union objects and, eventually, the field we |
| 513 | // found via name lookup. |
| 514 | bool BaseObjectIsPointer = false; |
| 515 | unsigned ExtraQuals = 0; |
| 516 | if (BaseObject) { |
| 517 | // BaseObject is an anonymous struct/union variable (and is, |
| 518 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 519 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 520 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 521 | SourceLocation()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 522 | ExtraQuals |
| 523 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 524 | } else if (BaseObjectExpr) { |
| 525 | // The caller provided the base object expression. Determine |
| 526 | // whether its a pointer and whether it adds any qualifiers to the |
| 527 | // anonymous struct/union fields we're looking into. |
| 528 | QualType ObjectType = BaseObjectExpr->getType(); |
| 529 | if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) { |
| 530 | BaseObjectIsPointer = true; |
| 531 | ObjectType = ObjectPtr->getPointeeType(); |
| 532 | } |
| 533 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 534 | } else { |
| 535 | // We've found a member of an anonymous struct/union that is |
| 536 | // inside a non-anonymous struct/union, so in a well-formed |
| 537 | // program our base object expression is "this". |
| 538 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 539 | if (!MD->isStatic()) { |
| 540 | QualType AnonFieldType |
| 541 | = Context.getTagDeclType( |
| 542 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 543 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 544 | if ((Context.getCanonicalType(AnonFieldType) |
| 545 | == Context.getCanonicalType(ThisType)) || |
| 546 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 547 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 548 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 549 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 550 | BaseObjectIsPointer = true; |
| 551 | } |
| 552 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 553 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 554 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 555 | } |
| 556 | ExtraQuals = MD->getTypeQualifiers(); |
| 557 | } |
| 558 | |
| 559 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 560 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 561 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | // Build the implicit member references to the field of the |
| 565 | // anonymous struct/union. |
| 566 | Expr *Result = BaseObjectExpr; |
| 567 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 568 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 569 | FI != FIEnd; ++FI) { |
| 570 | QualType MemberType = (*FI)->getType(); |
| 571 | if (!(*FI)->isMutable()) { |
| 572 | unsigned combinedQualifiers |
| 573 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 574 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 575 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 576 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 577 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 578 | BaseObjectIsPointer = false; |
| 579 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 580 | } |
| 581 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 582 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 585 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 586 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 587 | /// performs lookup on that name and returns an expression that refers |
| 588 | /// to that name. This routine isn't directly called from the parser, |
| 589 | /// because the parser doesn't know about DeclarationName. Rather, |
| 590 | /// this routine is called by ActOnIdentifierExpr, |
| 591 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 592 | /// which form the DeclarationName from the corresponding syntactic |
| 593 | /// forms. |
| 594 | /// |
| 595 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 596 | /// function call context. LookupCtx is only used for a C++ |
| 597 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 598 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 599 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 600 | /// isAddressOfOperand means that this expression is the direct operand |
| 601 | /// of an address-of operator. This matters because this is the only |
| 602 | /// situation where a qualified name referencing a non-static member may |
| 603 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 604 | Sema::OwningExprResult |
| 605 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 606 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 607 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 608 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 609 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 610 | if (SS && SS->isInvalid()) |
| 611 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 612 | |
| 613 | // C++ [temp.dep.expr]p3: |
| 614 | // An id-expression is type-dependent if it contains: |
| 615 | // -- a nested-name-specifier that contains a class-name that |
| 616 | // names a dependent type. |
| 617 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 618 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 619 | Loc, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 620 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()))); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 623 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 624 | false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 625 | |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 626 | NamedDecl *D = 0; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 627 | if (Lookup.isAmbiguous()) { |
| 628 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 629 | SS && SS->isSet() ? SS->getRange() |
| 630 | : SourceRange()); |
| 631 | return ExprError(); |
| 632 | } else |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 633 | D = Lookup.getAsDecl(); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 634 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 635 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 636 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 637 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 638 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 639 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 640 | // 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] | 641 | // found a decl, but that decl is outside the current instance method (i.e. |
| 642 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 643 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 644 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 645 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 646 | ObjCInterfaceDecl *ClassDeclared; |
| 647 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 648 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 649 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 650 | return ExprError(); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 651 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 652 | // If a class method attemps to use a free standing ivar, this is |
| 653 | // an error. |
| 654 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 655 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 656 | << IV->getDeclName()); |
| 657 | // If a class method uses a global variable, even if an ivar with |
| 658 | // same name exists, use the global. |
| 659 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 660 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 661 | ClassDeclared != IFace) |
| 662 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 663 | // FIXME: This should use a new expr for a direct reference, don't turn |
| 664 | // this into Self->ivar, just return a BareIVarExpr or something. |
| 665 | IdentifierInfo &II = Context.Idents.get("self"); |
| 666 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false); |
| 667 | ObjCIvarRefExpr *MRef = new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 668 | Loc, static_cast<Expr*>(SelfExpr.release()), |
| 669 | true, true); |
| 670 | Context.setFieldDecl(IFace, IV, MRef); |
| 671 | return Owned(MRef); |
| 672 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 673 | } |
| 674 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 675 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 676 | // We should warn if a local variable hides an ivar. |
| 677 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 678 | ObjCInterfaceDecl *ClassDeclared; |
| 679 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
| 680 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 681 | IFace == ClassDeclared) |
| 682 | Diag(Loc, diag::warn_ivar_use_hidden)<<IV->getDeclName(); |
| 683 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 684 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 685 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 686 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 687 | QualType T; |
| 688 | |
| 689 | if (getCurMethodDecl()->isInstanceMethod()) |
| 690 | T = Context.getPointerType(Context.getObjCInterfaceType( |
| 691 | getCurMethodDecl()->getClassInterface())); |
| 692 | else |
| 693 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 694 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 695 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 696 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 697 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 698 | // Determine whether this name might be a candidate for |
| 699 | // argument-dependent lookup. |
| 700 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 701 | HasTrailingLParen; |
| 702 | |
| 703 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 704 | // We've seen something of the form |
| 705 | // |
| 706 | // identifier( |
| 707 | // |
| 708 | // and we did not find any entity by the name |
| 709 | // "identifier". However, this identifier is still subject to |
| 710 | // argument-dependent lookup, so keep track of the name. |
| 711 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 712 | Context.OverloadTy, |
| 713 | Loc)); |
| 714 | } |
| 715 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 716 | if (D == 0) { |
| 717 | // Otherwise, this could be an implicitly declared function reference (legal |
| 718 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 719 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 720 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 721 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 722 | else { |
| 723 | // If this name wasn't predeclared and if this is not a function call, |
| 724 | // diagnose the problem. |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 725 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 726 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 727 | << Name << SS->getRange()); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 728 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 729 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 730 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 731 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 732 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 733 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 734 | } |
| 735 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 736 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 737 | // If this is an expression of the form &Class::member, don't build an |
| 738 | // implicit member ref, because we want a pointer to the member in general, |
| 739 | // not any specific instance's member. |
| 740 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 741 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 742 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 743 | QualType DType; |
| 744 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 745 | DType = FD->getType().getNonReferenceType(); |
| 746 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 747 | DType = Method->getType(); |
| 748 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 749 | DType = Context.OverloadTy; |
| 750 | } |
| 751 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 752 | if (!DType.isNull()) { |
| 753 | // The pointer is type- and value-dependent if it points into something |
| 754 | // dependent. |
| 755 | bool Dependent = false; |
| 756 | for (; DC; DC = DC->getParent()) { |
| 757 | // FIXME: could stop early at namespace scope. |
| 758 | if (DC->isRecord()) { |
| 759 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 760 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 761 | Dependent = true; |
| 762 | break; |
| 763 | } |
| 764 | } |
| 765 | } |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 766 | return Owned(BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS)); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | } |
| 770 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 771 | // We may have found a field within an anonymous union or struct |
| 772 | // (C++ [class.union]). |
| 773 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 774 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 775 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 776 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 777 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 778 | if (!MD->isStatic()) { |
| 779 | // C++ [class.mfct.nonstatic]p2: |
| 780 | // [...] if name lookup (3.4.1) resolves the name in the |
| 781 | // id-expression to a nonstatic nontype member of class X or of |
| 782 | // a base class of X, the id-expression is transformed into a |
| 783 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 784 | // as the postfix-expression to the left of the '.' operator. |
| 785 | DeclContext *Ctx = 0; |
| 786 | QualType MemberType; |
| 787 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 788 | Ctx = FD->getDeclContext(); |
| 789 | MemberType = FD->getType(); |
| 790 | |
| 791 | if (const ReferenceType *RefType = MemberType->getAsReferenceType()) |
| 792 | MemberType = RefType->getPointeeType(); |
| 793 | else if (!FD->isMutable()) { |
| 794 | unsigned combinedQualifiers |
| 795 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 796 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 797 | } |
| 798 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 799 | if (!Method->isStatic()) { |
| 800 | Ctx = Method->getParent(); |
| 801 | MemberType = Method->getType(); |
| 802 | } |
| 803 | } else if (OverloadedFunctionDecl *Ovl |
| 804 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 805 | for (OverloadedFunctionDecl::function_iterator |
| 806 | Func = Ovl->function_begin(), |
| 807 | FuncEnd = Ovl->function_end(); |
| 808 | Func != FuncEnd; ++Func) { |
| 809 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 810 | if (!DMethod->isStatic()) { |
| 811 | Ctx = Ovl->getDeclContext(); |
| 812 | MemberType = Context.OverloadTy; |
| 813 | break; |
| 814 | } |
| 815 | } |
| 816 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 817 | |
| 818 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 819 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 820 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 821 | if ((Context.getCanonicalType(CtxType) |
| 822 | == Context.getCanonicalType(ThisType)) || |
| 823 | IsDerivedFrom(ThisType, CtxType)) { |
| 824 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 825 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 826 | MD->getThisType(Context)); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 827 | return Owned(new (Context) MemberExpr(This, true, D, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 828 | SourceLocation(), MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 829 | } |
| 830 | } |
| 831 | } |
| 832 | } |
| 833 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 834 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 835 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 836 | if (MD->isStatic()) |
| 837 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 838 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 839 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 840 | } |
| 841 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 842 | // Any other ways we could have found the field in a well-formed |
| 843 | // program would have been turned into implicit member expressions |
| 844 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 845 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 846 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 847 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 848 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 849 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 850 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 851 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 852 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 853 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 854 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 855 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 856 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 857 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 858 | return Owned(BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 859 | false, false, SS)); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 860 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
| 861 | return Owned(BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 862 | false, false, SS)); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 863 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 864 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 865 | // Check whether this declaration can be used. Note that we suppress |
| 866 | // this check when we're going to perform argument-dependent lookup |
| 867 | // on this function name, because this might not be the function |
| 868 | // that overload resolution actually selects. |
| 869 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 870 | return ExprError(); |
| 871 | |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 872 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 873 | // Warn about constructs like: |
| 874 | // if (void *X = foo()) { ... } else { X }. |
| 875 | // In the else block, the pointer is always false. |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 876 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 877 | Scope *CheckS = S; |
| 878 | while (CheckS) { |
| 879 | if (CheckS->isWithinElse() && |
| 880 | CheckS->getControlParent()->isDeclScope(Var)) { |
| 881 | if (Var->getType()->isBooleanType()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 882 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 883 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 884 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 885 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 886 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 887 | break; |
| 888 | } |
| 889 | |
| 890 | // Move up one more control parent to check again. |
| 891 | CheckS = CheckS->getControlParent(); |
| 892 | if (CheckS) |
| 893 | CheckS = CheckS->getParent(); |
| 894 | } |
| 895 | } |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 896 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(VD)) { |
| 897 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 898 | // C99 DR 316 says that, if a function type comes from a |
| 899 | // function definition (without a prototype), that type is only |
| 900 | // used for checking compatibility. Therefore, when referencing |
| 901 | // the function, we pretend that we don't have the full function |
| 902 | // type. |
| 903 | QualType T = Func->getType(); |
| 904 | QualType NoProtoType = T; |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 905 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 906 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 907 | return Owned(BuildDeclRefExpr(VD, NoProtoType, Loc, false, false, SS)); |
| 908 | } |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 909 | } |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 910 | |
| 911 | // Only create DeclRefExpr's for valid Decl's. |
| 912 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 913 | return ExprError(); |
| 914 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 915 | // If the identifier reference is inside a block, and it refers to a value |
| 916 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 917 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 918 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 919 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 920 | // We do not do this for things like enum constants, global variables, etc, |
| 921 | // as they do not get snapshotted. |
| 922 | // |
| 923 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 924 | // Blocks that have these can't be constant. |
| 925 | CurBlock->hasBlockDeclRefExprs = true; |
| 926 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 927 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 928 | // The BlocksAttr indicates the variable is bound by-reference. |
| 929 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 930 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 931 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 932 | // Variable will be bound by-copy, make it const within the closure. |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 933 | ExprTy.addConst(); |
| 934 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 935 | } |
| 936 | // If this reference is not in a block or if the referenced variable is |
| 937 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 938 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 939 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 940 | bool ValueDependent = false; |
| 941 | if (getLangOptions().CPlusPlus) { |
| 942 | // C++ [temp.dep.expr]p3: |
| 943 | // An id-expression is type-dependent if it contains: |
| 944 | // - an identifier that was declared with a dependent type, |
| 945 | if (VD->getType()->isDependentType()) |
| 946 | TypeDependent = true; |
| 947 | // - FIXME: a template-id that is dependent, |
| 948 | // - a conversion-function-id that specifies a dependent type, |
| 949 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 950 | Name.getCXXNameType()->isDependentType()) |
| 951 | TypeDependent = true; |
| 952 | // - a nested-name-specifier that contains a class-name that |
| 953 | // names a dependent type. |
| 954 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 955 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 956 | DC; DC = DC->getParent()) { |
| 957 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 958 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 959 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 960 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 961 | TypeDependent = true; |
| 962 | break; |
| 963 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 964 | } |
| 965 | } |
| 966 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 967 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 968 | // C++ [temp.dep.constexpr]p2: |
| 969 | // |
| 970 | // An identifier is value-dependent if it is: |
| 971 | // - a name declared with a dependent type, |
| 972 | if (TypeDependent) |
| 973 | ValueDependent = true; |
| 974 | // - the name of a non-type template parameter, |
| 975 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 976 | ValueDependent = true; |
| 977 | // - a constant with integral or enumeration type and is |
| 978 | // initialized with an expression that is value-dependent |
| 979 | // (FIXME!). |
| 980 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 981 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 982 | return Owned(BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 983 | TypeDependent, ValueDependent, SS)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 986 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 987 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 988 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 989 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 990 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 991 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 992 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 993 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 994 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 995 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 996 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 997 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 998 | // string. |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 999 | unsigned Length; |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 1000 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1001 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1002 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1003 | Length = MD->getSynthesizedMethodSize(); |
| 1004 | else { |
| 1005 | Diag(Loc, diag::ext_predef_outside_function); |
| 1006 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1007 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1008 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1009 | |
| 1010 | |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1011 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1012 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1013 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1014 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1015 | } |
| 1016 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1017 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1018 | llvm::SmallString<16> CharBuffer; |
| 1019 | CharBuffer.resize(Tok.getLength()); |
| 1020 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1021 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1022 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1023 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1024 | Tok.getLocation(), PP); |
| 1025 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1026 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1027 | |
| 1028 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1029 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1030 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1031 | Literal.isWide(), |
| 1032 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1035 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1036 | // 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] | 1037 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1038 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1039 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1040 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1041 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1042 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1043 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1044 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1045 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1046 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1047 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1048 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1049 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1050 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1051 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1052 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1053 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1054 | Tok.getLocation(), PP); |
| 1055 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1056 | return ExprError(); |
| 1057 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1058 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1059 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1060 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1061 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1062 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1063 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1064 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1065 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1066 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1067 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1068 | |
| 1069 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1070 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1071 | // isExact will be set by GetFloatValue(). |
| 1072 | bool isExact = false; |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1073 | Res = new (Context) FloatingLiteral(Literal.GetFloatValue(Format, &isExact), |
| 1074 | &isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1075 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1076 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1077 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1078 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1079 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1080 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1081 | // long long is a C99 feature. |
| 1082 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1083 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1084 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1085 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1086 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1087 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1088 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1089 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1090 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1091 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1092 | Ty = Context.UnsignedLongLongTy; |
| 1093 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1094 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1095 | } else { |
| 1096 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1097 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1098 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1099 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1100 | // be an unsigned int. |
| 1101 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1102 | |
| 1103 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1104 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1105 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1106 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1107 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1108 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1109 | // Does it fit in a unsigned int? |
| 1110 | if (ResultVal.isIntN(IntSize)) { |
| 1111 | // Does it fit in a signed int? |
| 1112 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1113 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1114 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1115 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1116 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1117 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1118 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1119 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1120 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1121 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1122 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1123 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1124 | // Does it fit in a unsigned long? |
| 1125 | if (ResultVal.isIntN(LongSize)) { |
| 1126 | // Does it fit in a signed long? |
| 1127 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1128 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1129 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1130 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1131 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1132 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1135 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1136 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1137 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1138 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1139 | // Does it fit in a unsigned long long? |
| 1140 | if (ResultVal.isIntN(LongLongSize)) { |
| 1141 | // Does it fit in a signed long long? |
| 1142 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1143 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1144 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1145 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1146 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1147 | } |
| 1148 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1149 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1150 | // If we still couldn't decide a type, we probably have something that |
| 1151 | // 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] | 1152 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1153 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1154 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1155 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1156 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1157 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1158 | if (ResultVal.getBitWidth() != Width) |
| 1159 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1160 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1161 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1162 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1163 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1164 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1165 | if (Literal.isImaginary) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1166 | Res = new (Context) ImaginaryLiteral(Res, |
| 1167 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1168 | |
| 1169 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1170 | } |
| 1171 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1172 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1173 | SourceLocation R, ExprArg Val) { |
| 1174 | Expr *E = (Expr *)Val.release(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1175 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1176 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1180 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1181 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1182 | SourceLocation OpLoc, |
| 1183 | const SourceRange &ExprRange, |
| 1184 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1185 | if (exprType->isDependentType()) |
| 1186 | return false; |
| 1187 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1188 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1189 | if (isa<FunctionType>(exprType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1190 | // alignof(function) is allowed. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1191 | if (isSizeof) |
| 1192 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1193 | return false; |
| 1194 | } |
| 1195 | |
| 1196 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1197 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1198 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1199 | return false; |
| 1200 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1201 | |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 1202 | return RequireCompleteType(OpLoc, exprType, |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1203 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1204 | diag::err_alignof_incomplete_type, |
| 1205 | ExprRange); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1206 | } |
| 1207 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1208 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1209 | const SourceRange &ExprRange) { |
| 1210 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1211 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1212 | // alignof decl is always ok. |
| 1213 | if (isa<DeclRefExpr>(E)) |
| 1214 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1215 | |
| 1216 | // Cannot know anything else if the expression is dependent. |
| 1217 | if (E->isTypeDependent()) |
| 1218 | return false; |
| 1219 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1220 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 1221 | if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { |
| 1222 | if (FD->isBitField()) { |
Chris Lattner | da02747 | 2009-01-24 21:29:22 +0000 | [diff] [blame] | 1223 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1224 | return true; |
| 1225 | } |
| 1226 | // Other fields are ok. |
| 1227 | return false; |
| 1228 | } |
| 1229 | } |
| 1230 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1231 | } |
| 1232 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1233 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1234 | Action::OwningExprResult |
| 1235 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1236 | bool isSizeOf, SourceRange R) { |
| 1237 | if (T.isNull()) |
| 1238 | return ExprError(); |
| 1239 | |
| 1240 | if (!T->isDependentType() && |
| 1241 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1242 | return ExprError(); |
| 1243 | |
| 1244 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1245 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1246 | Context.getSizeType(), OpLoc, |
| 1247 | R.getEnd())); |
| 1248 | } |
| 1249 | |
| 1250 | /// \brief Build a sizeof or alignof expression given an expression |
| 1251 | /// operand. |
| 1252 | Action::OwningExprResult |
| 1253 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1254 | bool isSizeOf, SourceRange R) { |
| 1255 | // Verify that the operand is valid. |
| 1256 | bool isInvalid = false; |
| 1257 | if (E->isTypeDependent()) { |
| 1258 | // Delay type-checking for type-dependent expressions. |
| 1259 | } else if (!isSizeOf) { |
| 1260 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
| 1261 | } else if (E->isBitField()) { // C99 6.5.3.4p1. |
| 1262 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1263 | isInvalid = true; |
| 1264 | } else { |
| 1265 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1266 | } |
| 1267 | |
| 1268 | if (isInvalid) |
| 1269 | return ExprError(); |
| 1270 | |
| 1271 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1272 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1273 | Context.getSizeType(), OpLoc, |
| 1274 | R.getEnd())); |
| 1275 | } |
| 1276 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1277 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1278 | /// the same for @c alignof and @c __alignof |
| 1279 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1280 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1281 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1282 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1283 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1284 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1285 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1286 | if (isType) { |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1287 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1288 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1289 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1290 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1291 | // Get the end location. |
| 1292 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1293 | Action::OwningExprResult Result |
| 1294 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1295 | |
| 1296 | if (Result.isInvalid()) |
| 1297 | DeleteExpr(ArgEx); |
| 1298 | |
| 1299 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1300 | } |
| 1301 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1302 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1303 | if (V->isTypeDependent()) |
| 1304 | return Context.DependentTy; |
| 1305 | |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1306 | DefaultFunctionArrayConversion(V); |
| 1307 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1308 | // These operators return the element type of a complex type. |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1309 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1310 | return CT->getElementType(); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1311 | |
| 1312 | // Otherwise they pass through real integer and floating point types here. |
| 1313 | if (V->getType()->isArithmeticType()) |
| 1314 | return V->getType(); |
| 1315 | |
| 1316 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1317 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1318 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1319 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1320 | } |
| 1321 | |
| 1322 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1323 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1324 | Action::OwningExprResult |
| 1325 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1326 | tok::TokenKind Kind, ExprArg Input) { |
| 1327 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1328 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1329 | UnaryOperator::Opcode Opc; |
| 1330 | switch (Kind) { |
| 1331 | default: assert(0 && "Unknown unary op!"); |
| 1332 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1333 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1334 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1335 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1336 | if (getLangOptions().CPlusPlus && |
| 1337 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1338 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1339 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1340 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1341 | |
| 1342 | // C++ [over.inc]p1: |
| 1343 | // |
| 1344 | // [...] If the function is a member function with one |
| 1345 | // parameter (which shall be of type int) or a non-member |
| 1346 | // function with two parameters (the second of which shall be |
| 1347 | // of type int), it defines the postfix increment operator ++ |
| 1348 | // for objects of that type. When the postfix increment is |
| 1349 | // called as a result of using the ++ operator, the int |
| 1350 | // argument will have value zero. |
| 1351 | Expr *Args[2] = { |
| 1352 | Arg, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1353 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1354 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1355 | }; |
| 1356 | |
| 1357 | // Build the candidate set for overloading |
| 1358 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1359 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1360 | |
| 1361 | // Perform overload resolution. |
| 1362 | OverloadCandidateSet::iterator Best; |
| 1363 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1364 | case OR_Success: { |
| 1365 | // We found a built-in operator or an overloaded operator. |
| 1366 | FunctionDecl *FnDecl = Best->Function; |
| 1367 | |
| 1368 | if (FnDecl) { |
| 1369 | // We matched an overloaded operator. Build a call to that |
| 1370 | // operator. |
| 1371 | |
| 1372 | // Convert the arguments. |
| 1373 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1374 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1375 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1376 | } else { |
| 1377 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1378 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1379 | FnDecl->getParamDecl(0)->getType(), |
| 1380 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1381 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1385 | QualType ResultTy |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1386 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1387 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1388 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1389 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1390 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1391 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1392 | UsualUnaryConversions(FnExpr); |
| 1393 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1394 | Input.release(); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1395 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1396 | Args, 2, ResultTy, |
| 1397 | OpLoc)); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1398 | } else { |
| 1399 | // We matched a built-in operator. Convert the arguments, then |
| 1400 | // break out so that we will build the appropriate built-in |
| 1401 | // operator node. |
| 1402 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1403 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1404 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1405 | |
| 1406 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1407 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1408 | } |
| 1409 | |
| 1410 | case OR_No_Viable_Function: |
| 1411 | // No viable function; fall through to handling this as a |
| 1412 | // built-in operator, which will produce an error message for us. |
| 1413 | break; |
| 1414 | |
| 1415 | case OR_Ambiguous: |
| 1416 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1417 | << UnaryOperator::getOpcodeStr(Opc) |
| 1418 | << Arg->getSourceRange(); |
| 1419 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1420 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1421 | |
| 1422 | case OR_Deleted: |
| 1423 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1424 | << Best->Function->isDeleted() |
| 1425 | << UnaryOperator::getOpcodeStr(Opc) |
| 1426 | << Arg->getSourceRange(); |
| 1427 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1428 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | // Either we found no viable overloaded operator or we matched a |
| 1432 | // built-in operator. In either case, fall through to trying to |
| 1433 | // build a built-in operation. |
| 1434 | } |
| 1435 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 1436 | QualType result = CheckIncrementDecrementOperand(Arg, OpLoc, |
| 1437 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1438 | if (result.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1439 | return ExprError(); |
| 1440 | Input.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1441 | return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1444 | Action::OwningExprResult |
| 1445 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1446 | ExprArg Idx, SourceLocation RLoc) { |
| 1447 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1448 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1449 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1450 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1451 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1452 | LHSExp->getType()->isEnumeralType() || |
| 1453 | RHSExp->getType()->isRecordType() || |
| 1454 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1455 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1456 | // to the candidate set. |
| 1457 | OverloadCandidateSet CandidateSet; |
| 1458 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1459 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1460 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1461 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1462 | // Perform overload resolution. |
| 1463 | OverloadCandidateSet::iterator Best; |
| 1464 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1465 | case OR_Success: { |
| 1466 | // We found a built-in operator or an overloaded operator. |
| 1467 | FunctionDecl *FnDecl = Best->Function; |
| 1468 | |
| 1469 | if (FnDecl) { |
| 1470 | // We matched an overloaded operator. Build a call to that |
| 1471 | // operator. |
| 1472 | |
| 1473 | // Convert the arguments. |
| 1474 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1475 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1476 | PerformCopyInitialization(RHSExp, |
| 1477 | FnDecl->getParamDecl(0)->getType(), |
| 1478 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1479 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1480 | } else { |
| 1481 | // Convert the arguments. |
| 1482 | if (PerformCopyInitialization(LHSExp, |
| 1483 | FnDecl->getParamDecl(0)->getType(), |
| 1484 | "passing") || |
| 1485 | PerformCopyInitialization(RHSExp, |
| 1486 | FnDecl->getParamDecl(1)->getType(), |
| 1487 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1488 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1492 | QualType ResultTy |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1493 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1494 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1495 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1496 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1497 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1498 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1499 | UsualUnaryConversions(FnExpr); |
| 1500 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1501 | Base.release(); |
| 1502 | Idx.release(); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1503 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1504 | FnExpr, Args, 2, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1505 | ResultTy, LLoc)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1506 | } else { |
| 1507 | // We matched a built-in operator. Convert the arguments, then |
| 1508 | // break out so that we will build the appropriate built-in |
| 1509 | // operator node. |
| 1510 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1511 | "passing") || |
| 1512 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1513 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1514 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1515 | |
| 1516 | break; |
| 1517 | } |
| 1518 | } |
| 1519 | |
| 1520 | case OR_No_Viable_Function: |
| 1521 | // No viable function; fall through to handling this as a |
| 1522 | // built-in operator, which will produce an error message for us. |
| 1523 | break; |
| 1524 | |
| 1525 | case OR_Ambiguous: |
| 1526 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1527 | << "[]" |
| 1528 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1529 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1530 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1531 | |
| 1532 | case OR_Deleted: |
| 1533 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1534 | << Best->Function->isDeleted() |
| 1535 | << "[]" |
| 1536 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1537 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1538 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1539 | } |
| 1540 | |
| 1541 | // Either we found no viable overloaded operator or we matched a |
| 1542 | // built-in operator. In either case, fall through to trying to |
| 1543 | // build a built-in operation. |
| 1544 | } |
| 1545 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1546 | // Perform default conversions. |
| 1547 | DefaultFunctionArrayConversion(LHSExp); |
| 1548 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1549 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1550 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1551 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1552 | // 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] | 1553 | // 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] | 1554 | // 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] | 1555 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1556 | Expr *BaseExpr, *IndexExpr; |
| 1557 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1558 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1559 | BaseExpr = LHSExp; |
| 1560 | IndexExpr = RHSExp; |
| 1561 | ResultType = Context.DependentTy; |
| 1562 | } else if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1563 | BaseExpr = LHSExp; |
| 1564 | IndexExpr = RHSExp; |
| 1565 | // FIXME: need to deal with const... |
| 1566 | ResultType = PTy->getPointeeType(); |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1567 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1568 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1569 | BaseExpr = RHSExp; |
| 1570 | IndexExpr = LHSExp; |
| 1571 | // FIXME: need to deal with const... |
| 1572 | ResultType = PTy->getPointeeType(); |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1573 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1574 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1575 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1576 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1577 | // FIXME: need to deal with const... |
| 1578 | ResultType = VTy->getElementType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1579 | } else { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1580 | return ExprError(Diag(LHSExp->getLocStart(), |
| 1581 | diag::err_typecheck_subscript_value) << RHSExp->getSourceRange()); |
| 1582 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1583 | // C99 6.5.2.1p1 |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1584 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1585 | return ExprError(Diag(IndexExpr->getLocStart(), |
| 1586 | diag::err_typecheck_subscript) << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1587 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1588 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1589 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1590 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1591 | // incomplete types are not object types. |
| 1592 | if (ResultType->isFunctionType()) { |
| 1593 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1594 | << ResultType << BaseExpr->getSourceRange(); |
| 1595 | return ExprError(); |
| 1596 | } |
| 1597 | if (!ResultType->isDependentType() && |
| 1598 | RequireCompleteType(BaseExpr->getLocStart(), ResultType, |
| 1599 | diag::err_subscript_incomplete_type, |
| 1600 | BaseExpr->getSourceRange())) |
| 1601 | return ExprError(); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1602 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1603 | Base.release(); |
| 1604 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1605 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1606 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1607 | } |
| 1608 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1609 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1610 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1611 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1612 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1613 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1614 | // The vector accessor can't exceed the number of elements. |
| 1615 | const char *compStr = CompName.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1616 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1617 | // 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] | 1618 | // special names that indicate a subset of exactly half the elements are |
| 1619 | // to be selected. |
| 1620 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1621 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1622 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1623 | // indicating that it is a string of hex values to be used as vector indices. |
| 1624 | bool HexSwizzle = *compStr == 's'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1625 | |
| 1626 | // Check that we've found one of the special components, or that the component |
| 1627 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1628 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1629 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1630 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1631 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1632 | do |
| 1633 | compStr++; |
| 1634 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1635 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1636 | do |
| 1637 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1638 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1639 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1640 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1641 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1642 | // We didn't get to the end of the string. This means the component names |
| 1643 | // 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] | 1644 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1645 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1646 | return QualType(); |
| 1647 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1648 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1649 | // Ensure no component accessor exceeds the width of the vector type it |
| 1650 | // operates on. |
| 1651 | if (!HalvingSwizzle) { |
| 1652 | compStr = CompName.getName(); |
| 1653 | |
| 1654 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1655 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1656 | |
| 1657 | while (*compStr) { |
| 1658 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1659 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1660 | << baseType << SourceRange(CompLoc); |
| 1661 | return QualType(); |
| 1662 | } |
| 1663 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1664 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1665 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1666 | // If this is a halving swizzle, verify that the base type has an even |
| 1667 | // number of elements. |
| 1668 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1669 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1670 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1671 | return QualType(); |
| 1672 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1673 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1674 | // 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] | 1675 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1676 | // 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] | 1677 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1678 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1679 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 1680 | : CompName.getLength(); |
| 1681 | if (HexSwizzle) |
| 1682 | CompSize--; |
| 1683 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1684 | if (CompSize == 1) |
| 1685 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1686 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1687 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1688 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1689 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1690 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1691 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1692 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1693 | } |
| 1694 | 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] | 1695 | } |
| 1696 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1697 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 1698 | IdentifierInfo &Member, |
| 1699 | const Selector &Sel) { |
| 1700 | |
| 1701 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member)) |
| 1702 | return PD; |
| 1703 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
| 1704 | return OMD; |
| 1705 | |
| 1706 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1707 | E = PDecl->protocol_end(); I != E; ++I) { |
| 1708 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel)) |
| 1709 | return D; |
| 1710 | } |
| 1711 | return 0; |
| 1712 | } |
| 1713 | |
| 1714 | static Decl *FindGetterNameDecl(const ObjCQualifiedIdType *QIdTy, |
| 1715 | IdentifierInfo &Member, |
| 1716 | const Selector &Sel) { |
| 1717 | // Check protocols on qualified interfaces. |
| 1718 | Decl *GDecl = 0; |
| 1719 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1720 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1721 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
| 1722 | GDecl = PD; |
| 1723 | break; |
| 1724 | } |
| 1725 | // Also must look for a getter name which uses property syntax. |
| 1726 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
| 1727 | GDecl = OMD; |
| 1728 | break; |
| 1729 | } |
| 1730 | } |
| 1731 | if (!GDecl) { |
| 1732 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1733 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1734 | // Search in the protocol-qualifier list of current protocol. |
| 1735 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel); |
| 1736 | if (GDecl) |
| 1737 | return GDecl; |
| 1738 | } |
| 1739 | } |
| 1740 | return GDecl; |
| 1741 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1742 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1743 | Action::OwningExprResult |
| 1744 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 1745 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1746 | IdentifierInfo &Member, |
| 1747 | DeclTy *ObjCImpDecl) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1748 | Expr *BaseExpr = static_cast<Expr *>(Base.release()); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1749 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 1750 | |
| 1751 | // Perform default conversions. |
| 1752 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1753 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1754 | QualType BaseType = BaseExpr->getType(); |
| 1755 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1756 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1757 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 1758 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1759 | if (OpKind == tok::arrow) { |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1760 | if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1761 | BaseType = PT->getPointeeType(); |
Douglas Gregor | 8ba1074 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 1762 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1763 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 1764 | MemberLoc, Member)); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1765 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1766 | return ExprError(Diag(MemberLoc, |
| 1767 | diag::err_typecheck_member_reference_arrow) |
| 1768 | << BaseType << BaseExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1769 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1770 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1771 | // Handle field access to simple records. This also handles access to fields |
| 1772 | // of the ObjC 'id' struct. |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1773 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1774 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 1775 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 1776 | diag::err_typecheck_incomplete_tag, |
| 1777 | BaseExpr->getSourceRange())) |
| 1778 | return ExprError(); |
| 1779 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1780 | // The record definition is complete, now make sure the member is valid. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1781 | // FIXME: Qualified name lookup for C++ is a bit more complicated |
| 1782 | // than this. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1783 | LookupResult Result |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1784 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1785 | LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1786 | |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1787 | NamedDecl *MemberDecl = 0; |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1788 | if (!Result) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1789 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 1790 | << &Member << BaseExpr->getSourceRange()); |
| 1791 | else if (Result.isAmbiguous()) { |
| 1792 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 1793 | MemberLoc, BaseExpr->getSourceRange()); |
| 1794 | return ExprError(); |
| 1795 | } else |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1796 | MemberDecl = Result; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1797 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1798 | // If the decl being referenced had an error, return an error for this |
| 1799 | // sub-expr without emitting another error, in order to avoid cascading |
| 1800 | // error cases. |
| 1801 | if (MemberDecl->isInvalidDecl()) |
| 1802 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1803 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1804 | // Check the use of this field |
| 1805 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 1806 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1807 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1808 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1809 | // We may have found a field within an anonymous union or struct |
| 1810 | // (C++ [class.union]). |
| 1811 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1812 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1813 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1814 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1815 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 1816 | // FIXME: Handle address space modifiers |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1817 | QualType MemberType = FD->getType(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1818 | if (const ReferenceType *Ref = MemberType->getAsReferenceType()) |
| 1819 | MemberType = Ref->getPointeeType(); |
| 1820 | else { |
| 1821 | unsigned combinedQualifiers = |
| 1822 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1823 | if (FD->isMutable()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1824 | combinedQualifiers &= ~QualType::Const; |
| 1825 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 1826 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 1827 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1828 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 1829 | MemberLoc, MemberType)); |
Douglas Gregor | 2d2e9cf | 2009-03-11 20:22:50 +0000 | [diff] [blame] | 1830 | } else if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1831 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1832 | Var, MemberLoc, |
| 1833 | Var->getType().getNonReferenceType())); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1834 | else if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1835 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1836 | MemberFn, MemberLoc, MemberFn->getType())); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1837 | else if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1838 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1839 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1840 | MemberLoc, Context.OverloadTy)); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1841 | else if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1842 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 1843 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1844 | else if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1845 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 1846 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 1847 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1848 | // We found a declaration kind that we didn't expect. This is a |
| 1849 | // generic error message that tells the user that she can't refer |
| 1850 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1851 | return ExprError(Diag(MemberLoc, |
| 1852 | diag::err_typecheck_member_reference_unknown) |
| 1853 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 1854 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1855 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 1856 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 1857 | // (*Obj).ivar. |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1858 | if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1859 | ObjCInterfaceDecl *ClassDeclared; |
| 1860 | if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(&Member, |
| 1861 | ClassDeclared)) { |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1862 | // If the decl being referenced had an error, return an error for this |
| 1863 | // sub-expr without emitting another error, in order to avoid cascading |
| 1864 | // error cases. |
| 1865 | if (IV->isInvalidDecl()) |
| 1866 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1867 | |
| 1868 | // Check whether we can reference this field. |
| 1869 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 1870 | return ExprError(); |
Steve Naroff | 8bfd1b8 | 2009-03-26 16:01:08 +0000 | [diff] [blame] | 1871 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 1872 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1873 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 1874 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1875 | ClassOfMethodDecl = MD->getClassInterface(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1876 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 1877 | // Case of a c-function declared inside an objc implementation. |
| 1878 | // FIXME: For a c-style function nested inside an objc implementation |
| 1879 | // class, there is no implementation context available, so we pass down |
| 1880 | // the context as argument to this routine. Ideally, this context need |
| 1881 | // be passed down in the AST node and somehow calculated from the AST |
| 1882 | // for a function decl. |
| 1883 | Decl *ImplDecl = static_cast<Decl *>(ObjCImpDecl); |
| 1884 | if (ObjCImplementationDecl *IMPD = |
| 1885 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 1886 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 1887 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 1888 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 1889 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 1890 | } |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1891 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1892 | if (ClassDeclared != IFTy->getDecl() || |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1893 | ClassOfMethodDecl != ClassDeclared) |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1894 | Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 1895 | } |
| 1896 | // @protected |
| 1897 | else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl)) |
| 1898 | Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName(); |
| 1899 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1900 | |
| 1901 | ObjCIvarRefExpr *MRef= new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1902 | MemberLoc, BaseExpr, |
Fariborz Jahanian | efc4c4b | 2008-12-18 17:29:46 +0000 | [diff] [blame] | 1903 | OpKind == tok::arrow); |
| 1904 | Context.setFieldDecl(IFTy->getDecl(), IV, MRef); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1905 | return Owned(MRef); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 1906 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1907 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 1908 | << IFTy->getDecl()->getDeclName() << &Member |
| 1909 | << BaseExpr->getSourceRange()); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 1910 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1911 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 1912 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 1913 | // pointer to a (potentially qualified) interface type. |
| 1914 | const PointerType *PTy; |
| 1915 | const ObjCInterfaceType *IFTy; |
| 1916 | if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) && |
| 1917 | (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) { |
| 1918 | ObjCInterfaceDecl *IFace = IFTy->getDecl(); |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 1919 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1920 | // Search for a declared property first. |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1921 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1922 | // Check whether we can reference this property. |
| 1923 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 1924 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1925 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1926 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1927 | MemberLoc, BaseExpr)); |
| 1928 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1929 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1930 | // Check protocols on qualified interfaces. |
Chris Lattner | 9baefc2 | 2008-07-21 05:20:01 +0000 | [diff] [blame] | 1931 | for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(), |
| 1932 | E = IFTy->qual_end(); I != E; ++I) |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1933 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1934 | // Check whether we can reference this property. |
| 1935 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 1936 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1937 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1938 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1939 | MemberLoc, BaseExpr)); |
| 1940 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1941 | |
| 1942 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 1943 | // selector is implemented. |
| 1944 | |
| 1945 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 1946 | // shared with the code in ActOnInstanceMessage. |
| 1947 | |
| 1948 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 1949 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1950 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1951 | // If this reference is in an @implementation, check for 'private' methods. |
| 1952 | if (!Getter) |
Steve Naroff | f178728 | 2009-03-11 15:15:01 +0000 | [diff] [blame] | 1953 | if (ObjCImplementationDecl *ImpDecl = |
| 1954 | ObjCImplementations[IFace->getIdentifier()]) |
| 1955 | Getter = ImpDecl->getInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1956 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 1957 | // Look through local category implementations associated with the class. |
| 1958 | if (!Getter) { |
| 1959 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) { |
| 1960 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
| 1961 | Getter = ObjCCategoryImpls[i]->getInstanceMethod(Sel); |
| 1962 | } |
| 1963 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1964 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1965 | // Check if we can reference this property. |
| 1966 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 1967 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 1968 | } |
| 1969 | // If we found a getter then this may be a valid dot-reference, we |
| 1970 | // will look for the matching setter, in case it is needed. |
| 1971 | Selector SetterSel = |
| 1972 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 1973 | PP.getSelectorTable(), &Member); |
| 1974 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
| 1975 | if (!Setter) { |
| 1976 | // If this reference is in an @implementation, also check for 'private' |
| 1977 | // methods. |
Steve Naroff | f178728 | 2009-03-11 15:15:01 +0000 | [diff] [blame] | 1978 | if (ObjCImplementationDecl *ImpDecl = |
| 1979 | ObjCImplementations[IFace->getIdentifier()]) |
| 1980 | Setter = ImpDecl->getInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 1981 | } |
| 1982 | // Look through local category implementations associated with the class. |
| 1983 | if (!Setter) { |
| 1984 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 1985 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
| 1986 | Setter = ObjCCategoryImpls[i]->getInstanceMethod(SetterSel); |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 1987 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1988 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1989 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 1990 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 1991 | return ExprError(); |
| 1992 | |
| 1993 | if (Getter || Setter) { |
| 1994 | QualType PType; |
| 1995 | |
| 1996 | if (Getter) |
| 1997 | PType = Getter->getResultType(); |
| 1998 | else { |
| 1999 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2000 | E = Setter->param_end(); PI != E; ++PI) |
| 2001 | PType = (*PI)->getType(); |
| 2002 | } |
| 2003 | // FIXME: we must check that the setter has property type. |
| 2004 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2005 | Setter, MemberLoc, BaseExpr)); |
| 2006 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2007 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2008 | << &Member << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2009 | } |
Steve Naroff | 18bc164 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2010 | // Handle properties on qualified "id" protocols. |
| 2011 | const ObjCQualifiedIdType *QIdTy; |
| 2012 | if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) { |
| 2013 | // Check protocols on qualified interfaces. |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2014 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2015 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel)) { |
| 2016 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2017 | // Check the use of this declaration |
| 2018 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2019 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2020 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2021 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2022 | MemberLoc, BaseExpr)); |
| 2023 | } |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2024 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2025 | // Check the use of this method. |
| 2026 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2027 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2028 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2029 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2030 | OMD->getResultType(), |
| 2031 | OMD, OpLoc, MemberLoc, |
| 2032 | NULL, 0)); |
Fariborz Jahanian | 391d895 | 2008-12-10 00:21:50 +0000 | [diff] [blame] | 2033 | } |
| 2034 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2035 | |
| 2036 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2037 | << &Member << BaseType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2038 | } |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2039 | // Handle properties on ObjC 'Class' types. |
| 2040 | if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) { |
| 2041 | // Also must look for a getter name which uses property syntax. |
| 2042 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2043 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2044 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2045 | ObjCMethodDecl *Getter; |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2046 | // FIXME: need to also look locally in the implementation. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2047 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2048 | // Check the use of this method. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2049 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2050 | return ExprError(); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2051 | } |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2052 | // If we found a getter then this may be a valid dot-reference, we |
| 2053 | // will look for the matching setter, in case it is needed. |
| 2054 | Selector SetterSel = |
| 2055 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2056 | PP.getSelectorTable(), &Member); |
| 2057 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 2058 | if (!Setter) { |
| 2059 | // If this reference is in an @implementation, also check for 'private' |
| 2060 | // methods. |
| 2061 | if (ObjCImplementationDecl *ImpDecl = |
| 2062 | ObjCImplementations[IFace->getIdentifier()]) |
| 2063 | Setter = ImpDecl->getInstanceMethod(SetterSel); |
| 2064 | } |
| 2065 | // Look through local category implementations associated with the class. |
| 2066 | if (!Setter) { |
| 2067 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2068 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
| 2069 | Setter = ObjCCategoryImpls[i]->getClassMethod(SetterSel); |
| 2070 | } |
| 2071 | } |
| 2072 | |
| 2073 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2074 | return ExprError(); |
| 2075 | |
| 2076 | if (Getter || Setter) { |
| 2077 | QualType PType; |
| 2078 | |
| 2079 | if (Getter) |
| 2080 | PType = Getter->getResultType(); |
| 2081 | else { |
| 2082 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2083 | E = Setter->param_end(); PI != E; ++PI) |
| 2084 | PType = (*PI)->getType(); |
| 2085 | } |
| 2086 | // FIXME: we must check that the setter has property type. |
| 2087 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2088 | Setter, MemberLoc, BaseExpr)); |
| 2089 | } |
| 2090 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2091 | << &Member << BaseType); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2092 | } |
| 2093 | } |
| 2094 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2095 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2096 | if (BaseType->isExtVectorType()) { |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2097 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2098 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2099 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2100 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2101 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2102 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2103 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame^] | 2104 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2105 | << BaseType << BaseExpr->getSourceRange(); |
| 2106 | |
| 2107 | // If the user is trying to apply -> or . to a function or function |
| 2108 | // pointer, it's probably because they forgot parentheses to call |
| 2109 | // the function. Suggest the addition of those parentheses. |
| 2110 | if (BaseType == Context.OverloadTy || |
| 2111 | BaseType->isFunctionType() || |
| 2112 | (BaseType->isPointerType() && |
| 2113 | BaseType->getAsPointerType()->isFunctionType())) { |
| 2114 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2115 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2116 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2117 | } |
| 2118 | |
| 2119 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2120 | } |
| 2121 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2122 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2123 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2124 | /// function prototype Proto. Call is the call expression itself, and |
| 2125 | /// Fn is the function expression. For a C++ member function, this |
| 2126 | /// routine does not attempt to convert the object argument. Returns |
| 2127 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2128 | bool |
| 2129 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2130 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2131 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2132 | Expr **Args, unsigned NumArgs, |
| 2133 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2134 | // 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] | 2135 | // assignment, to the types of the corresponding parameter, ... |
| 2136 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2137 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2138 | bool Invalid = false; |
| 2139 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2140 | // If too few arguments are available (and we don't have default |
| 2141 | // arguments for the remaining parameters), don't make the call. |
| 2142 | if (NumArgs < NumArgsInProto) { |
| 2143 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2144 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2145 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2146 | // Use default arguments for missing arguments |
| 2147 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2148 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2149 | } |
| 2150 | |
| 2151 | // If too many are passed and not variadic, error on the extras and drop |
| 2152 | // them. |
| 2153 | if (NumArgs > NumArgsInProto) { |
| 2154 | if (!Proto->isVariadic()) { |
| 2155 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2156 | diag::err_typecheck_call_too_many_args) |
| 2157 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2158 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2159 | Args[NumArgs-1]->getLocEnd()); |
| 2160 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2161 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2162 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2163 | } |
| 2164 | NumArgsToCheck = NumArgsInProto; |
| 2165 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2166 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2167 | // Continue to check argument types (even if we have too few/many args). |
| 2168 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2169 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2170 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2171 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2172 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2173 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2174 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2175 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2176 | ProtoArgType, |
| 2177 | diag::err_call_incomplete_argument, |
| 2178 | Arg->getSourceRange())) |
| 2179 | return true; |
| 2180 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2181 | // Pass the argument. |
| 2182 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2183 | return true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2184 | } else |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2185 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2186 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2187 | QualType ArgType = Arg->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2188 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2189 | Call->setArg(i, Arg); |
| 2190 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2191 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2192 | // If this is a variadic call, handle args passed through "...". |
| 2193 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2194 | VariadicCallType CallType = VariadicFunction; |
| 2195 | if (Fn->getType()->isBlockPointerType()) |
| 2196 | CallType = VariadicBlock; // Block |
| 2197 | else if (isa<MemberExpr>(Fn)) |
| 2198 | CallType = VariadicMethod; |
| 2199 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2200 | // Promote the arguments (C99 6.5.2.2p7). |
| 2201 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2202 | Expr *Arg = Args[i]; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2203 | DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2204 | Call->setArg(i, Arg); |
| 2205 | } |
| 2206 | } |
| 2207 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2208 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2209 | } |
| 2210 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2211 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2212 | /// This provides the location of the left/right parens and a list of comma |
| 2213 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2214 | Action::OwningExprResult |
| 2215 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2216 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2217 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2218 | unsigned NumArgs = args.size(); |
| 2219 | Expr *Fn = static_cast<Expr *>(fn.release()); |
| 2220 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2221 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2222 | FunctionDecl *FDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2223 | DeclarationName UnqualifiedName; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2224 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2225 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2226 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2227 | // in which case we won't do any semantic analysis now. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2228 | // FIXME: Will need to cache the results of name lookup (including ADL) in Fn. |
| 2229 | bool Dependent = false; |
| 2230 | if (Fn->isTypeDependent()) |
| 2231 | Dependent = true; |
| 2232 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2233 | Dependent = true; |
| 2234 | |
| 2235 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2236 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2237 | Context.DependentTy, RParenLoc)); |
| 2238 | |
| 2239 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2240 | if (Fn->getType()->isRecordType()) |
| 2241 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2242 | CommaLocs, RParenLoc)); |
| 2243 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2244 | // Determine whether this is a call to a member function. |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2245 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) |
| 2246 | if (isa<OverloadedFunctionDecl>(MemExpr->getMemberDecl()) || |
| 2247 | isa<CXXMethodDecl>(MemExpr->getMemberDecl())) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2248 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2249 | CommaLocs, RParenLoc)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2250 | } |
| 2251 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2252 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2253 | DeclRefExpr *DRExpr = NULL; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2254 | Expr *FnExpr = Fn; |
| 2255 | bool ADL = true; |
| 2256 | while (true) { |
| 2257 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2258 | FnExpr = IcExpr->getSubExpr(); |
| 2259 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2260 | // Parentheses around a function disable ADL |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2261 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2262 | ADL = false; |
| 2263 | FnExpr = PExpr->getSubExpr(); |
| 2264 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2265 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2266 | == UnaryOperator::AddrOf) { |
| 2267 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2268 | } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) { |
| 2269 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2270 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
| 2271 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2272 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2273 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2274 | UnqualifiedName = DepName->getName(); |
| 2275 | break; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2276 | } else { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2277 | // Any kind of name that does not refer to a declaration (or |
| 2278 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2279 | ADL = false; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2280 | break; |
| 2281 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2282 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2283 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2284 | OverloadedFunctionDecl *Ovl = 0; |
| 2285 | if (DRExpr) { |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2286 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2287 | Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl()); |
| 2288 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2289 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2290 | if (Ovl || (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2291 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2292 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2293 | ADL = false; |
| 2294 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2295 | // We don't perform ADL in C. |
| 2296 | if (!getLangOptions().CPlusPlus) |
| 2297 | ADL = false; |
| 2298 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2299 | if (Ovl || ADL) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2300 | FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0, |
| 2301 | UnqualifiedName, LParenLoc, Args, |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2302 | NumArgs, CommaLocs, RParenLoc, ADL); |
| 2303 | if (!FDecl) |
| 2304 | return ExprError(); |
| 2305 | |
| 2306 | // Update Fn to refer to the actual function selected. |
| 2307 | Expr *NewFn = 0; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2308 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2309 | = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr)) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2310 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2311 | QDRExpr->getLocation(), |
| 2312 | false, false, |
| 2313 | QDRExpr->getQualifierRange(), |
| 2314 | QDRExpr->getQualifier()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2315 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2316 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2317 | Fn->getSourceRange().getBegin()); |
| 2318 | Fn->Destroy(Context); |
| 2319 | Fn = NewFn; |
| 2320 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2321 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2322 | |
| 2323 | // Promote the function operand. |
| 2324 | UsualUnaryConversions(Fn); |
| 2325 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2326 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2327 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2328 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2329 | Args, NumArgs, |
| 2330 | Context.BoolTy, |
| 2331 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2332 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2333 | const FunctionType *FuncT; |
| 2334 | if (!Fn->getType()->isBlockPointerType()) { |
| 2335 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2336 | // have type pointer to function". |
| 2337 | const PointerType *PT = Fn->getType()->getAsPointerType(); |
| 2338 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2339 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2340 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2341 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2342 | } else { // This is a block call. |
| 2343 | FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()-> |
| 2344 | getAsFunctionType(); |
| 2345 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2346 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2347 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2348 | << Fn->getType() << Fn->getSourceRange()); |
| 2349 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2350 | // Check for a valid return type |
| 2351 | if (!FuncT->getResultType()->isVoidType() && |
| 2352 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2353 | FuncT->getResultType(), |
| 2354 | diag::err_call_incomplete_return, |
| 2355 | TheCall->getSourceRange())) |
| 2356 | return ExprError(); |
| 2357 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2358 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2359 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2360 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2361 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2362 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2363 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2364 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2365 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2366 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2367 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2368 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2369 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2370 | Expr *Arg = Args[i]; |
| 2371 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2372 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2373 | Arg->getType(), |
| 2374 | diag::err_call_incomplete_argument, |
| 2375 | Arg->getSourceRange())) |
| 2376 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2377 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2378 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2379 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2380 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2381 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2382 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2383 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2384 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2385 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2386 | // Do special checking on direct calls to functions. |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2387 | if (FDecl) |
| 2388 | return CheckFunctionCall(FDecl, TheCall.take()); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2389 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2390 | return Owned(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2391 | } |
| 2392 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2393 | Action::OwningExprResult |
| 2394 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2395 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2396 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2397 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2398 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2399 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2400 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2401 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2402 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2403 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2404 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2405 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2406 | } else if (RequireCompleteType(LParenLoc, literalType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2407 | diag::err_typecheck_decl_incomplete_type, |
| 2408 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2409 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2410 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2411 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2412 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2413 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2414 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2415 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2416 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2417 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2418 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2419 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2420 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2421 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2422 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2423 | } |
| 2424 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2425 | Action::OwningExprResult |
| 2426 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2427 | SourceLocation RBraceLoc) { |
| 2428 | unsigned NumInit = initlist.size(); |
| 2429 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2430 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2431 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2432 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2433 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2434 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2435 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2436 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2437 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2438 | } |
| 2439 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2440 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 58d5ebb | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 2441 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2442 | UsualUnaryConversions(castExpr); |
| 2443 | |
| 2444 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2445 | // type needs to be scalar. |
| 2446 | if (castType->isVoidType()) { |
| 2447 | // Cast to void allows any expr type. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2448 | } else if (castType->isDependentType() || castExpr->isTypeDependent()) { |
| 2449 | // We can't check any more until template instantiation time. |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2450 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2451 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2452 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2453 | (castType->isStructureType() || castType->isUnionType())) { |
| 2454 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2455 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2456 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2457 | << castType << castExpr->getSourceRange(); |
| 2458 | } else if (castType->isUnionType()) { |
| 2459 | // GCC cast to union extension |
| 2460 | RecordDecl *RD = castType->getAsRecordType()->getDecl(); |
| 2461 | RecordDecl::field_iterator Field, FieldEnd; |
| 2462 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
| 2463 | Field != FieldEnd; ++Field) { |
| 2464 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2465 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2466 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2467 | << castExpr->getSourceRange(); |
| 2468 | break; |
| 2469 | } |
| 2470 | } |
| 2471 | if (Field == FieldEnd) |
| 2472 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2473 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2474 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2475 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2476 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2477 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2478 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2479 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2480 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2481 | return Diag(castExpr->getLocStart(), |
| 2482 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2483 | << castExpr->getType() << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2484 | } else if (castExpr->getType()->isVectorType()) { |
| 2485 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 2486 | return true; |
| 2487 | } else if (castType->isVectorType()) { |
| 2488 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 2489 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2490 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Chris Lattner | e6ee6ba | 2009-03-05 23:09:00 +0000 | [diff] [blame] | 2491 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2492 | } |
| 2493 | return false; |
| 2494 | } |
| 2495 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 2496 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2497 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2498 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2499 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2500 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2501 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2502 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2503 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2504 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2505 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2506 | } else |
| 2507 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2508 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2509 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2510 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2511 | return false; |
| 2512 | } |
| 2513 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2514 | Action::OwningExprResult |
| 2515 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 2516 | SourceLocation RParenLoc, ExprArg Op) { |
| 2517 | assert((Ty != 0) && (Op.get() != 0) && |
| 2518 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2519 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2520 | Expr *castExpr = static_cast<Expr*>(Op.release()); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2521 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 2522 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2523 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2524 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2525 | return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2526 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2527 | } |
| 2528 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2529 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 2530 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2531 | /// C99 6.5.15 |
| 2532 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 2533 | SourceLocation QuestionLoc) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2534 | UsualUnaryConversions(Cond); |
| 2535 | UsualUnaryConversions(LHS); |
| 2536 | UsualUnaryConversions(RHS); |
| 2537 | QualType CondTy = Cond->getType(); |
| 2538 | QualType LHSTy = LHS->getType(); |
| 2539 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 2540 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2541 | // first, check the condition. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2542 | if (!Cond->isTypeDependent()) { |
| 2543 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 2544 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 2545 | << CondTy; |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2546 | return QualType(); |
| 2547 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2548 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2549 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2550 | // Now check the two expressions. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2551 | if ((LHS && LHS->isTypeDependent()) || (RHS && RHS->isTypeDependent())) |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2552 | return Context.DependentTy; |
| 2553 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2554 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 2555 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2556 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 2557 | UsualArithmeticConversions(LHS, RHS); |
| 2558 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 2559 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2560 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2561 | // If both operands are the same structure or union type, the result is that |
| 2562 | // type. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2563 | if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3 |
| 2564 | if (const RecordType *RHSRT = RHSTy->getAsRecordType()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2565 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2566 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2567 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2568 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2569 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2570 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2571 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2572 | // 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] | 2573 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2574 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 2575 | if (!LHSTy->isVoidType()) |
| 2576 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2577 | << RHS->getSourceRange(); |
| 2578 | if (!RHSTy->isVoidType()) |
| 2579 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2580 | << LHS->getSourceRange(); |
| 2581 | ImpCastExprToType(LHS, Context.VoidTy); |
| 2582 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 2583 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 2584 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2585 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 2586 | // the type of the other operand." |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2587 | if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() || |
| 2588 | Context.isObjCObjectPointerType(LHSTy)) && |
| 2589 | RHS->isNullPointerConstant(Context)) { |
| 2590 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 2591 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2592 | } |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2593 | if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() || |
| 2594 | Context.isObjCObjectPointerType(RHSTy)) && |
| 2595 | LHS->isNullPointerConstant(Context)) { |
| 2596 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 2597 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2598 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2599 | |
Chris Lattner | bd57d36 | 2008-01-06 22:50:31 +0000 | [diff] [blame] | 2600 | // Handle the case where both operands are pointers before we handle null |
| 2601 | // pointer constants in case both operands are null pointer constants. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2602 | if (const PointerType *LHSPT = LHSTy->getAsPointerType()) { // C99 6.5.15p3,6 |
| 2603 | if (const PointerType *RHSPT = RHSTy->getAsPointerType()) { |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2604 | // get the "pointed to" types |
| 2605 | QualType lhptee = LHSPT->getPointeeType(); |
| 2606 | QualType rhptee = RHSPT->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2607 | |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2608 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 2609 | if (lhptee->isVoidType() && |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2610 | rhptee->isIncompleteOrObjectType()) { |
Chris Lattner | f46699c | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 2611 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 2612 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2613 | QualType destType = Context.getPointerType(destPointee); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2614 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2615 | ImpCastExprToType(RHS, destType); // promote to void* |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2616 | return destType; |
| 2617 | } |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2618 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
Chris Lattner | f46699c | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 2619 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2620 | QualType destType = Context.getPointerType(destPointee); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2621 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2622 | ImpCastExprToType(RHS, destType); // promote to void* |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2623 | return destType; |
| 2624 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2625 | |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2626 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
Chris Lattner | b4650c1 | 2009-02-19 04:44:58 +0000 | [diff] [blame] | 2627 | // Two identical pointer types are always compatible. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2628 | return LHSTy; |
| 2629 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2630 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2631 | QualType compositeType = LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2632 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2633 | // If either type is an Objective-C object type then check |
| 2634 | // compatibility according to Objective-C. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2635 | if (Context.isObjCObjectPointerType(LHSTy) || |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2636 | Context.isObjCObjectPointerType(RHSTy)) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2637 | // If both operands are interfaces and either operand can be |
| 2638 | // assigned to the other, use that type as the composite |
| 2639 | // type. This allows |
| 2640 | // xxx ? (A*) a : (B*) b |
| 2641 | // where B is a subclass of A. |
| 2642 | // |
| 2643 | // Additionally, as for assignment, if either type is 'id' |
| 2644 | // allow silent coercion. Finally, if the types are |
| 2645 | // incompatible then make sure to use 'id' as the composite |
| 2646 | // type so the result is acceptable for sending messages to. |
| 2647 | |
Steve Naroff | 1fd0361 | 2009-02-12 19:05:07 +0000 | [diff] [blame] | 2648 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2649 | // It could return the composite type. |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2650 | const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType(); |
| 2651 | const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType(); |
| 2652 | if (LHSIface && RHSIface && |
| 2653 | Context.canAssignObjCInterfaces(LHSIface, RHSIface)) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2654 | compositeType = LHSTy; |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2655 | } else if (LHSIface && RHSIface && |
Douglas Gregor | 7ffd0de | 2008-11-26 06:43:45 +0000 | [diff] [blame] | 2656 | Context.canAssignObjCInterfaces(RHSIface, LHSIface)) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2657 | compositeType = RHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2658 | } else if (Context.isObjCIdStructType(lhptee) || |
| 2659 | Context.isObjCIdStructType(rhptee)) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2660 | compositeType = Context.getObjCIdType(); |
| 2661 | } else { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2662 | Diag(QuestionLoc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2663 | << LHSTy << RHSTy |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2664 | << LHS->getSourceRange() << RHS->getSourceRange(); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2665 | QualType incompatTy = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2666 | ImpCastExprToType(LHS, incompatTy); |
| 2667 | ImpCastExprToType(RHS, incompatTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2668 | return incompatTy; |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2669 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2670 | } else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2671 | rhptee.getUnqualifiedType())) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2672 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 2673 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2674 | // In this situation, we assume void* type. No especially good |
| 2675 | // reason, but this is what gcc does, and we do have to pick |
| 2676 | // to get a consistent AST. |
| 2677 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2678 | ImpCastExprToType(LHS, incompatTy); |
| 2679 | ImpCastExprToType(RHS, incompatTy); |
Daniel Dunbar | a56f746 | 2008-08-26 00:41:39 +0000 | [diff] [blame] | 2680 | return incompatTy; |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2681 | } |
| 2682 | // The pointer types are compatible. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 2683 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 2684 | // differently qualified versions of compatible types, the result type is |
| 2685 | // a pointer to an appropriately qualified version of the *composite* |
| 2686 | // type. |
Eli Friedman | 5835ea2 | 2008-05-16 20:37:07 +0000 | [diff] [blame] | 2687 | // FIXME: Need to calculate the composite type. |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2688 | // FIXME: Need to add qualifiers |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2689 | ImpCastExprToType(LHS, compositeType); |
| 2690 | ImpCastExprToType(RHS, compositeType); |
Eli Friedman | 5835ea2 | 2008-05-16 20:37:07 +0000 | [diff] [blame] | 2691 | return compositeType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2692 | } |
| 2693 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2694 | |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2695 | // Selection between block pointer types is ok as long as they are the same. |
| 2696 | if (LHSTy->isBlockPointerType() && RHSTy->isBlockPointerType() && |
| 2697 | Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) |
| 2698 | return LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2699 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2700 | // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type |
| 2701 | // evaluates to "struct objc_object *" (and is handled above when comparing |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2702 | // id with statically typed objects). |
| 2703 | if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2704 | // GCC allows qualified id and any Objective-C type to devolve to |
| 2705 | // id. Currently localizing to here until clear this should be |
| 2706 | // part of ObjCQualifiedIdTypesAreCompatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2707 | if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2708 | (LHSTy->isObjCQualifiedIdType() && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2709 | Context.isObjCObjectPointerType(RHSTy)) || |
| 2710 | (RHSTy->isObjCQualifiedIdType() && |
| 2711 | Context.isObjCObjectPointerType(LHSTy))) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2712 | // FIXME: This is not the correct composite type. This only |
| 2713 | // happens to work because id can more or less be used anywhere, |
| 2714 | // however this may change the type of method sends. |
| 2715 | // FIXME: gcc adds some type-checking of the arguments and emits |
| 2716 | // (confusing) incompatible comparison warnings in some |
| 2717 | // cases. Investigate. |
| 2718 | QualType compositeType = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2719 | ImpCastExprToType(LHS, compositeType); |
| 2720 | ImpCastExprToType(RHS, compositeType); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2721 | return compositeType; |
| 2722 | } |
| 2723 | } |
| 2724 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2725 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2726 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 2727 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2728 | return QualType(); |
| 2729 | } |
| 2730 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2731 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2732 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2733 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 2734 | SourceLocation ColonLoc, |
| 2735 | ExprArg Cond, ExprArg LHS, |
| 2736 | ExprArg RHS) { |
| 2737 | Expr *CondExpr = (Expr *) Cond.get(); |
| 2738 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2739 | |
| 2740 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 2741 | // was the condition. |
| 2742 | bool isLHSNull = LHSExpr == 0; |
| 2743 | if (isLHSNull) |
| 2744 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2745 | |
| 2746 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 2747 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2748 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2749 | return ExprError(); |
| 2750 | |
| 2751 | Cond.release(); |
| 2752 | LHS.release(); |
| 2753 | RHS.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2754 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2755 | isLHSNull ? 0 : LHSExpr, |
| 2756 | RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2757 | } |
| 2758 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2759 | |
| 2760 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2761 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2762 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 2763 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 2764 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2765 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2766 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 2767 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2768 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2769 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2770 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 2771 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2772 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2773 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 2774 | lhptee = Context.getCanonicalType(lhptee); |
| 2775 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2776 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2777 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2778 | |
| 2779 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 2780 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 2781 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 2782 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 2783 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2784 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2785 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2786 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 2787 | // 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] | 2788 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2789 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2790 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2791 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2792 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2793 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2794 | assert(rhptee->isFunctionType()); |
| 2795 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2796 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2797 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2798 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2799 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2800 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2801 | |
| 2802 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2803 | assert(lhptee->isFunctionType()); |
| 2804 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2805 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2806 | // 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] | 2807 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 2808 | lhptee = lhptee.getUnqualifiedType(); |
| 2809 | rhptee = rhptee.getUnqualifiedType(); |
| 2810 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 2811 | // Check if the pointee types are compatible ignoring the sign. |
| 2812 | // We explicitly check for char so that we catch "char" vs |
| 2813 | // "unsigned char" on systems where "char" is unsigned. |
| 2814 | if (lhptee->isCharType()) { |
| 2815 | lhptee = Context.UnsignedCharTy; |
| 2816 | } else if (lhptee->isSignedIntegerType()) { |
| 2817 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 2818 | } |
| 2819 | if (rhptee->isCharType()) { |
| 2820 | rhptee = Context.UnsignedCharTy; |
| 2821 | } else if (rhptee->isSignedIntegerType()) { |
| 2822 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 2823 | } |
| 2824 | if (lhptee == rhptee) { |
| 2825 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 2826 | // takes priority over sign incompatibility because the sign |
| 2827 | // warning can be disabled. |
| 2828 | if (ConvTy != Compatible) |
| 2829 | return ConvTy; |
| 2830 | return IncompatiblePointerSign; |
| 2831 | } |
| 2832 | // General pointer incompatibility takes priority over qualifiers. |
| 2833 | return IncompatiblePointer; |
| 2834 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2835 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2836 | } |
| 2837 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2838 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 2839 | /// block pointer types are compatible or whether a block and normal pointer |
| 2840 | /// are compatible. It is more restrict than comparing two function pointer |
| 2841 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2842 | Sema::AssignConvertType |
| 2843 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2844 | QualType rhsType) { |
| 2845 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2846 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2847 | // get the "pointed to" type (ignoring qualifiers at the top level) |
| 2848 | lhptee = lhsType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2849 | rhptee = rhsType->getAsBlockPointerType()->getPointeeType(); |
| 2850 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2851 | // make sure we operate on the canonical type |
| 2852 | lhptee = Context.getCanonicalType(lhptee); |
| 2853 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2854 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2855 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2856 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2857 | // For blocks we enforce that qualifiers are identical. |
| 2858 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 2859 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2860 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2861 | if (!Context.typesAreBlockCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2862 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2863 | return ConvTy; |
| 2864 | } |
| 2865 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2866 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 2867 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2868 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 2869 | /// |
| 2870 | /// int a, *pint; |
| 2871 | /// short *pshort; |
| 2872 | /// struct foo *pfoo; |
| 2873 | /// |
| 2874 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 2875 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 2876 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 2877 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 2878 | /// |
| 2879 | /// 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] | 2880 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2881 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2882 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2883 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2884 | // Get canonical types. We're not formatting these types, just comparing |
| 2885 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 2886 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 2887 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2888 | |
| 2889 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 2890 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 2891 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 2892 | // If the left-hand side is a reference type, then we are in a |
| 2893 | // (rare!) case where we've allowed the use of references in C, |
| 2894 | // e.g., as a parameter type in a built-in function. In this case, |
| 2895 | // just make sure that the type referenced is compatible with the |
| 2896 | // right-hand side type. The caller is responsible for adjusting |
| 2897 | // lhsType so that the resulting expression does not have reference |
| 2898 | // type. |
| 2899 | if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) { |
| 2900 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 2901 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2902 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 2903 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2904 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 2905 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) { |
| 2906 | if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false)) |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 2907 | return Compatible; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 2908 | // Relax integer conversions like we do for pointers below. |
| 2909 | if (rhsType->isIntegerType()) |
| 2910 | return IntToPointer; |
| 2911 | if (lhsType->isIntegerType()) |
| 2912 | return PointerToInt; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 2913 | return IncompatibleObjCQualifiedId; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 2914 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2915 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2916 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2917 | // For ExtVector, allow vector splats; float -> <n x float> |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2918 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) |
| 2919 | if (LV->getElementType() == rhsType) |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2920 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2921 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2922 | // 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] | 2923 | // 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] | 2924 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2925 | if (getLangOptions().LaxVectorConversions && |
| 2926 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2927 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 2928 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2929 | } |
| 2930 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2931 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2932 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2933 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2934 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2935 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2936 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2937 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 2938 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2939 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2940 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2941 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2942 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 2943 | if (rhsType->getAsBlockPointerType()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2944 | if (lhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 2945 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 2946 | |
| 2947 | // Treat block pointers as objects. |
| 2948 | if (getLangOptions().ObjC1 && |
| 2949 | lhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 2950 | return Compatible; |
| 2951 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2952 | return Incompatible; |
| 2953 | } |
| 2954 | |
| 2955 | if (isa<BlockPointerType>(lhsType)) { |
| 2956 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 2957 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2958 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 2959 | // Treat block pointers as objects. |
| 2960 | if (getLangOptions().ObjC1 && |
| 2961 | rhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 2962 | return Compatible; |
| 2963 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2964 | if (rhsType->isBlockPointerType()) |
| 2965 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2966 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2967 | if (const PointerType *RHSPT = rhsType->getAsPointerType()) { |
| 2968 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 2969 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2970 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2971 | return Incompatible; |
| 2972 | } |
| 2973 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2974 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2975 | // 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] | 2976 | if (lhsType == Context.BoolTy) |
| 2977 | return Compatible; |
| 2978 | |
| 2979 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 2980 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2981 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2982 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2983 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2984 | |
| 2985 | if (isa<BlockPointerType>(lhsType) && |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2986 | rhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 2987 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2988 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2989 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2990 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2991 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2992 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2993 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2994 | } |
| 2995 | return Incompatible; |
| 2996 | } |
| 2997 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2998 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 2999 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3000 | if (getLangOptions().CPlusPlus) { |
| 3001 | if (!lhsType->isRecordType()) { |
| 3002 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3003 | // expression is implicitly converted (C++ 4) to the |
| 3004 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3005 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3006 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3007 | return Incompatible; |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 3008 | else |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3009 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3010 | } |
| 3011 | |
| 3012 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3013 | // structures. |
| 3014 | } |
| 3015 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3016 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3017 | // a null pointer constant. |
Steve Naroff | f7f52e7 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3018 | if ((lhsType->isPointerType() || |
| 3019 | lhsType->isObjCQualifiedIdType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3020 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | 9d3185e | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3021 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3022 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3023 | return Compatible; |
| 3024 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3025 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3026 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3027 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3028 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3029 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3030 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3031 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3032 | if (!lhsType->isReferenceType()) |
| 3033 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3034 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3035 | Sema::AssignConvertType result = |
| 3036 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3037 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3038 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3039 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3040 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3041 | // so that we can use references in built-in functions even in C. |
| 3042 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3043 | // does not have reference type. |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3044 | if (rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3045 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3046 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3047 | } |
| 3048 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3049 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3050 | Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) { |
| 3051 | return CheckAssignmentConstraints(lhsType, rhsType); |
| 3052 | } |
| 3053 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3054 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3055 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3056 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3057 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3058 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3059 | } |
| 3060 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3061 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3062 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3063 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3064 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3065 | QualType lhsType = |
| 3066 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3067 | QualType rhsType = |
| 3068 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3069 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3070 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3071 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3072 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3073 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3074 | // Handle the case of a vector & extvector type of the same size and element |
| 3075 | // 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] | 3076 | if (getLangOptions().LaxVectorConversions) { |
| 3077 | // FIXME: Should we warn here? |
| 3078 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3079 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3080 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3081 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3082 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3083 | } |
| 3084 | } |
| 3085 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3086 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3087 | // If the lhs is an extended vector and the rhs is a scalar of the same type |
| 3088 | // or a literal, promote the rhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3089 | if (const ExtVectorType *V = lhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3090 | QualType eltType = V->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3091 | |
| 3092 | if ((eltType->getAsBuiltinType() == rhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3093 | (eltType->isIntegerType() && isa<IntegerLiteral>(rex)) || |
| 3094 | (eltType->isFloatingType() && isa<FloatingLiteral>(rex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3095 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3096 | return lhsType; |
| 3097 | } |
| 3098 | } |
| 3099 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3100 | // 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] | 3101 | // promote the lhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3102 | if (const ExtVectorType *V = rhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3103 | QualType eltType = V->getElementType(); |
| 3104 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3105 | if ((eltType->getAsBuiltinType() == lhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3106 | (eltType->isIntegerType() && isa<IntegerLiteral>(lex)) || |
| 3107 | (eltType->isFloatingType() && isa<FloatingLiteral>(lex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3108 | ImpCastExprToType(lex, rhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3109 | return rhsType; |
| 3110 | } |
| 3111 | } |
| 3112 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3113 | // You cannot convert between vector values of different size. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3114 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3115 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3116 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3117 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3118 | } |
| 3119 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3120 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3121 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3122 | { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3123 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3124 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3125 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3126 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3127 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3128 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3129 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3130 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3131 | } |
| 3132 | |
| 3133 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3134 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3135 | { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3136 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3137 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3138 | return CheckVectorOperands(Loc, lex, rex); |
| 3139 | return InvalidOperands(Loc, lex, rex); |
| 3140 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3141 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3142 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3143 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3144 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3145 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3146 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3147 | } |
| 3148 | |
| 3149 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3150 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3151 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 3152 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3153 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3154 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3155 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3156 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3157 | // handle the common case first (both operands are arithmetic). |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3158 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3159 | return compType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3160 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3161 | // Put any potential pointer into PExp |
| 3162 | Expr* PExp = lex, *IExp = rex; |
| 3163 | if (IExp->getType()->isPointerType()) |
| 3164 | std::swap(PExp, IExp); |
| 3165 | |
| 3166 | if (const PointerType* PTy = PExp->getType()->getAsPointerType()) { |
| 3167 | if (IExp->getType()->isIntegerType()) { |
| 3168 | // Check for arithmetic on pointers to incomplete types |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3169 | if (PTy->getPointeeType()->isVoidType()) { |
| 3170 | if (getLangOptions().CPlusPlus) { |
| 3171 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3172 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3173 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3174 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3175 | |
| 3176 | // GNU extension: arithmetic on pointer to void |
| 3177 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3178 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3179 | } else if (PTy->getPointeeType()->isFunctionType()) { |
| 3180 | if (getLangOptions().CPlusPlus) { |
| 3181 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3182 | << lex->getType() << lex->getSourceRange(); |
| 3183 | return QualType(); |
| 3184 | } |
| 3185 | |
| 3186 | // GNU extension: arithmetic on pointer to function |
| 3187 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3188 | << lex->getType() << lex->getSourceRange(); |
| 3189 | } else if (!PTy->isDependentType() && |
| 3190 | RequireCompleteType(Loc, PTy->getPointeeType(), |
| 3191 | diag::err_typecheck_arithmetic_incomplete_type, |
| 3192 | lex->getSourceRange(), SourceRange(), |
| 3193 | lex->getType())) |
| 3194 | return QualType(); |
| 3195 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3196 | return PExp->getType(); |
| 3197 | } |
| 3198 | } |
| 3199 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3200 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3201 | } |
| 3202 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3203 | // C99 6.5.6 |
| 3204 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3205 | SourceLocation Loc, bool isCompAssign) { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 3206 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3207 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3208 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3209 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3210 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3211 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3212 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3213 | // Handle the common case first (both operands are arithmetic). |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3214 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3215 | return compType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3216 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3217 | // Either ptr - int or ptr - ptr. |
| 3218 | if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) { |
Steve Naroff | 2565eef | 2008-01-29 18:58:14 +0000 | [diff] [blame] | 3219 | QualType lpointee = LHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3220 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3221 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3222 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3223 | bool ComplainAboutVoid = false; |
| 3224 | Expr *ComplainAboutFunc = 0; |
| 3225 | if (lpointee->isVoidType()) { |
| 3226 | if (getLangOptions().CPlusPlus) { |
| 3227 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3228 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3229 | return QualType(); |
| 3230 | } |
| 3231 | |
| 3232 | // GNU C extension: arithmetic on pointer to void |
| 3233 | ComplainAboutVoid = true; |
| 3234 | } else if (lpointee->isFunctionType()) { |
| 3235 | if (getLangOptions().CPlusPlus) { |
| 3236 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3237 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3238 | return QualType(); |
| 3239 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3240 | |
| 3241 | // GNU C extension: arithmetic on pointer to function |
| 3242 | ComplainAboutFunc = lex; |
| 3243 | } else if (!lpointee->isDependentType() && |
| 3244 | RequireCompleteType(Loc, lpointee, |
| 3245 | diag::err_typecheck_sub_ptr_object, |
| 3246 | lex->getSourceRange(), |
| 3247 | SourceRange(), |
| 3248 | lex->getType())) |
| 3249 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3250 | |
| 3251 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3252 | if (rex->getType()->isIntegerType()) { |
| 3253 | if (ComplainAboutVoid) |
| 3254 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3255 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3256 | if (ComplainAboutFunc) |
| 3257 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3258 | << ComplainAboutFunc->getType() |
| 3259 | << ComplainAboutFunc->getSourceRange(); |
| 3260 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3261 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3262 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3263 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3264 | // Handle pointer-pointer subtractions. |
| 3265 | if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 3266 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3267 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3268 | // RHS must be a completely-type object type. |
| 3269 | // Handle the GNU void* extension. |
| 3270 | if (rpointee->isVoidType()) { |
| 3271 | if (getLangOptions().CPlusPlus) { |
| 3272 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3273 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3274 | return QualType(); |
| 3275 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3276 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3277 | ComplainAboutVoid = true; |
| 3278 | } else if (rpointee->isFunctionType()) { |
| 3279 | if (getLangOptions().CPlusPlus) { |
| 3280 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3281 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3282 | return QualType(); |
| 3283 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3284 | |
| 3285 | // GNU extension: arithmetic on pointer to function |
| 3286 | if (!ComplainAboutFunc) |
| 3287 | ComplainAboutFunc = rex; |
| 3288 | } else if (!rpointee->isDependentType() && |
| 3289 | RequireCompleteType(Loc, rpointee, |
| 3290 | diag::err_typecheck_sub_ptr_object, |
| 3291 | rex->getSourceRange(), |
| 3292 | SourceRange(), |
| 3293 | rex->getType())) |
| 3294 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3295 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3296 | // Pointee types must be compatible. |
Eli Friedman | f1c7b48 | 2008-09-02 05:09:35 +0000 | [diff] [blame] | 3297 | if (!Context.typesAreCompatible( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3298 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
Eli Friedman | f1c7b48 | 2008-09-02 05:09:35 +0000 | [diff] [blame] | 3299 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3300 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3301 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3302 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3303 | return QualType(); |
| 3304 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3305 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3306 | if (ComplainAboutVoid) |
| 3307 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3308 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3309 | if (ComplainAboutFunc) |
| 3310 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3311 | << ComplainAboutFunc->getType() |
| 3312 | << ComplainAboutFunc->getSourceRange(); |
| 3313 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3314 | return Context.getPointerDiffType(); |
| 3315 | } |
| 3316 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3317 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3318 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3319 | } |
| 3320 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3321 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3322 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3323 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3324 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 3325 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3326 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3327 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3328 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 3329 | // promotions on each operand. C99 6.5.7p3 |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 3330 | if (!isCompAssign) |
| 3331 | UsualUnaryConversions(lex); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3332 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3333 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3334 | // "The type of the result is that of the promoted left operand." |
| 3335 | return lex->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3336 | } |
| 3337 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3338 | // C99 6.5.8 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3339 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3340 | bool isRelational) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3341 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3342 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3343 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3344 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 3345 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 3346 | UsualArithmeticConversions(lex, rex); |
| 3347 | else { |
| 3348 | UsualUnaryConversions(lex); |
| 3349 | UsualUnaryConversions(rex); |
| 3350 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3351 | QualType lType = lex->getType(); |
| 3352 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3353 | |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 3354 | if (!lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3355 | // For non-floating point types, check for self-comparisons of the form |
| 3356 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3357 | // often indicate logic errors in the program. |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 3358 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 3359 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3360 | Expr *LHSStripped = lex->IgnoreParens(); |
| 3361 | Expr *RHSStripped = rex->IgnoreParens(); |
| 3362 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 3363 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 3364 | if (DRL->getDecl() == DRR->getDecl() && |
| 3365 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3366 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3367 | |
| 3368 | if (isa<CastExpr>(LHSStripped)) |
| 3369 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 3370 | if (isa<CastExpr>(RHSStripped)) |
| 3371 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 3372 | |
| 3373 | // Warn about comparisons against a string constant (unless the other |
| 3374 | // operand is null), the user probably wants strcmp. |
| 3375 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
| 3376 | !RHSStripped->isNullPointerConstant(Context)) |
| 3377 | Diag(Loc, diag::warn_stringcompare) << lex->getSourceRange(); |
| 3378 | else if ((isa<StringLiteral>(RHSStripped) || |
| 3379 | isa<ObjCEncodeExpr>(RHSStripped)) && |
| 3380 | !LHSStripped->isNullPointerConstant(Context)) |
| 3381 | Diag(Loc, diag::warn_stringcompare) << rex->getSourceRange(); |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 3382 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3383 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3384 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3385 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3386 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3387 | if (isRelational) { |
| 3388 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3389 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3390 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3391 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3392 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3393 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3394 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 3395 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3396 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3397 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3398 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3399 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3400 | |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3401 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 3402 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3403 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3404 | // All of the following pointer related warnings are GCC extensions, except |
| 3405 | // when handling null pointer constants. One day, we can consider making them |
| 3406 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 3407 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3408 | QualType LCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3409 | Context.getCanonicalType(lType->getAsPointerType()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3410 | QualType RCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3411 | Context.getCanonicalType(rType->getAsPointerType()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3412 | |
Steve Naroff | 66296cb | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 3413 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3414 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 3415 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Eli Friedman | 3d815e7 | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 3416 | RCanPointeeTy.getUnqualifiedType()) && |
Steve Naroff | 389bf46 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 3417 | !Context.areComparableObjCPointerTypes(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3418 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3419 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3420 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3421 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3422 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3423 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3424 | // Handle block pointer types. |
| 3425 | if (lType->isBlockPointerType() && rType->isBlockPointerType()) { |
| 3426 | QualType lpointee = lType->getAsBlockPointerType()->getPointeeType(); |
| 3427 | QualType rpointee = rType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3428 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3429 | if (!LHSIsNull && !RHSIsNull && |
| 3430 | !Context.typesAreBlockCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3431 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3432 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3433 | } |
| 3434 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3435 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3436 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3437 | // Allow block pointers to be compared with null pointer constants. |
| 3438 | if ((lType->isBlockPointerType() && rType->isPointerType()) || |
| 3439 | (lType->isPointerType() && rType->isBlockPointerType())) { |
| 3440 | if (!LHSIsNull && !RHSIsNull) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3441 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3442 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3443 | } |
| 3444 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3445 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3446 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3447 | |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3448 | if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3449 | if (lType->isPointerType() || rType->isPointerType()) { |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3450 | const PointerType *LPT = lType->getAsPointerType(); |
| 3451 | const PointerType *RPT = rType->getAsPointerType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3452 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3453 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3454 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3455 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3456 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3457 | if (!LPtrToVoid && !RPtrToVoid && |
| 3458 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3459 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3460 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3461 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3462 | return ResultTy; |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3463 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 3464 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3465 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 3466 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3467 | if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) { |
| 3468 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3469 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3470 | } else { |
| 3471 | if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3472 | Diag(Loc, diag::warn_incompatible_qualified_id_operands) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3473 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 3474 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3475 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3476 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3477 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 3478 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3479 | if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3480 | rType->isIntegerType()) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3481 | if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3482 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3483 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3484 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3485 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3486 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3487 | if (lType->isIntegerType() && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3488 | (rType->isPointerType() || rType->isObjCQualifiedIdType())) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3489 | if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3490 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3491 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3492 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3493 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3494 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3495 | // Handle block pointers. |
| 3496 | if (lType->isBlockPointerType() && rType->isIntegerType()) { |
| 3497 | if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3498 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3499 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3500 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3501 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3502 | } |
| 3503 | if (lType->isIntegerType() && rType->isBlockPointerType()) { |
| 3504 | if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3505 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3506 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3507 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3508 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 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 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3513 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3514 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3515 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 3516 | /// types. |
| 3517 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3518 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3519 | bool isRelational) { |
| 3520 | // Check to make sure we're operating on vectors of the same type and width, |
| 3521 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3522 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3523 | if (vType.isNull()) |
| 3524 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3525 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3526 | QualType lType = lex->getType(); |
| 3527 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3528 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3529 | // For non-floating point types, check for self-comparisons of the form |
| 3530 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3531 | // often indicate logic errors in the program. |
| 3532 | if (!lType->isFloatingType()) { |
| 3533 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 3534 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 3535 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3536 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3537 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3538 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3539 | // Check for comparisons of floating point operands using != and ==. |
| 3540 | if (!isRelational && lType->isFloatingType()) { |
| 3541 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3542 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3543 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3544 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3545 | // Return the type for the comparison, which is the same as vector type for |
| 3546 | // integer vectors, or an integer type of identical size and number of |
| 3547 | // elements for floating point vectors. |
| 3548 | if (lType->isIntegerType()) |
| 3549 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3550 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3551 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3552 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3553 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3554 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3555 | else if (TypeSize == Context.getTypeSize(Context.LongTy)) |
| 3556 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 3557 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3558 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3559 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3560 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 3561 | } |
| 3562 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3563 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3564 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3565 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 3566 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3567 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3568 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3569 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3570 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3571 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3572 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3573 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3574 | } |
| 3575 | |
| 3576 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3577 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3578 | { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3579 | UsualUnaryConversions(lex); |
| 3580 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3581 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 3582 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3583 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3584 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3585 | } |
| 3586 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3587 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 3588 | /// is a read-only property; return true if so. A readonly property expression |
| 3589 | /// depends on various declarations and thus must be treated specially. |
| 3590 | /// |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3591 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3592 | { |
| 3593 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 3594 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 3595 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 3596 | QualType BaseType = PropExpr->getBase()->getType(); |
| 3597 | if (const PointerType *PTy = BaseType->getAsPointerType()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3598 | if (const ObjCInterfaceType *IFTy = |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3599 | PTy->getPointeeType()->getAsObjCInterfaceType()) |
| 3600 | if (ObjCInterfaceDecl *IFace = IFTy->getDecl()) |
| 3601 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 3602 | return true; |
| 3603 | } |
| 3604 | } |
| 3605 | return false; |
| 3606 | } |
| 3607 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3608 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 3609 | /// emit an error and return true. If so, return false. |
| 3610 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3611 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context); |
| 3612 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 3613 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3614 | if (IsLV == Expr::MLV_Valid) |
| 3615 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3616 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3617 | unsigned Diag = 0; |
| 3618 | bool NeedType = false; |
| 3619 | switch (IsLV) { // C99 6.5.16p2 |
| 3620 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 3621 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3622 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3623 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 3624 | NeedType = true; |
| 3625 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3626 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3627 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 3628 | NeedType = true; |
| 3629 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 3630 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3631 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 3632 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3633 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3634 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 3635 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3636 | case Expr::MLV_IncompleteType: |
| 3637 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 3638 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3639 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 3640 | E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3641 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3642 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 3643 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 3644 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3645 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 3646 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 3647 | case Expr::MLV_ReadonlyProperty: |
| 3648 | Diag = diag::error_readonly_property_assignment; |
| 3649 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 3650 | case Expr::MLV_NoSetterProperty: |
| 3651 | Diag = diag::error_nosetter_property_assignment; |
| 3652 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3653 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 3654 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3655 | if (NeedType) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3656 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange(); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3657 | else |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 3658 | S.Diag(Loc, Diag) << E->getSourceRange(); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3659 | return true; |
| 3660 | } |
| 3661 | |
| 3662 | |
| 3663 | |
| 3664 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3665 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 3666 | SourceLocation Loc, |
| 3667 | QualType CompoundType) { |
| 3668 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 3669 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3670 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3671 | |
| 3672 | QualType LHSType = LHS->getType(); |
| 3673 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3674 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3675 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3676 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3677 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3678 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 3679 | // Special case of NSObject attributes on c-style pointer types. |
| 3680 | if (ConvTy == IncompatiblePointer && |
| 3681 | ((Context.isObjCNSObjectType(LHSType) && |
| 3682 | Context.isObjCObjectPointerType(RHSType)) || |
| 3683 | (Context.isObjCNSObjectType(RHSType) && |
| 3684 | Context.isObjCObjectPointerType(LHSType)))) |
| 3685 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3686 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3687 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 3688 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 3689 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3690 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3691 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 3692 | RHSCheck = ICE->getSubExpr(); |
| 3693 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 3694 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 3695 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3696 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3697 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 3698 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 3699 | // And there is a space or other character before the subexpr of the |
| 3700 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 3701 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 3702 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3703 | Diag(Loc, diag::warn_not_compound_assign) |
| 3704 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 3705 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 3706 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3707 | } |
| 3708 | } else { |
| 3709 | // Compound assignment "x += y" |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3710 | ConvTy = CheckCompoundAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3711 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3712 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3713 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 3714 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3715 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3716 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3717 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 3718 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3719 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3720 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 3721 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 3722 | // C++ 5.17p1: the type of the assignment expression is that of its left |
| 3723 | // oprdu. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3724 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3725 | } |
| 3726 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3727 | // C99 6.5.17 |
| 3728 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 3729 | // 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] | 3730 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3731 | |
| 3732 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 3733 | // incomplete in C++). |
| 3734 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3735 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3736 | } |
| 3737 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3738 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 3739 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 3740 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 3741 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3742 | if (Op->isTypeDependent()) |
| 3743 | return Context.DependentTy; |
| 3744 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3745 | QualType ResType = Op->getType(); |
| 3746 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3747 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 3748 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 3749 | // Decrement of bool is not allowed. |
| 3750 | if (!isInc) { |
| 3751 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 3752 | return QualType(); |
| 3753 | } |
| 3754 | // Increment of bool sets it to true, but is deprecated. |
| 3755 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 3756 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3757 | // OK! |
| 3758 | } else if (const PointerType *PT = ResType->getAsPointerType()) { |
| 3759 | // C99 6.5.2.4p2, 6.5.6p2 |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 3760 | if (PT->getPointeeType()->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3761 | if (getLangOptions().CPlusPlus) { |
| 3762 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 3763 | << Op->getSourceRange(); |
| 3764 | return QualType(); |
| 3765 | } |
| 3766 | |
| 3767 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3768 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3769 | } else if (PT->getPointeeType()->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3770 | if (getLangOptions().CPlusPlus) { |
| 3771 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 3772 | << Op->getType() << Op->getSourceRange(); |
| 3773 | return QualType(); |
| 3774 | } |
| 3775 | |
| 3776 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3777 | << ResType << Op->getSourceRange(); |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 3778 | } else if (RequireCompleteType(OpLoc, PT->getPointeeType(), |
| 3779 | diag::err_typecheck_arithmetic_incomplete_type, |
| 3780 | Op->getSourceRange(), SourceRange(), |
| 3781 | ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3782 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3783 | } else if (ResType->isComplexType()) { |
| 3784 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 3785 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3786 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3787 | } else { |
| 3788 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3789 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3790 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3791 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3792 | // 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] | 3793 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3794 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3795 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3796 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3797 | } |
| 3798 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 3799 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3800 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3801 | /// where the declaration is needed for type checking. We only need to |
| 3802 | /// handle cases when the expression references a function designator |
| 3803 | /// or is an lvalue. Here are some examples: |
| 3804 | /// - &(x) => x |
| 3805 | /// - &*****f => f for f a function designator. |
| 3806 | /// - &s.xx => s |
| 3807 | /// - &s.zz[1].yy -> s, if zz is an array |
| 3808 | /// - *(x + 1) -> x, if x is an array |
| 3809 | /// - &"123"[2] -> 0 |
| 3810 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3811 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3812 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3813 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 3814 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3815 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3816 | case Stmt::MemberExprClass: |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3817 | // Fields cannot be declared with a 'register' storage class. |
| 3818 | // &X->f is always ok, even if X is declared register. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3819 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3820 | return 0; |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3821 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 3822 | case Stmt::ArraySubscriptExprClass: { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3823 | // &X[4] and &4[X] refers to X if X is not a pointer. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3824 | |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3825 | NamedDecl *D = getPrimaryDecl(cast<ArraySubscriptExpr>(E)->getBase()); |
Daniel Dunbar | 48d04ae | 2008-10-21 21:22:32 +0000 | [diff] [blame] | 3826 | ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D); |
Anders Carlsson | f2a4b84 | 2008-02-01 16:01:31 +0000 | [diff] [blame] | 3827 | if (!VD || VD->getType()->isPointerType()) |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 3828 | return 0; |
| 3829 | else |
| 3830 | return VD; |
| 3831 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3832 | case Stmt::UnaryOperatorClass: { |
| 3833 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3834 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3835 | switch(UO->getOpcode()) { |
| 3836 | case UnaryOperator::Deref: { |
| 3837 | // *(X + 1) refers to X if X is not a pointer. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3838 | if (NamedDecl *D = getPrimaryDecl(UO->getSubExpr())) { |
| 3839 | ValueDecl *VD = dyn_cast<ValueDecl>(D); |
| 3840 | if (!VD || VD->getType()->isPointerType()) |
| 3841 | return 0; |
| 3842 | return VD; |
| 3843 | } |
| 3844 | return 0; |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3845 | } |
| 3846 | case UnaryOperator::Real: |
| 3847 | case UnaryOperator::Imag: |
| 3848 | case UnaryOperator::Extension: |
| 3849 | return getPrimaryDecl(UO->getSubExpr()); |
| 3850 | default: |
| 3851 | return 0; |
| 3852 | } |
| 3853 | } |
| 3854 | case Stmt::BinaryOperatorClass: { |
| 3855 | BinaryOperator *BO = cast<BinaryOperator>(E); |
| 3856 | |
| 3857 | // Handle cases involving pointer arithmetic. The result of an |
| 3858 | // Assign or AddAssign is not an lvalue so they can be ignored. |
| 3859 | |
| 3860 | // (x + n) or (n + x) => x |
| 3861 | if (BO->getOpcode() == BinaryOperator::Add) { |
| 3862 | if (BO->getLHS()->getType()->isPointerType()) { |
| 3863 | return getPrimaryDecl(BO->getLHS()); |
| 3864 | } else if (BO->getRHS()->getType()->isPointerType()) { |
| 3865 | return getPrimaryDecl(BO->getRHS()); |
| 3866 | } |
| 3867 | } |
| 3868 | |
| 3869 | return 0; |
| 3870 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3871 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3872 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3873 | case Stmt::ImplicitCastExprClass: |
| 3874 | // &X[4] when X is an array, has an implicit cast from array to pointer. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3875 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3876 | default: |
| 3877 | return 0; |
| 3878 | } |
| 3879 | } |
| 3880 | |
| 3881 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3882 | /// 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] | 3883 | /// 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] | 3884 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3885 | /// 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] | 3886 | /// 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] | 3887 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3888 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 3889 | if (op->isTypeDependent()) |
| 3890 | return Context.DependentTy; |
| 3891 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 3892 | if (getLangOptions().C99) { |
| 3893 | // Implement C99-only parts of addressof rules. |
| 3894 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 3895 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 3896 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 3897 | // (assuming the deref expression is valid). |
| 3898 | return uOp->getSubExpr()->getType(); |
| 3899 | } |
| 3900 | // Technically, there should be a check for array subscript |
| 3901 | // expressions here, but the result of one is always an lvalue anyway. |
| 3902 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3903 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 3904 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 3905 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3906 | if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1 |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3907 | if (!dcl || !isa<FunctionDecl>(dcl)) {// allow function designators |
| 3908 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 3909 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 3910 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3911 | return QualType(); |
| 3912 | } |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 3913 | } else if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(op)) { // C99 6.5.3.2p1 |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 3914 | if (FieldDecl *Field = dyn_cast<FieldDecl>(MemExpr->getMemberDecl())) { |
| 3915 | if (Field->isBitField()) { |
| 3916 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 3917 | << "bit-field" << op->getSourceRange(); |
| 3918 | return QualType(); |
| 3919 | } |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 3920 | } |
| 3921 | // Check for Apple extension for accessing vector components. |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 3922 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 3923 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3924 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 3925 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 3926 | return QualType(); |
| 3927 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3928 | // 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] | 3929 | // with the register storage-class specifier. |
| 3930 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 3931 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3932 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 3933 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3934 | return QualType(); |
| 3935 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 3936 | } else if (isa<OverloadedFunctionDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 3937 | return Context.OverloadTy; |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 3938 | } else if (isa<FieldDecl>(dcl)) { |
| 3939 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 3940 | // Could be a pointer to member, though, if there is an explicit |
| 3941 | // scope qualifier for the class. |
| 3942 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 3943 | DeclContext *Ctx = dcl->getDeclContext(); |
| 3944 | if (Ctx && Ctx->isRecord()) |
| 3945 | return Context.getMemberPointerType(op->getType(), |
| 3946 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 3947 | } |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 3948 | } else if (isa<FunctionDecl>(dcl)) { |
| 3949 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 3950 | // As above. |
| 3951 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 3952 | DeclContext *Ctx = dcl->getDeclContext(); |
| 3953 | if (Ctx && Ctx->isRecord()) |
| 3954 | return Context.getMemberPointerType(op->getType(), |
| 3955 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 3956 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 3957 | } |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 3958 | else |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3959 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3960 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 3961 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3962 | // If the operand has type "type", the result has type "pointer to type". |
| 3963 | return Context.getPointerType(op->getType()); |
| 3964 | } |
| 3965 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3966 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3967 | if (Op->isTypeDependent()) |
| 3968 | return Context.DependentTy; |
| 3969 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3970 | UsualUnaryConversions(Op); |
| 3971 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3972 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3973 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 3974 | // incomplete type or void. It would be possible to warn about dereferencing |
| 3975 | // a void pointer, but it's completely well-defined, and such a warning is |
| 3976 | // unlikely to catch any mistakes. |
| 3977 | if (const PointerType *PT = Ty->getAsPointerType()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 3978 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3979 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3980 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3981 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3982 | return QualType(); |
| 3983 | } |
| 3984 | |
| 3985 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 3986 | tok::TokenKind Kind) { |
| 3987 | BinaryOperator::Opcode Opc; |
| 3988 | switch (Kind) { |
| 3989 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3990 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 3991 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3992 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 3993 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 3994 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 3995 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 3996 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 3997 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 3998 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 3999 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4000 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4001 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4002 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4003 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4004 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4005 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4006 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4007 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4008 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4009 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4010 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4011 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4012 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4013 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4014 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4015 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4016 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4017 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4018 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4019 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4020 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4021 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4022 | } |
| 4023 | return Opc; |
| 4024 | } |
| 4025 | |
| 4026 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4027 | tok::TokenKind Kind) { |
| 4028 | UnaryOperator::Opcode Opc; |
| 4029 | switch (Kind) { |
| 4030 | default: assert(0 && "Unknown unary op!"); |
| 4031 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4032 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4033 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4034 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4035 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4036 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4037 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4038 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4039 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4040 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4041 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4042 | } |
| 4043 | return Opc; |
| 4044 | } |
| 4045 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4046 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4047 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4048 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4049 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4050 | unsigned Op, |
| 4051 | Expr *lhs, Expr *rhs) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4052 | QualType ResultTy; // Result type of the binary operator. |
| 4053 | QualType CompTy; // Computation type for compound assignments (e.g. '+=') |
| 4054 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
| 4055 | |
| 4056 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4057 | case BinaryOperator::Assign: |
| 4058 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4059 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4060 | case BinaryOperator::PtrMemD: |
| 4061 | case BinaryOperator::PtrMemI: |
| 4062 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4063 | Opc == BinaryOperator::PtrMemI); |
| 4064 | break; |
| 4065 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4066 | case BinaryOperator::Div: |
| 4067 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4068 | break; |
| 4069 | case BinaryOperator::Rem: |
| 4070 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4071 | break; |
| 4072 | case BinaryOperator::Add: |
| 4073 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4074 | break; |
| 4075 | case BinaryOperator::Sub: |
| 4076 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4077 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4078 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4079 | case BinaryOperator::Shr: |
| 4080 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4081 | break; |
| 4082 | case BinaryOperator::LE: |
| 4083 | case BinaryOperator::LT: |
| 4084 | case BinaryOperator::GE: |
| 4085 | case BinaryOperator::GT: |
| 4086 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, true); |
| 4087 | break; |
| 4088 | case BinaryOperator::EQ: |
| 4089 | case BinaryOperator::NE: |
| 4090 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, false); |
| 4091 | break; |
| 4092 | case BinaryOperator::And: |
| 4093 | case BinaryOperator::Xor: |
| 4094 | case BinaryOperator::Or: |
| 4095 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4096 | break; |
| 4097 | case BinaryOperator::LAnd: |
| 4098 | case BinaryOperator::LOr: |
| 4099 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4100 | break; |
| 4101 | case BinaryOperator::MulAssign: |
| 4102 | case BinaryOperator::DivAssign: |
| 4103 | CompTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4104 | if (!CompTy.isNull()) |
| 4105 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy); |
| 4106 | break; |
| 4107 | case BinaryOperator::RemAssign: |
| 4108 | CompTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4109 | if (!CompTy.isNull()) |
| 4110 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy); |
| 4111 | break; |
| 4112 | case BinaryOperator::AddAssign: |
| 4113 | CompTy = CheckAdditionOperands(lhs, rhs, OpLoc, true); |
| 4114 | if (!CompTy.isNull()) |
| 4115 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy); |
| 4116 | break; |
| 4117 | case BinaryOperator::SubAssign: |
| 4118 | CompTy = CheckSubtractionOperands(lhs, rhs, OpLoc, true); |
| 4119 | if (!CompTy.isNull()) |
| 4120 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy); |
| 4121 | break; |
| 4122 | case BinaryOperator::ShlAssign: |
| 4123 | case BinaryOperator::ShrAssign: |
| 4124 | CompTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4125 | if (!CompTy.isNull()) |
| 4126 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy); |
| 4127 | break; |
| 4128 | case BinaryOperator::AndAssign: |
| 4129 | case BinaryOperator::XorAssign: |
| 4130 | case BinaryOperator::OrAssign: |
| 4131 | CompTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 4132 | if (!CompTy.isNull()) |
| 4133 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy); |
| 4134 | break; |
| 4135 | case BinaryOperator::Comma: |
| 4136 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 4137 | break; |
| 4138 | } |
| 4139 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4140 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4141 | if (CompTy.isNull()) |
| 4142 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 4143 | else |
| 4144 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4145 | CompTy, OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4146 | } |
| 4147 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4148 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4149 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 4150 | tok::TokenKind Kind, |
| 4151 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4152 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4153 | Expr *lhs = (Expr *)LHS.release(), *rhs = (Expr*)RHS.release(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4154 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4155 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 4156 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4157 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4158 | if (getLangOptions().CPlusPlus && |
| 4159 | (lhs->getType()->isOverloadableType() || |
| 4160 | rhs->getType()->isOverloadableType())) { |
| 4161 | // Find all of the overloaded operators visible from this |
| 4162 | // point. We perform both an operator-name lookup from the local |
| 4163 | // scope and an argument-dependent lookup based on the types of |
| 4164 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 4165 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4166 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 4167 | if (OverOp != OO_None) { |
| 4168 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 4169 | Functions); |
| 4170 | Expr *Args[2] = { lhs, rhs }; |
| 4171 | DeclarationName OpName |
| 4172 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4173 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 4174 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4175 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4176 | // Build the (potentially-overloaded, potentially-dependent) |
| 4177 | // binary operation. |
| 4178 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4179 | } |
| 4180 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4181 | // Build a built-in binary operation. |
| 4182 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4183 | } |
| 4184 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4185 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 4186 | unsigned OpcIn, |
| 4187 | ExprArg InputArg) { |
| 4188 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4189 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4190 | // FIXME: Input is modified below, but InputArg is not updated |
| 4191 | // appropriately. |
| 4192 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4193 | QualType resultType; |
| 4194 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4195 | case UnaryOperator::PostInc: |
| 4196 | case UnaryOperator::PostDec: |
| 4197 | case UnaryOperator::OffsetOf: |
| 4198 | assert(false && "Invalid unary operator"); |
| 4199 | break; |
| 4200 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4201 | case UnaryOperator::PreInc: |
| 4202 | case UnaryOperator::PreDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4203 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
| 4204 | Opc == UnaryOperator::PreInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4205 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4206 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4207 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 4208 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4209 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 4210 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4211 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 4212 | break; |
| 4213 | case UnaryOperator::Plus: |
| 4214 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4215 | UsualUnaryConversions(Input); |
| 4216 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4217 | if (resultType->isDependentType()) |
| 4218 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4219 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 4220 | break; |
| 4221 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 4222 | resultType->isEnumeralType()) |
| 4223 | break; |
| 4224 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 4225 | Opc == UnaryOperator::Plus && |
| 4226 | resultType->isPointerType()) |
| 4227 | break; |
| 4228 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4229 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4230 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4231 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4232 | UsualUnaryConversions(Input); |
| 4233 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4234 | if (resultType->isDependentType()) |
| 4235 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4236 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 4237 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 4238 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4239 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4240 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4241 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4242 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4243 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4244 | break; |
| 4245 | case UnaryOperator::LNot: // logical negation |
| 4246 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4247 | DefaultFunctionArrayConversion(Input); |
| 4248 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4249 | if (resultType->isDependentType()) |
| 4250 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4251 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4252 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4253 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4254 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4255 | // In C++, it's bool. C++ 5.3.1p8 |
| 4256 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4257 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4258 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4259 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 4260 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4261 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4262 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4263 | resultType = Input->getType(); |
| 4264 | break; |
| 4265 | } |
| 4266 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4267 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4268 | |
| 4269 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4270 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4271 | } |
| 4272 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4273 | // Unary Operators. 'Tok' is the token for the operator. |
| 4274 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 4275 | tok::TokenKind Op, ExprArg input) { |
| 4276 | Expr *Input = (Expr*)input.get(); |
| 4277 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 4278 | |
| 4279 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 4280 | // Find all of the overloaded operators visible from this |
| 4281 | // point. We perform both an operator-name lookup from the local |
| 4282 | // scope and an argument-dependent lookup based on the types of |
| 4283 | // the arguments. |
| 4284 | FunctionSet Functions; |
| 4285 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 4286 | if (OverOp != OO_None) { |
| 4287 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 4288 | Functions); |
| 4289 | DeclarationName OpName |
| 4290 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4291 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 4292 | } |
| 4293 | |
| 4294 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 4295 | } |
| 4296 | |
| 4297 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 4298 | } |
| 4299 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 4300 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4301 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 4302 | SourceLocation LabLoc, |
| 4303 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4304 | // Look up the record for this label identifier. |
Steve Naroff | d8eb456 | 2009-03-13 16:03:38 +0000 | [diff] [blame] | 4305 | LabelStmt *&LabelDecl = CurBlock ? CurBlock->LabelMap[LabelII] : |
| 4306 | LabelMap[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4307 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 4308 | // If we haven't seen this label yet, create a forward reference. It |
| 4309 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 4310 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4311 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4312 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4313 | // 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] | 4314 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 4315 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4316 | } |
| 4317 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4318 | Sema::OwningExprResult |
| 4319 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 4320 | SourceLocation RPLoc) { // "({..})" |
| 4321 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4322 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 4323 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 4324 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4325 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
| 4326 | if (isFileScope) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4327 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4328 | } |
| 4329 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4330 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 4331 | // example, it is not possible to goto into a stmt expression apparently. |
| 4332 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4333 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4334 | // FIXME: the last statement in the compount stmt has its value used. We |
| 4335 | // should not warn about it being unused. |
| 4336 | |
| 4337 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 4338 | // as the type of the stmtexpr. |
| 4339 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4340 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4341 | if (!Compound->body_empty()) { |
| 4342 | Stmt *LastStmt = Compound->body_back(); |
| 4343 | // If LastStmt is a label, skip down through into the body. |
| 4344 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 4345 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4346 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4347 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4348 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4349 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4350 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4351 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 4352 | // expressions are not lvalues. |
| 4353 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4354 | substmt.release(); |
| 4355 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4356 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4357 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4358 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 4359 | SourceLocation BuiltinLoc, |
| 4360 | SourceLocation TypeLoc, |
| 4361 | TypeTy *argty, |
| 4362 | OffsetOfComponent *CompPtr, |
| 4363 | unsigned NumComponents, |
| 4364 | SourceLocation RPLoc) { |
| 4365 | // FIXME: This function leaks all expressions in the offset components on |
| 4366 | // error. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4367 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 4368 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4369 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4370 | bool Dependent = ArgTy->isDependentType(); |
| 4371 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4372 | // We must have at least one component that refers to the type, and the first |
| 4373 | // one is known to be a field designator. Verify that the ArgTy represents |
| 4374 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4375 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4376 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4377 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4378 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 4379 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 4380 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4381 | // Otherwise, create a null pointer as the base, and iteratively process |
| 4382 | // the offsetof designators. |
| 4383 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 4384 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4385 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4386 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 4387 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4388 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 4389 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4390 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 4391 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4392 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4393 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 4394 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4395 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4396 | if (!Dependent) { |
| 4397 | // FIXME: Dependent case loses a lot of information here. And probably |
| 4398 | // leaks like a sieve. |
| 4399 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 4400 | const OffsetOfComponent &OC = CompPtr[i]; |
| 4401 | if (OC.isBrackets) { |
| 4402 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 4403 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 4404 | if (!AT) { |
| 4405 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4406 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 4407 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4408 | } |
| 4409 | |
| 4410 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 4411 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4412 | // Promote the array so it looks more like a normal array subscript |
| 4413 | // expression. |
| 4414 | DefaultFunctionArrayConversion(Res); |
| 4415 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4416 | // C99 6.5.2.1p1 |
| 4417 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4418 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4419 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4420 | return ExprError(Diag(Idx->getLocStart(), |
| 4421 | diag::err_typecheck_subscript) |
| 4422 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4423 | |
| 4424 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 4425 | OC.LocEnd); |
| 4426 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4427 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4428 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4429 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 4430 | if (!RC) { |
| 4431 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4432 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 4433 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4434 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 4435 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4436 | // Get the decl corresponding to this. |
| 4437 | RecordDecl *RD = RC->getDecl(); |
| 4438 | FieldDecl *MemberDecl |
| 4439 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 4440 | LookupMemberName) |
| 4441 | .getAsDecl()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4442 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4443 | if (!MemberDecl) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4444 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 4445 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4446 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4447 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 4448 | // FIXME: Verify that MemberDecl isn't a bitfield. |
| 4449 | // MemberDecl->getType() doesn't get the right qualifiers, but it doesn't |
| 4450 | // matter here. |
| 4451 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4452 | MemberDecl->getType().getNonReferenceType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4453 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4454 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4455 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4456 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 4457 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4458 | } |
| 4459 | |
| 4460 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4461 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 4462 | TypeTy *arg1,TypeTy *arg2, |
| 4463 | SourceLocation RPLoc) { |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4464 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 4465 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4466 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4467 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4468 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4469 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 4470 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4471 | } |
| 4472 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4473 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 4474 | ExprArg cond, |
| 4475 | ExprArg expr1, ExprArg expr2, |
| 4476 | SourceLocation RPLoc) { |
| 4477 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 4478 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 4479 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4480 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4481 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 4482 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4483 | QualType resType; |
| 4484 | if (CondExpr->isValueDependent()) { |
| 4485 | resType = Context.DependentTy; |
| 4486 | } else { |
| 4487 | // The conditional expression is required to be a constant expression. |
| 4488 | llvm::APSInt condEval(32); |
| 4489 | SourceLocation ExpLoc; |
| 4490 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4491 | return ExprError(Diag(ExpLoc, |
| 4492 | diag::err_typecheck_choose_expr_requires_constant) |
| 4493 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4494 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4495 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 4496 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 4497 | } |
| 4498 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4499 | cond.release(); expr1.release(); expr2.release(); |
| 4500 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 4501 | resType, RPLoc)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4502 | } |
| 4503 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4504 | //===----------------------------------------------------------------------===// |
| 4505 | // Clang Extensions. |
| 4506 | //===----------------------------------------------------------------------===// |
| 4507 | |
| 4508 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4509 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4510 | // Analyze block parameters. |
| 4511 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4512 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4513 | // Add BSI to CurBlock. |
| 4514 | BSI->PrevBlockInfo = CurBlock; |
| 4515 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4516 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4517 | BSI->ReturnType = 0; |
| 4518 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 4519 | BSI->hasBlockDeclRefExprs = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4520 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4521 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 4522 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4523 | } |
| 4524 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4525 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
| 4526 | assert(ParamInfo.getIdentifier() == 0 && "block-id should have no identifier!"); |
| 4527 | |
| 4528 | if (ParamInfo.getNumTypeObjects() == 0 |
| 4529 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
| 4530 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 4531 | |
| 4532 | // The type is entirely optional as well, if none, use DependentTy. |
| 4533 | if (T.isNull()) |
| 4534 | T = Context.DependentTy; |
| 4535 | |
| 4536 | // The parameter list is optional, if there was none, assume (). |
| 4537 | if (!T->isFunctionType()) |
| 4538 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 4539 | |
| 4540 | CurBlock->hasPrototype = true; |
| 4541 | CurBlock->isVariadic = false; |
| 4542 | Type *RetTy = T.getTypePtr()->getAsFunctionType()->getResultType() |
| 4543 | .getTypePtr(); |
| 4544 | |
| 4545 | if (!RetTy->isDependentType()) |
| 4546 | CurBlock->ReturnType = RetTy; |
| 4547 | return; |
| 4548 | } |
| 4549 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4550 | // Analyze arguments to block. |
| 4551 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 4552 | "Not a function declarator!"); |
| 4553 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4554 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4555 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 4556 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4557 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4558 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 4559 | // no arguments, not a function that takes a single void argument. |
| 4560 | if (FTI.hasPrototype && |
| 4561 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
| 4562 | (!((ParmVarDecl *)FTI.ArgInfo[0].Param)->getType().getCVRQualifiers() && |
| 4563 | ((ParmVarDecl *)FTI.ArgInfo[0].Param)->getType()->isVoidType())) { |
| 4564 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4565 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4566 | } else if (FTI.hasPrototype) { |
| 4567 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4568 | CurBlock->Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param); |
| 4569 | CurBlock->isVariadic = FTI.isVariadic; |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4570 | QualType T = GetTypeForDeclarator (ParamInfo, CurScope); |
| 4571 | |
| 4572 | Type* RetTy = T.getTypePtr()->getAsFunctionType()->getResultType() |
| 4573 | .getTypePtr(); |
| 4574 | |
| 4575 | if (!RetTy->isDependentType()) |
| 4576 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4577 | } |
Steve Naroff | e78b809 | 2009-03-13 16:56:44 +0000 | [diff] [blame] | 4578 | CurBlock->TheDecl->setParams(Context, &CurBlock->Params[0], |
| 4579 | CurBlock->Params.size()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4580 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4581 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 4582 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 4583 | // If this has an identifier, add it to the scope stack. |
| 4584 | if ((*AI)->getIdentifier()) |
| 4585 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4586 | } |
| 4587 | |
| 4588 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 4589 | /// is invoked to pop the information about the block from the action impl. |
| 4590 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 4591 | // Ensure that CurBlock is deleted. |
| 4592 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4593 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4594 | // Pop off CurBlock, handle nested blocks. |
| 4595 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4596 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4597 | // FIXME: Delete the ParmVarDecl objects as well??? |
Douglas Gregor | 4a471aa | 2009-03-11 23:54:15 +0000 | [diff] [blame] | 4598 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4599 | } |
| 4600 | |
| 4601 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 4602 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4603 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 4604 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 4605 | // If blocks are disabled, emit an error. |
| 4606 | if (!LangOpts.Blocks) |
| 4607 | Diag(CaretLoc, diag::err_blocks_disable); |
| 4608 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4609 | // Ensure that CurBlock is deleted. |
| 4610 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4611 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4612 | PopDeclContext(); |
| 4613 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4614 | // Pop off CurBlock, handle nested blocks. |
| 4615 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4616 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4617 | QualType RetTy = Context.VoidTy; |
| 4618 | if (BSI->ReturnType) |
| 4619 | RetTy = QualType(BSI->ReturnType, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4620 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4621 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 4622 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 4623 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4624 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4625 | QualType BlockTy; |
| 4626 | if (!BSI->hasPrototype) |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 4627 | BlockTy = Context.getFunctionNoProtoType(RetTy); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4628 | else |
| 4629 | BlockTy = Context.getFunctionType(RetTy, &ArgTypes[0], ArgTypes.size(), |
Argyrios Kyrtzidis | 7fb5e48 | 2008-10-26 16:43:14 +0000 | [diff] [blame] | 4630 | BSI->isVariadic, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4631 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4632 | // FIXME: Check that return/parameter types are complete/non-abstract |
| 4633 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4634 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4635 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4636 | BSI->TheDecl->setBody(static_cast<CompoundStmt*>(body.release())); |
| 4637 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 4638 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4639 | } |
| 4640 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4641 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 4642 | ExprArg expr, TypeTy *type, |
| 4643 | SourceLocation RPLoc) { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 4644 | QualType T = QualType::getFromOpaquePtr(type); |
| 4645 | |
| 4646 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 4647 | |
| 4648 | // Get the va_list type |
| 4649 | QualType VaListType = Context.getBuiltinVaListType(); |
| 4650 | // Deal with implicit array decay; for example, on x86-64, |
| 4651 | // va_list is an array, but it's supposed to decay to |
| 4652 | // a pointer for va_arg. |
| 4653 | if (VaListType->isArrayType()) |
| 4654 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | efbe85c | 2008-08-20 22:17:17 +0000 | [diff] [blame] | 4655 | // Make sure the input expression also decays appropriately. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4656 | Expr *E = static_cast<Expr*>(expr.get()); |
Eli Friedman | efbe85c | 2008-08-20 22:17:17 +0000 | [diff] [blame] | 4657 | UsualUnaryConversions(E); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 4658 | |
| 4659 | if (CheckAssignmentConstraints(VaListType, E->getType()) != Compatible) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4660 | return ExprError(Diag(E->getLocStart(), |
| 4661 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
| 4662 | << E->getType() << E->getSourceRange()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4663 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4664 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 4665 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4666 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4667 | expr.release(); |
| 4668 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 4669 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 4670 | } |
| 4671 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4672 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 4673 | // The type of __null will be int or long, depending on the size of |
| 4674 | // pointers on the target. |
| 4675 | QualType Ty; |
| 4676 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 4677 | Ty = Context.IntTy; |
| 4678 | else |
| 4679 | Ty = Context.LongTy; |
| 4680 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4681 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 4682 | } |
| 4683 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4684 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 4685 | SourceLocation Loc, |
| 4686 | QualType DstType, QualType SrcType, |
| 4687 | Expr *SrcExpr, const char *Flavor) { |
| 4688 | // Decode the result (notice that AST's are still created for extensions). |
| 4689 | bool isInvalid = false; |
| 4690 | unsigned DiagKind; |
| 4691 | switch (ConvTy) { |
| 4692 | default: assert(0 && "Unknown conversion type"); |
| 4693 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 4694 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4695 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 4696 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 4697 | case IntToPointer: |
| 4698 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 4699 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4700 | case IncompatiblePointer: |
| 4701 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 4702 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4703 | case IncompatiblePointerSign: |
| 4704 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 4705 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4706 | case FunctionVoidPointer: |
| 4707 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 4708 | break; |
| 4709 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 4710 | // If the qualifiers lost were because we were applying the |
| 4711 | // (deprecated) C++ conversion from a string literal to a char* |
| 4712 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 4713 | // Ideally, this check would be performed in |
| 4714 | // CheckPointerTypesForAssignment. However, that would require a |
| 4715 | // bit of refactoring (so that the second argument is an |
| 4716 | // expression, rather than a type), which should be done as part |
| 4717 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 4718 | // C++ semantics. |
| 4719 | if (getLangOptions().CPlusPlus && |
| 4720 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 4721 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4722 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 4723 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4724 | case IntToBlockPointer: |
| 4725 | DiagKind = diag::err_int_to_block_pointer; |
| 4726 | break; |
| 4727 | case IncompatibleBlockPointer: |
Steve Naroff | ba80c9a | 2008-09-24 23:31:10 +0000 | [diff] [blame] | 4728 | DiagKind = diag::ext_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4729 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4730 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4731 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4732 | // it can give a more specific diagnostic. |
| 4733 | DiagKind = diag::warn_incompatible_qualified_id; |
| 4734 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4735 | case IncompatibleVectors: |
| 4736 | DiagKind = diag::warn_incompatible_vectors; |
| 4737 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4738 | case Incompatible: |
| 4739 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 4740 | isInvalid = true; |
| 4741 | break; |
| 4742 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4743 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4744 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 4745 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4746 | return isInvalid; |
| 4747 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4748 | |
| 4749 | bool Sema::VerifyIntegerConstantExpression(const Expr* E, llvm::APSInt *Result) |
| 4750 | { |
| 4751 | Expr::EvalResult EvalResult; |
| 4752 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4753 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4754 | EvalResult.HasSideEffects) { |
| 4755 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 4756 | |
| 4757 | if (EvalResult.Diag) { |
| 4758 | // We only show the note if it's not the usual "invalid subexpression" |
| 4759 | // or if it's actually in a subexpression. |
| 4760 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 4761 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 4762 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 4763 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4764 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4765 | return true; |
| 4766 | } |
| 4767 | |
| 4768 | if (EvalResult.Diag) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4769 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4770 | E->getSourceRange(); |
| 4771 | |
| 4772 | // Print the reason it's not a constant. |
| 4773 | if (Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 4774 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 4775 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4776 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4777 | if (Result) |
| 4778 | *Result = EvalResult.Val.getInt(); |
| 4779 | return false; |
| 4780 | } |