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) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 177 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 178 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 179 | |
| 180 | UsualUnaryConversions(rhsExpr); |
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); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 199 | if (!isCompAssign) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 200 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 201 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 202 | return destType; |
| 203 | } |
| 204 | |
| 205 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 206 | // Perform the usual unary conversions. We do this early so that |
| 207 | // integral promotions to "int" can allow us to exit early, in the |
| 208 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 209 | // qualifiers. For example, "const float" and "float" are |
| 210 | // equivalent. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 211 | if (lhs->isPromotableIntegerType()) |
| 212 | lhs = Context.IntTy; |
| 213 | else |
| 214 | lhs = lhs.getUnqualifiedType(); |
| 215 | if (rhs->isPromotableIntegerType()) |
| 216 | rhs = Context.IntTy; |
| 217 | else |
| 218 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 219 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 220 | // If both types are identical, no conversion is needed. |
| 221 | if (lhs == rhs) |
| 222 | return lhs; |
| 223 | |
| 224 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 225 | // The caller can deal with this (e.g. pointer + int). |
| 226 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 227 | return lhs; |
| 228 | |
| 229 | // At this point, we have two different arithmetic types. |
| 230 | |
| 231 | // Handle complex types first (C99 6.3.1.8p1). |
| 232 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 233 | // if we have an integer operand, the result is the complex type. |
| 234 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 235 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 236 | return lhs; |
| 237 | } |
| 238 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 239 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 240 | return rhs; |
| 241 | } |
| 242 | // This handles complex/complex, complex/float, or float/complex. |
| 243 | // When both operands are complex, the shorter operand is converted to the |
| 244 | // type of the longer, and that is the type of the result. This corresponds |
| 245 | // to what is done when combining two real floating-point operands. |
| 246 | // The fun begins when size promotion occur across type domains. |
| 247 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 248 | // floating-point type, the less precise type is converted, within it's |
| 249 | // real or complex domain, to the precision of the other type. For example, |
| 250 | // when combining a "long double" with a "double _Complex", the |
| 251 | // "double _Complex" is promoted to "long double _Complex". |
| 252 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 253 | |
| 254 | if (result > 0) { // The left side is bigger, convert rhs. |
| 255 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 256 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 257 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 258 | } |
| 259 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 260 | // domains match. This is a requirement for our implementation, C99 |
| 261 | // does not require this promotion. |
| 262 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 263 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 264 | return rhs; |
| 265 | } else { // handle "_Complex double, double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 266 | return lhs; |
| 267 | } |
| 268 | } |
| 269 | return lhs; // The domain/size match exactly. |
| 270 | } |
| 271 | // Now handle "real" floating types (i.e. float, double, long double). |
| 272 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 273 | // 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] | 274 | if (rhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 275 | // convert rhs to the lhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 276 | return lhs; |
| 277 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 278 | if (rhs->isComplexIntegerType()) { |
| 279 | // convert rhs to the complex floating point type. |
| 280 | return Context.getComplexType(lhs); |
| 281 | } |
| 282 | if (lhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 283 | // convert lhs to the rhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 284 | return rhs; |
| 285 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 286 | if (lhs->isComplexIntegerType()) { |
| 287 | // convert lhs to the complex floating point type. |
| 288 | return Context.getComplexType(rhs); |
| 289 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 290 | // We have two real floating types, float/complex combos were handled above. |
| 291 | // Convert the smaller operand to the bigger result. |
| 292 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 293 | if (result > 0) // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 294 | return lhs; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 295 | assert(result < 0 && "illegal float comparison"); |
| 296 | return rhs; // convert the lhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 297 | } |
| 298 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 299 | // Handle GCC complex int extension. |
| 300 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 301 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 302 | |
| 303 | if (lhsComplexInt && rhsComplexInt) { |
| 304 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 305 | rhsComplexInt->getElementType()) >= 0) |
| 306 | return lhs; // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 307 | return rhs; |
| 308 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 309 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 310 | return lhs; |
| 311 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 312 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 313 | return rhs; |
| 314 | } |
| 315 | } |
| 316 | // Finally, we have two differing integer types. |
| 317 | // The rules for this case are in C99 6.3.1.8 |
| 318 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 319 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 320 | rhsSigned = rhs->isSignedIntegerType(); |
| 321 | QualType destType; |
| 322 | if (lhsSigned == rhsSigned) { |
| 323 | // Same signedness; use the higher-ranked type |
| 324 | destType = compare >= 0 ? lhs : rhs; |
| 325 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 326 | // The unsigned type has greater than or equal rank to the |
| 327 | // signed type, so use the unsigned type |
| 328 | destType = lhsSigned ? rhs : lhs; |
| 329 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 330 | // The two types are different widths; if we are here, that |
| 331 | // means the signed type is larger than the unsigned type, so |
| 332 | // use the signed type. |
| 333 | destType = lhsSigned ? lhs : rhs; |
| 334 | } else { |
| 335 | // The signed type is higher-ranked than the unsigned type, |
| 336 | // but isn't actually any bigger (like unsigned int and long |
| 337 | // on most 32-bit systems). Use the unsigned type corresponding |
| 338 | // to the signed type. |
| 339 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 340 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 341 | return destType; |
| 342 | } |
| 343 | |
| 344 | //===----------------------------------------------------------------------===// |
| 345 | // Semantic Analysis for various Expression Types |
| 346 | //===----------------------------------------------------------------------===// |
| 347 | |
| 348 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 349 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 350 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 351 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 352 | /// multiple tokens. However, the common case is that StringToks points to one |
| 353 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 354 | /// |
| 355 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 356 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 357 | assert(NumStringToks && "Must have at least one string!"); |
| 358 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 359 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 360 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 361 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 362 | |
| 363 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 364 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 365 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 366 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 367 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 368 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 369 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 370 | |
| 371 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 372 | if (getLangOptions().CPlusPlus) |
| 373 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 374 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 375 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 376 | // the nul terminator character as well as the string length for pascal |
| 377 | // strings. |
| 378 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 379 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 380 | ArrayType::Normal, 0); |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 381 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 382 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 383 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 384 | Literal.GetStringLength(), |
| 385 | Literal.AnyWide, StrTy, |
| 386 | &StringTokLocs[0], |
| 387 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 390 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 391 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 392 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 393 | /// for values inside the block or for globals). |
| 394 | /// |
| 395 | /// FIXME: This will create BlockDeclRefExprs for global variables, |
| 396 | /// function references, etc which is suboptimal :) and breaks |
| 397 | /// things like "integer constant expression" tests. |
| 398 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 399 | ValueDecl *VD) { |
| 400 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 401 | // we wanted to. |
| 402 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 403 | return false; |
| 404 | |
| 405 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 406 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 407 | return false; |
| 408 | |
| 409 | // If this is a reference to an extern, static, or global variable, no need to |
| 410 | // snapshot it. |
| 411 | // FIXME: What about 'const' variables in C++? |
| 412 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
| 413 | return Var->hasLocalStorage(); |
| 414 | |
| 415 | return true; |
| 416 | } |
| 417 | |
| 418 | |
| 419 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 420 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 421 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 422 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 423 | /// 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] | 424 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 425 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 426 | IdentifierInfo &II, |
| 427 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 428 | const CXXScopeSpec *SS, |
| 429 | bool isAddressOfOperand) { |
| 430 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 431 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 434 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 435 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 436 | /// nested-name-specifier. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 437 | DeclRefExpr * |
| 438 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 439 | bool TypeDependent, bool ValueDependent, |
| 440 | const CXXScopeSpec *SS) { |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 441 | if (SS && !SS->isEmpty()) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 442 | return new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 443 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 444 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 445 | } else |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 446 | return new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 449 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 450 | /// variable corresponding to the anonymous union or struct whose type |
| 451 | /// is Record. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 452 | static Decl *getObjectForAnonymousRecordDecl(RecordDecl *Record) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 453 | assert(Record->isAnonymousStructOrUnion() && |
| 454 | "Record must be an anonymous struct or union!"); |
| 455 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 456 | // FIXME: Once Decls are directly linked together, this will |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 457 | // be an O(1) operation rather than a slow walk through DeclContext's |
| 458 | // vector (which itself will be eliminated). DeclGroups might make |
| 459 | // this even better. |
| 460 | DeclContext *Ctx = Record->getDeclContext(); |
| 461 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
| 462 | DEnd = Ctx->decls_end(); |
| 463 | D != DEnd; ++D) { |
| 464 | if (*D == Record) { |
| 465 | // The object for the anonymous struct/union directly |
| 466 | // follows its type in the list of declarations. |
| 467 | ++D; |
| 468 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 469 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 470 | return *D; |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | assert(false && "Missing object for anonymous record"); |
| 475 | return 0; |
| 476 | } |
| 477 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 478 | Sema::OwningExprResult |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 479 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 480 | FieldDecl *Field, |
| 481 | Expr *BaseObjectExpr, |
| 482 | SourceLocation OpLoc) { |
| 483 | assert(Field->getDeclContext()->isRecord() && |
| 484 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 485 | && "Field must be stored inside an anonymous struct or union"); |
| 486 | |
| 487 | // Construct the sequence of field member references |
| 488 | // we'll have to perform to get to the field in the anonymous |
| 489 | // union/struct. The list of members is built from the field |
| 490 | // outward, so traverse it backwards to go from an object in |
| 491 | // the current context to the field we found. |
| 492 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 493 | AnonFields.push_back(Field); |
| 494 | VarDecl *BaseObject = 0; |
| 495 | DeclContext *Ctx = Field->getDeclContext(); |
| 496 | do { |
| 497 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 498 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 499 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
| 500 | AnonFields.push_back(AnonField); |
| 501 | else { |
| 502 | BaseObject = cast<VarDecl>(AnonObject); |
| 503 | break; |
| 504 | } |
| 505 | Ctx = Ctx->getParent(); |
| 506 | } while (Ctx->isRecord() && |
| 507 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
| 508 | |
| 509 | // Build the expression that refers to the base object, from |
| 510 | // which we will build a sequence of member references to each |
| 511 | // of the anonymous union objects and, eventually, the field we |
| 512 | // found via name lookup. |
| 513 | bool BaseObjectIsPointer = false; |
| 514 | unsigned ExtraQuals = 0; |
| 515 | if (BaseObject) { |
| 516 | // BaseObject is an anonymous struct/union variable (and is, |
| 517 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 518 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 519 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 520 | SourceLocation()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 521 | ExtraQuals |
| 522 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 523 | } else if (BaseObjectExpr) { |
| 524 | // The caller provided the base object expression. Determine |
| 525 | // whether its a pointer and whether it adds any qualifiers to the |
| 526 | // anonymous struct/union fields we're looking into. |
| 527 | QualType ObjectType = BaseObjectExpr->getType(); |
| 528 | if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) { |
| 529 | BaseObjectIsPointer = true; |
| 530 | ObjectType = ObjectPtr->getPointeeType(); |
| 531 | } |
| 532 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 533 | } else { |
| 534 | // We've found a member of an anonymous struct/union that is |
| 535 | // inside a non-anonymous struct/union, so in a well-formed |
| 536 | // program our base object expression is "this". |
| 537 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 538 | if (!MD->isStatic()) { |
| 539 | QualType AnonFieldType |
| 540 | = Context.getTagDeclType( |
| 541 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 542 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 543 | if ((Context.getCanonicalType(AnonFieldType) |
| 544 | == Context.getCanonicalType(ThisType)) || |
| 545 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 546 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 547 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 548 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 549 | BaseObjectIsPointer = true; |
| 550 | } |
| 551 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 552 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 553 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 554 | } |
| 555 | ExtraQuals = MD->getTypeQualifiers(); |
| 556 | } |
| 557 | |
| 558 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 559 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 560 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | // Build the implicit member references to the field of the |
| 564 | // anonymous struct/union. |
| 565 | Expr *Result = BaseObjectExpr; |
| 566 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 567 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 568 | FI != FIEnd; ++FI) { |
| 569 | QualType MemberType = (*FI)->getType(); |
| 570 | if (!(*FI)->isMutable()) { |
| 571 | unsigned combinedQualifiers |
| 572 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 573 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 574 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 575 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 576 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 577 | BaseObjectIsPointer = false; |
| 578 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 581 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 584 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 585 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 586 | /// performs lookup on that name and returns an expression that refers |
| 587 | /// to that name. This routine isn't directly called from the parser, |
| 588 | /// because the parser doesn't know about DeclarationName. Rather, |
| 589 | /// this routine is called by ActOnIdentifierExpr, |
| 590 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 591 | /// which form the DeclarationName from the corresponding syntactic |
| 592 | /// forms. |
| 593 | /// |
| 594 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 595 | /// function call context. LookupCtx is only used for a C++ |
| 596 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 597 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 598 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 599 | /// isAddressOfOperand means that this expression is the direct operand |
| 600 | /// of an address-of operator. This matters because this is the only |
| 601 | /// situation where a qualified name referencing a non-static member may |
| 602 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 603 | Sema::OwningExprResult |
| 604 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 605 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 606 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 607 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 608 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 609 | if (SS && SS->isInvalid()) |
| 610 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 611 | |
| 612 | // C++ [temp.dep.expr]p3: |
| 613 | // An id-expression is type-dependent if it contains: |
| 614 | // -- a nested-name-specifier that contains a class-name that |
| 615 | // names a dependent type. |
| 616 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 617 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 618 | Loc, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 619 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()))); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 622 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 623 | false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 624 | |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 625 | NamedDecl *D = 0; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 626 | if (Lookup.isAmbiguous()) { |
| 627 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 628 | SS && SS->isSet() ? SS->getRange() |
| 629 | : SourceRange()); |
| 630 | return ExprError(); |
| 631 | } else |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 632 | D = Lookup.getAsDecl(); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 633 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 634 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 635 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 636 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 637 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 638 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 639 | // 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] | 640 | // found a decl, but that decl is outside the current instance method (i.e. |
| 641 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 642 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 643 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 644 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 645 | ObjCInterfaceDecl *ClassDeclared; |
| 646 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 647 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 648 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 649 | return ExprError(); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 650 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 651 | // If a class method attemps to use a free standing ivar, this is |
| 652 | // an error. |
| 653 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 654 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 655 | << IV->getDeclName()); |
| 656 | // If a class method uses a global variable, even if an ivar with |
| 657 | // same name exists, use the global. |
| 658 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 659 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 660 | ClassDeclared != IFace) |
| 661 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 662 | // FIXME: This should use a new expr for a direct reference, don't turn |
| 663 | // this into Self->ivar, just return a BareIVarExpr or something. |
| 664 | IdentifierInfo &II = Context.Idents.get("self"); |
| 665 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false); |
| 666 | ObjCIvarRefExpr *MRef = new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 667 | Loc, static_cast<Expr*>(SelfExpr.release()), |
| 668 | true, true); |
| 669 | Context.setFieldDecl(IFace, IV, MRef); |
| 670 | return Owned(MRef); |
| 671 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 672 | } |
| 673 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 674 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 675 | // We should warn if a local variable hides an ivar. |
| 676 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 677 | ObjCInterfaceDecl *ClassDeclared; |
| 678 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
| 679 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 680 | IFace == ClassDeclared) |
| 681 | Diag(Loc, diag::warn_ivar_use_hidden)<<IV->getDeclName(); |
| 682 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 683 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 684 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 685 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 686 | QualType T; |
| 687 | |
| 688 | if (getCurMethodDecl()->isInstanceMethod()) |
| 689 | T = Context.getPointerType(Context.getObjCInterfaceType( |
| 690 | getCurMethodDecl()->getClassInterface())); |
| 691 | else |
| 692 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 693 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 694 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 695 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 696 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 697 | // Determine whether this name might be a candidate for |
| 698 | // argument-dependent lookup. |
| 699 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 700 | HasTrailingLParen; |
| 701 | |
| 702 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 703 | // We've seen something of the form |
| 704 | // |
| 705 | // identifier( |
| 706 | // |
| 707 | // and we did not find any entity by the name |
| 708 | // "identifier". However, this identifier is still subject to |
| 709 | // argument-dependent lookup, so keep track of the name. |
| 710 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 711 | Context.OverloadTy, |
| 712 | Loc)); |
| 713 | } |
| 714 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 715 | if (D == 0) { |
| 716 | // Otherwise, this could be an implicitly declared function reference (legal |
| 717 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 718 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 719 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 720 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 721 | else { |
| 722 | // If this name wasn't predeclared and if this is not a function call, |
| 723 | // diagnose the problem. |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 724 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 725 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 726 | << Name << SS->getRange()); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 727 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 728 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 729 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 730 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 731 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 732 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 733 | } |
| 734 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 735 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 736 | // If this is an expression of the form &Class::member, don't build an |
| 737 | // implicit member ref, because we want a pointer to the member in general, |
| 738 | // not any specific instance's member. |
| 739 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 740 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 741 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 742 | QualType DType; |
| 743 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 744 | DType = FD->getType().getNonReferenceType(); |
| 745 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 746 | DType = Method->getType(); |
| 747 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 748 | DType = Context.OverloadTy; |
| 749 | } |
| 750 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 751 | if (!DType.isNull()) { |
| 752 | // The pointer is type- and value-dependent if it points into something |
| 753 | // dependent. |
| 754 | bool Dependent = false; |
| 755 | for (; DC; DC = DC->getParent()) { |
| 756 | // FIXME: could stop early at namespace scope. |
| 757 | if (DC->isRecord()) { |
| 758 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 759 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 760 | Dependent = true; |
| 761 | break; |
| 762 | } |
| 763 | } |
| 764 | } |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 765 | return Owned(BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS)); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | } |
| 769 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 770 | // We may have found a field within an anonymous union or struct |
| 771 | // (C++ [class.union]). |
| 772 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 773 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 774 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 775 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 776 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 777 | if (!MD->isStatic()) { |
| 778 | // C++ [class.mfct.nonstatic]p2: |
| 779 | // [...] if name lookup (3.4.1) resolves the name in the |
| 780 | // id-expression to a nonstatic nontype member of class X or of |
| 781 | // a base class of X, the id-expression is transformed into a |
| 782 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 783 | // as the postfix-expression to the left of the '.' operator. |
| 784 | DeclContext *Ctx = 0; |
| 785 | QualType MemberType; |
| 786 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 787 | Ctx = FD->getDeclContext(); |
| 788 | MemberType = FD->getType(); |
| 789 | |
| 790 | if (const ReferenceType *RefType = MemberType->getAsReferenceType()) |
| 791 | MemberType = RefType->getPointeeType(); |
| 792 | else if (!FD->isMutable()) { |
| 793 | unsigned combinedQualifiers |
| 794 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 795 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 796 | } |
| 797 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 798 | if (!Method->isStatic()) { |
| 799 | Ctx = Method->getParent(); |
| 800 | MemberType = Method->getType(); |
| 801 | } |
| 802 | } else if (OverloadedFunctionDecl *Ovl |
| 803 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 804 | for (OverloadedFunctionDecl::function_iterator |
| 805 | Func = Ovl->function_begin(), |
| 806 | FuncEnd = Ovl->function_end(); |
| 807 | Func != FuncEnd; ++Func) { |
| 808 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 809 | if (!DMethod->isStatic()) { |
| 810 | Ctx = Ovl->getDeclContext(); |
| 811 | MemberType = Context.OverloadTy; |
| 812 | break; |
| 813 | } |
| 814 | } |
| 815 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 816 | |
| 817 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 818 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 819 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 820 | if ((Context.getCanonicalType(CtxType) |
| 821 | == Context.getCanonicalType(ThisType)) || |
| 822 | IsDerivedFrom(ThisType, CtxType)) { |
| 823 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 824 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 825 | MD->getThisType(Context)); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 826 | return Owned(new (Context) MemberExpr(This, true, D, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 827 | SourceLocation(), MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 828 | } |
| 829 | } |
| 830 | } |
| 831 | } |
| 832 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 833 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 834 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 835 | if (MD->isStatic()) |
| 836 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 837 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 838 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 839 | } |
| 840 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 841 | // Any other ways we could have found the field in a well-formed |
| 842 | // program would have been turned into implicit member expressions |
| 843 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 844 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 845 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 846 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 847 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 848 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 849 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 850 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 851 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 852 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 853 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 854 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 855 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 856 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 857 | return Owned(BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 858 | false, false, SS)); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 859 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
| 860 | return Owned(BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 861 | false, false, SS)); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 862 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 863 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 864 | // Check whether this declaration can be used. Note that we suppress |
| 865 | // this check when we're going to perform argument-dependent lookup |
| 866 | // on this function name, because this might not be the function |
| 867 | // that overload resolution actually selects. |
| 868 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 869 | return ExprError(); |
| 870 | |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 871 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 872 | // Warn about constructs like: |
| 873 | // if (void *X = foo()) { ... } else { X }. |
| 874 | // In the else block, the pointer is always false. |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 875 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 876 | Scope *CheckS = S; |
| 877 | while (CheckS) { |
| 878 | if (CheckS->isWithinElse() && |
| 879 | CheckS->getControlParent()->isDeclScope(Var)) { |
| 880 | if (Var->getType()->isBooleanType()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 881 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 882 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 883 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 884 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 885 | << Var->getDeclName()); |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 886 | break; |
| 887 | } |
| 888 | |
| 889 | // Move up one more control parent to check again. |
| 890 | CheckS = CheckS->getControlParent(); |
| 891 | if (CheckS) |
| 892 | CheckS = CheckS->getParent(); |
| 893 | } |
| 894 | } |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 895 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(VD)) { |
| 896 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 897 | // C99 DR 316 says that, if a function type comes from a |
| 898 | // function definition (without a prototype), that type is only |
| 899 | // used for checking compatibility. Therefore, when referencing |
| 900 | // the function, we pretend that we don't have the full function |
| 901 | // type. |
| 902 | QualType T = Func->getType(); |
| 903 | QualType NoProtoType = T; |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 904 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 905 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
Douglas Gregor | 2224f84 | 2009-02-25 16:33:18 +0000 | [diff] [blame] | 906 | return Owned(BuildDeclRefExpr(VD, NoProtoType, Loc, false, false, SS)); |
| 907 | } |
Douglas Gregor | caaf29a | 2008-12-10 23:01:14 +0000 | [diff] [blame] | 908 | } |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 909 | |
| 910 | // Only create DeclRefExpr's for valid Decl's. |
| 911 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 912 | return ExprError(); |
| 913 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 914 | // If the identifier reference is inside a block, and it refers to a value |
| 915 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 916 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 917 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 918 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 919 | // We do not do this for things like enum constants, global variables, etc, |
| 920 | // as they do not get snapshotted. |
| 921 | // |
| 922 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 923 | // Blocks that have these can't be constant. |
| 924 | CurBlock->hasBlockDeclRefExprs = true; |
| 925 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 926 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 927 | // The BlocksAttr indicates the variable is bound by-reference. |
| 928 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 929 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 930 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 931 | // Variable will be bound by-copy, make it const within the closure. |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 932 | ExprTy.addConst(); |
| 933 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 934 | } |
| 935 | // If this reference is not in a block or if the referenced variable is |
| 936 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 937 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 938 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 939 | bool ValueDependent = false; |
| 940 | if (getLangOptions().CPlusPlus) { |
| 941 | // C++ [temp.dep.expr]p3: |
| 942 | // An id-expression is type-dependent if it contains: |
| 943 | // - an identifier that was declared with a dependent type, |
| 944 | if (VD->getType()->isDependentType()) |
| 945 | TypeDependent = true; |
| 946 | // - FIXME: a template-id that is dependent, |
| 947 | // - a conversion-function-id that specifies a dependent type, |
| 948 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 949 | Name.getCXXNameType()->isDependentType()) |
| 950 | TypeDependent = true; |
| 951 | // - a nested-name-specifier that contains a class-name that |
| 952 | // names a dependent type. |
| 953 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 954 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 955 | DC; DC = DC->getParent()) { |
| 956 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 957 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 958 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 959 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 960 | TypeDependent = true; |
| 961 | break; |
| 962 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 963 | } |
| 964 | } |
| 965 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 966 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 967 | // C++ [temp.dep.constexpr]p2: |
| 968 | // |
| 969 | // An identifier is value-dependent if it is: |
| 970 | // - a name declared with a dependent type, |
| 971 | if (TypeDependent) |
| 972 | ValueDependent = true; |
| 973 | // - the name of a non-type template parameter, |
| 974 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 975 | ValueDependent = true; |
| 976 | // - a constant with integral or enumeration type and is |
| 977 | // initialized with an expression that is value-dependent |
| 978 | // (FIXME!). |
| 979 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 980 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 981 | return Owned(BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 982 | TypeDependent, ValueDependent, SS)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 985 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 986 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 987 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 988 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 989 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 990 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 991 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 992 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 993 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 994 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 995 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 996 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 997 | // string. |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 998 | unsigned Length; |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 999 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1000 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1001 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1002 | Length = MD->getSynthesizedMethodSize(); |
| 1003 | else { |
| 1004 | Diag(Loc, diag::ext_predef_outside_function); |
| 1005 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1006 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1007 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1008 | |
| 1009 | |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1010 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1011 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1012 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1013 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1016 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1017 | llvm::SmallString<16> CharBuffer; |
| 1018 | CharBuffer.resize(Tok.getLength()); |
| 1019 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1020 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1021 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1022 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1023 | Tok.getLocation(), PP); |
| 1024 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1025 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1026 | |
| 1027 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1028 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1029 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1030 | Literal.isWide(), |
| 1031 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1032 | } |
| 1033 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1034 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1035 | // 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] | 1036 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1037 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1038 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1039 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1040 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1041 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1042 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1043 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1044 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1045 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1046 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1047 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1048 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1049 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1050 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1051 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1052 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1053 | Tok.getLocation(), PP); |
| 1054 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1055 | return ExprError(); |
| 1056 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1057 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1058 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1059 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1060 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1061 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1062 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1063 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1064 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1065 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1066 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1067 | |
| 1068 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1069 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1070 | // isExact will be set by GetFloatValue(). |
| 1071 | bool isExact = false; |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1072 | Res = new (Context) FloatingLiteral(Literal.GetFloatValue(Format, &isExact), |
| 1073 | &isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1074 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1075 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1076 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1077 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1078 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1079 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1080 | // long long is a C99 feature. |
| 1081 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1082 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1083 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1084 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1085 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1086 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1087 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1088 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1089 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1090 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1091 | Ty = Context.UnsignedLongLongTy; |
| 1092 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1093 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1094 | } else { |
| 1095 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1096 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1097 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1098 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1099 | // be an unsigned int. |
| 1100 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1101 | |
| 1102 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1103 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1104 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1105 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1106 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1107 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1108 | // Does it fit in a unsigned int? |
| 1109 | if (ResultVal.isIntN(IntSize)) { |
| 1110 | // Does it fit in a signed int? |
| 1111 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1112 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1113 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1114 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1115 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1116 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1117 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1118 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1119 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1120 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1121 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1122 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1123 | // Does it fit in a unsigned long? |
| 1124 | if (ResultVal.isIntN(LongSize)) { |
| 1125 | // Does it fit in a signed long? |
| 1126 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1127 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1128 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1129 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1130 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1131 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1134 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1135 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1136 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1137 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1138 | // Does it fit in a unsigned long long? |
| 1139 | if (ResultVal.isIntN(LongLongSize)) { |
| 1140 | // Does it fit in a signed long long? |
| 1141 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1142 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1143 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1144 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1145 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1146 | } |
| 1147 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1148 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1149 | // If we still couldn't decide a type, we probably have something that |
| 1150 | // 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] | 1151 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1152 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1153 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1154 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1155 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1156 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1157 | if (ResultVal.getBitWidth() != Width) |
| 1158 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1159 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1160 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1161 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1162 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1163 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1164 | if (Literal.isImaginary) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1165 | Res = new (Context) ImaginaryLiteral(Res, |
| 1166 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1167 | |
| 1168 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1169 | } |
| 1170 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1171 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1172 | SourceLocation R, ExprArg Val) { |
| 1173 | Expr *E = (Expr *)Val.release(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1174 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1175 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
| 1178 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1179 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1180 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1181 | SourceLocation OpLoc, |
| 1182 | const SourceRange &ExprRange, |
| 1183 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1184 | if (exprType->isDependentType()) |
| 1185 | return false; |
| 1186 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1187 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1188 | if (isa<FunctionType>(exprType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1189 | // alignof(function) is allowed. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1190 | if (isSizeof) |
| 1191 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1192 | return false; |
| 1193 | } |
| 1194 | |
| 1195 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1196 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1197 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1198 | return false; |
| 1199 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1200 | |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 1201 | return RequireCompleteType(OpLoc, exprType, |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1202 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1203 | diag::err_alignof_incomplete_type, |
| 1204 | ExprRange); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1205 | } |
| 1206 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1207 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1208 | const SourceRange &ExprRange) { |
| 1209 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1210 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1211 | // alignof decl is always ok. |
| 1212 | if (isa<DeclRefExpr>(E)) |
| 1213 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1214 | |
| 1215 | // Cannot know anything else if the expression is dependent. |
| 1216 | if (E->isTypeDependent()) |
| 1217 | return false; |
| 1218 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1219 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 1220 | if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { |
| 1221 | if (FD->isBitField()) { |
Chris Lattner | da02747 | 2009-01-24 21:29:22 +0000 | [diff] [blame] | 1222 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1223 | return true; |
| 1224 | } |
| 1225 | // Other fields are ok. |
| 1226 | return false; |
| 1227 | } |
| 1228 | } |
| 1229 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1230 | } |
| 1231 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1232 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1233 | Action::OwningExprResult |
| 1234 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1235 | bool isSizeOf, SourceRange R) { |
| 1236 | if (T.isNull()) |
| 1237 | return ExprError(); |
| 1238 | |
| 1239 | if (!T->isDependentType() && |
| 1240 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1241 | return ExprError(); |
| 1242 | |
| 1243 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1244 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1245 | Context.getSizeType(), OpLoc, |
| 1246 | R.getEnd())); |
| 1247 | } |
| 1248 | |
| 1249 | /// \brief Build a sizeof or alignof expression given an expression |
| 1250 | /// operand. |
| 1251 | Action::OwningExprResult |
| 1252 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1253 | bool isSizeOf, SourceRange R) { |
| 1254 | // Verify that the operand is valid. |
| 1255 | bool isInvalid = false; |
| 1256 | if (E->isTypeDependent()) { |
| 1257 | // Delay type-checking for type-dependent expressions. |
| 1258 | } else if (!isSizeOf) { |
| 1259 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
| 1260 | } else if (E->isBitField()) { // C99 6.5.3.4p1. |
| 1261 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1262 | isInvalid = true; |
| 1263 | } else { |
| 1264 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1265 | } |
| 1266 | |
| 1267 | if (isInvalid) |
| 1268 | return ExprError(); |
| 1269 | |
| 1270 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1271 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1272 | Context.getSizeType(), OpLoc, |
| 1273 | R.getEnd())); |
| 1274 | } |
| 1275 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1276 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1277 | /// the same for @c alignof and @c __alignof |
| 1278 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1279 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1280 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1281 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1282 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1283 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1284 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1285 | if (isType) { |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1286 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1287 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1288 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1289 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1290 | // Get the end location. |
| 1291 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1292 | Action::OwningExprResult Result |
| 1293 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1294 | |
| 1295 | if (Result.isInvalid()) |
| 1296 | DeleteExpr(ArgEx); |
| 1297 | |
| 1298 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1299 | } |
| 1300 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1301 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1302 | if (V->isTypeDependent()) |
| 1303 | return Context.DependentTy; |
| 1304 | |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1305 | DefaultFunctionArrayConversion(V); |
| 1306 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1307 | // These operators return the element type of a complex type. |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1308 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1309 | return CT->getElementType(); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1310 | |
| 1311 | // Otherwise they pass through real integer and floating point types here. |
| 1312 | if (V->getType()->isArithmeticType()) |
| 1313 | return V->getType(); |
| 1314 | |
| 1315 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1316 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1317 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1318 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1322 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1323 | Action::OwningExprResult |
| 1324 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1325 | tok::TokenKind Kind, ExprArg Input) { |
| 1326 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1327 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1328 | UnaryOperator::Opcode Opc; |
| 1329 | switch (Kind) { |
| 1330 | default: assert(0 && "Unknown unary op!"); |
| 1331 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1332 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1333 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1334 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1335 | if (getLangOptions().CPlusPlus && |
| 1336 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1337 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1338 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1339 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1340 | |
| 1341 | // C++ [over.inc]p1: |
| 1342 | // |
| 1343 | // [...] If the function is a member function with one |
| 1344 | // parameter (which shall be of type int) or a non-member |
| 1345 | // function with two parameters (the second of which shall be |
| 1346 | // of type int), it defines the postfix increment operator ++ |
| 1347 | // for objects of that type. When the postfix increment is |
| 1348 | // called as a result of using the ++ operator, the int |
| 1349 | // argument will have value zero. |
| 1350 | Expr *Args[2] = { |
| 1351 | Arg, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1352 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1353 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1354 | }; |
| 1355 | |
| 1356 | // Build the candidate set for overloading |
| 1357 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1358 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1359 | |
| 1360 | // Perform overload resolution. |
| 1361 | OverloadCandidateSet::iterator Best; |
| 1362 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1363 | case OR_Success: { |
| 1364 | // We found a built-in operator or an overloaded operator. |
| 1365 | FunctionDecl *FnDecl = Best->Function; |
| 1366 | |
| 1367 | if (FnDecl) { |
| 1368 | // We matched an overloaded operator. Build a call to that |
| 1369 | // operator. |
| 1370 | |
| 1371 | // Convert the arguments. |
| 1372 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1373 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1374 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1375 | } else { |
| 1376 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1377 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1378 | FnDecl->getParamDecl(0)->getType(), |
| 1379 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1380 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
| 1383 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1384 | QualType ResultTy |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1385 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1386 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1387 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1388 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1389 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1390 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1391 | UsualUnaryConversions(FnExpr); |
| 1392 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1393 | Input.release(); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1394 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1395 | Args, 2, ResultTy, |
| 1396 | OpLoc)); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1397 | } else { |
| 1398 | // We matched a built-in operator. Convert the arguments, then |
| 1399 | // break out so that we will build the appropriate built-in |
| 1400 | // operator node. |
| 1401 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1402 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1403 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1404 | |
| 1405 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1406 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | case OR_No_Viable_Function: |
| 1410 | // No viable function; fall through to handling this as a |
| 1411 | // built-in operator, which will produce an error message for us. |
| 1412 | break; |
| 1413 | |
| 1414 | case OR_Ambiguous: |
| 1415 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1416 | << UnaryOperator::getOpcodeStr(Opc) |
| 1417 | << Arg->getSourceRange(); |
| 1418 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1419 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1420 | |
| 1421 | case OR_Deleted: |
| 1422 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1423 | << Best->Function->isDeleted() |
| 1424 | << UnaryOperator::getOpcodeStr(Opc) |
| 1425 | << Arg->getSourceRange(); |
| 1426 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1427 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1428 | } |
| 1429 | |
| 1430 | // Either we found no viable overloaded operator or we matched a |
| 1431 | // built-in operator. In either case, fall through to trying to |
| 1432 | // build a built-in operation. |
| 1433 | } |
| 1434 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 1435 | QualType result = CheckIncrementDecrementOperand(Arg, OpLoc, |
| 1436 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1437 | if (result.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1438 | return ExprError(); |
| 1439 | Input.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1440 | return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1441 | } |
| 1442 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1443 | Action::OwningExprResult |
| 1444 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1445 | ExprArg Idx, SourceLocation RLoc) { |
| 1446 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1447 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1448 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1449 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1450 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1451 | LHSExp->getType()->isEnumeralType() || |
| 1452 | RHSExp->getType()->isRecordType() || |
| 1453 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1454 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1455 | // to the candidate set. |
| 1456 | OverloadCandidateSet CandidateSet; |
| 1457 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1458 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1459 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1460 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1461 | // Perform overload resolution. |
| 1462 | OverloadCandidateSet::iterator Best; |
| 1463 | switch (BestViableFunction(CandidateSet, Best)) { |
| 1464 | case OR_Success: { |
| 1465 | // We found a built-in operator or an overloaded operator. |
| 1466 | FunctionDecl *FnDecl = Best->Function; |
| 1467 | |
| 1468 | if (FnDecl) { |
| 1469 | // We matched an overloaded operator. Build a call to that |
| 1470 | // operator. |
| 1471 | |
| 1472 | // Convert the arguments. |
| 1473 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1474 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1475 | PerformCopyInitialization(RHSExp, |
| 1476 | FnDecl->getParamDecl(0)->getType(), |
| 1477 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1478 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1479 | } else { |
| 1480 | // Convert the arguments. |
| 1481 | if (PerformCopyInitialization(LHSExp, |
| 1482 | FnDecl->getParamDecl(0)->getType(), |
| 1483 | "passing") || |
| 1484 | PerformCopyInitialization(RHSExp, |
| 1485 | FnDecl->getParamDecl(1)->getType(), |
| 1486 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1487 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1491 | QualType ResultTy |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1492 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1493 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1494 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1495 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1496 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1497 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1498 | UsualUnaryConversions(FnExpr); |
| 1499 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1500 | Base.release(); |
| 1501 | Idx.release(); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1502 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1503 | FnExpr, Args, 2, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1504 | ResultTy, LLoc)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1505 | } else { |
| 1506 | // We matched a built-in operator. Convert the arguments, then |
| 1507 | // break out so that we will build the appropriate built-in |
| 1508 | // operator node. |
| 1509 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1510 | "passing") || |
| 1511 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1512 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1513 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1514 | |
| 1515 | break; |
| 1516 | } |
| 1517 | } |
| 1518 | |
| 1519 | case OR_No_Viable_Function: |
| 1520 | // No viable function; fall through to handling this as a |
| 1521 | // built-in operator, which will produce an error message for us. |
| 1522 | break; |
| 1523 | |
| 1524 | case OR_Ambiguous: |
| 1525 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1526 | << "[]" |
| 1527 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1528 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1529 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1530 | |
| 1531 | case OR_Deleted: |
| 1532 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1533 | << Best->Function->isDeleted() |
| 1534 | << "[]" |
| 1535 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1536 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1537 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
| 1540 | // Either we found no viable overloaded operator or we matched a |
| 1541 | // built-in operator. In either case, fall through to trying to |
| 1542 | // build a built-in operation. |
| 1543 | } |
| 1544 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1545 | // Perform default conversions. |
| 1546 | DefaultFunctionArrayConversion(LHSExp); |
| 1547 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1548 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1549 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1550 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1551 | // 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] | 1552 | // 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] | 1553 | // 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] | 1554 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1555 | Expr *BaseExpr, *IndexExpr; |
| 1556 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1557 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1558 | BaseExpr = LHSExp; |
| 1559 | IndexExpr = RHSExp; |
| 1560 | ResultType = Context.DependentTy; |
| 1561 | } else if (const PointerType *PTy = LHSTy->getAsPointerType()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1562 | BaseExpr = LHSExp; |
| 1563 | IndexExpr = RHSExp; |
| 1564 | // FIXME: need to deal with const... |
| 1565 | ResultType = PTy->getPointeeType(); |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1566 | } else if (const PointerType *PTy = RHSTy->getAsPointerType()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1567 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1568 | BaseExpr = RHSExp; |
| 1569 | IndexExpr = LHSExp; |
| 1570 | // FIXME: need to deal with const... |
| 1571 | ResultType = PTy->getPointeeType(); |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1572 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1573 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1574 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1575 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1576 | // FIXME: need to deal with const... |
| 1577 | ResultType = VTy->getElementType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1578 | } else { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1579 | return ExprError(Diag(LHSExp->getLocStart(), |
| 1580 | diag::err_typecheck_subscript_value) << RHSExp->getSourceRange()); |
| 1581 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1582 | // C99 6.5.2.1p1 |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1583 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1584 | return ExprError(Diag(IndexExpr->getLocStart(), |
| 1585 | diag::err_typecheck_subscript) << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1586 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1587 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1588 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1589 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1590 | // incomplete types are not object types. |
| 1591 | if (ResultType->isFunctionType()) { |
| 1592 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1593 | << ResultType << BaseExpr->getSourceRange(); |
| 1594 | return ExprError(); |
| 1595 | } |
| 1596 | if (!ResultType->isDependentType() && |
| 1597 | RequireCompleteType(BaseExpr->getLocStart(), ResultType, |
| 1598 | diag::err_subscript_incomplete_type, |
| 1599 | BaseExpr->getSourceRange())) |
| 1600 | return ExprError(); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1601 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1602 | Base.release(); |
| 1603 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1604 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1605 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1606 | } |
| 1607 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1608 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1609 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1610 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1611 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1612 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1613 | // The vector accessor can't exceed the number of elements. |
| 1614 | const char *compStr = CompName.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1615 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1616 | // 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] | 1617 | // special names that indicate a subset of exactly half the elements are |
| 1618 | // to be selected. |
| 1619 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1620 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1621 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1622 | // indicating that it is a string of hex values to be used as vector indices. |
| 1623 | bool HexSwizzle = *compStr == 's'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1624 | |
| 1625 | // Check that we've found one of the special components, or that the component |
| 1626 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1627 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1628 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1629 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1630 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1631 | do |
| 1632 | compStr++; |
| 1633 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1634 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1635 | do |
| 1636 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1637 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1638 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1639 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1640 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1641 | // We didn't get to the end of the string. This means the component names |
| 1642 | // 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] | 1643 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1644 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1645 | return QualType(); |
| 1646 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1647 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1648 | // Ensure no component accessor exceeds the width of the vector type it |
| 1649 | // operates on. |
| 1650 | if (!HalvingSwizzle) { |
| 1651 | compStr = CompName.getName(); |
| 1652 | |
| 1653 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1654 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1655 | |
| 1656 | while (*compStr) { |
| 1657 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1658 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1659 | << baseType << SourceRange(CompLoc); |
| 1660 | return QualType(); |
| 1661 | } |
| 1662 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1663 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1664 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1665 | // If this is a halving swizzle, verify that the base type has an even |
| 1666 | // number of elements. |
| 1667 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1668 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1669 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1670 | return QualType(); |
| 1671 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1672 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1673 | // 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] | 1674 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1675 | // 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] | 1676 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1677 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1678 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 1679 | : CompName.getLength(); |
| 1680 | if (HexSwizzle) |
| 1681 | CompSize--; |
| 1682 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1683 | if (CompSize == 1) |
| 1684 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1685 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1686 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1687 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1688 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1689 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1690 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1691 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1692 | } |
| 1693 | 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] | 1694 | } |
| 1695 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1696 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 1697 | IdentifierInfo &Member, |
| 1698 | const Selector &Sel) { |
| 1699 | |
| 1700 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member)) |
| 1701 | return PD; |
| 1702 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
| 1703 | return OMD; |
| 1704 | |
| 1705 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1706 | E = PDecl->protocol_end(); I != E; ++I) { |
| 1707 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel)) |
| 1708 | return D; |
| 1709 | } |
| 1710 | return 0; |
| 1711 | } |
| 1712 | |
| 1713 | static Decl *FindGetterNameDecl(const ObjCQualifiedIdType *QIdTy, |
| 1714 | IdentifierInfo &Member, |
| 1715 | const Selector &Sel) { |
| 1716 | // Check protocols on qualified interfaces. |
| 1717 | Decl *GDecl = 0; |
| 1718 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1719 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1720 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
| 1721 | GDecl = PD; |
| 1722 | break; |
| 1723 | } |
| 1724 | // Also must look for a getter name which uses property syntax. |
| 1725 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
| 1726 | GDecl = OMD; |
| 1727 | break; |
| 1728 | } |
| 1729 | } |
| 1730 | if (!GDecl) { |
| 1731 | for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(), |
| 1732 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1733 | // Search in the protocol-qualifier list of current protocol. |
| 1734 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel); |
| 1735 | if (GDecl) |
| 1736 | return GDecl; |
| 1737 | } |
| 1738 | } |
| 1739 | return GDecl; |
| 1740 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1741 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1742 | Action::OwningExprResult |
| 1743 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 1744 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1745 | IdentifierInfo &Member, |
| 1746 | DeclTy *ObjCImpDecl) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1747 | Expr *BaseExpr = static_cast<Expr *>(Base.release()); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1748 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 1749 | |
| 1750 | // Perform default conversions. |
| 1751 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1752 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1753 | QualType BaseType = BaseExpr->getType(); |
| 1754 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1755 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1756 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 1757 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1758 | if (OpKind == tok::arrow) { |
Chris Lattner | befee48 | 2007-07-31 16:53:04 +0000 | [diff] [blame] | 1759 | if (const PointerType *PT = BaseType->getAsPointerType()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1760 | BaseType = PT->getPointeeType(); |
Douglas Gregor | 8ba1074 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 1761 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1762 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 1763 | MemberLoc, Member)); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1764 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1765 | return ExprError(Diag(MemberLoc, |
| 1766 | diag::err_typecheck_member_reference_arrow) |
| 1767 | << BaseType << BaseExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1768 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1769 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1770 | // Handle field access to simple records. This also handles access to fields |
| 1771 | // of the ObjC 'id' struct. |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1772 | if (const RecordType *RTy = BaseType->getAsRecordType()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1773 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 1774 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 1775 | diag::err_typecheck_incomplete_tag, |
| 1776 | BaseExpr->getSourceRange())) |
| 1777 | return ExprError(); |
| 1778 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1779 | // The record definition is complete, now make sure the member is valid. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1780 | // FIXME: Qualified name lookup for C++ is a bit more complicated |
| 1781 | // than this. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1782 | LookupResult Result |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1783 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1784 | LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1785 | |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1786 | NamedDecl *MemberDecl = 0; |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1787 | if (!Result) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1788 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 1789 | << &Member << BaseExpr->getSourceRange()); |
| 1790 | else if (Result.isAmbiguous()) { |
| 1791 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 1792 | MemberLoc, BaseExpr->getSourceRange()); |
| 1793 | return ExprError(); |
| 1794 | } else |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 1795 | MemberDecl = Result; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1796 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1797 | // If the decl being referenced had an error, return an error for this |
| 1798 | // sub-expr without emitting another error, in order to avoid cascading |
| 1799 | // error cases. |
| 1800 | if (MemberDecl->isInvalidDecl()) |
| 1801 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1802 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1803 | // Check the use of this field |
| 1804 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 1805 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1806 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1807 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1808 | // We may have found a field within an anonymous union or struct |
| 1809 | // (C++ [class.union]). |
| 1810 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1811 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1812 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1813 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1814 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
| 1815 | // FIXME: Handle address space modifiers |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1816 | QualType MemberType = FD->getType(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1817 | if (const ReferenceType *Ref = MemberType->getAsReferenceType()) |
| 1818 | MemberType = Ref->getPointeeType(); |
| 1819 | else { |
| 1820 | unsigned combinedQualifiers = |
| 1821 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1822 | if (FD->isMutable()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1823 | combinedQualifiers &= ~QualType::Const; |
| 1824 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 1825 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 1826 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1827 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 1828 | MemberLoc, MemberType)); |
Douglas Gregor | 2d2e9cf | 2009-03-11 20:22:50 +0000 | [diff] [blame] | 1829 | } else if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1830 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1831 | Var, MemberLoc, |
| 1832 | Var->getType().getNonReferenceType())); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1833 | else if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1834 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1835 | MemberFn, MemberLoc, MemberFn->getType())); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1836 | else if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1837 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1838 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1839 | MemberLoc, Context.OverloadTy)); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1840 | else if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1841 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 1842 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1843 | else if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1844 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 1845 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 1846 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 1847 | // We found a declaration kind that we didn't expect. This is a |
| 1848 | // generic error message that tells the user that she can't refer |
| 1849 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1850 | return ExprError(Diag(MemberLoc, |
| 1851 | diag::err_typecheck_member_reference_unknown) |
| 1852 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 1853 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1854 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 1855 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 1856 | // (*Obj).ivar. |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1857 | if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1858 | ObjCInterfaceDecl *ClassDeclared; |
| 1859 | if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(&Member, |
| 1860 | ClassDeclared)) { |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 1861 | // If the decl being referenced had an error, return an error for this |
| 1862 | // sub-expr without emitting another error, in order to avoid cascading |
| 1863 | // error cases. |
| 1864 | if (IV->isInvalidDecl()) |
| 1865 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1866 | |
| 1867 | // Check whether we can reference this field. |
| 1868 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 1869 | return ExprError(); |
Steve Naroff | 8bfd1b8 | 2009-03-26 16:01:08 +0000 | [diff] [blame] | 1870 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 1871 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1872 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 1873 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1874 | ClassOfMethodDecl = MD->getClassInterface(); |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1875 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 1876 | // Case of a c-function declared inside an objc implementation. |
| 1877 | // FIXME: For a c-style function nested inside an objc implementation |
| 1878 | // class, there is no implementation context available, so we pass down |
| 1879 | // the context as argument to this routine. Ideally, this context need |
| 1880 | // be passed down in the AST node and somehow calculated from the AST |
| 1881 | // for a function decl. |
| 1882 | Decl *ImplDecl = static_cast<Decl *>(ObjCImpDecl); |
| 1883 | if (ObjCImplementationDecl *IMPD = |
| 1884 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 1885 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 1886 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 1887 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 1888 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 1889 | } |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1890 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1891 | if (ClassDeclared != IFTy->getDecl() || |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 1892 | ClassOfMethodDecl != ClassDeclared) |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 1893 | Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 1894 | } |
| 1895 | // @protected |
| 1896 | else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl)) |
| 1897 | Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName(); |
| 1898 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1899 | |
| 1900 | ObjCIvarRefExpr *MRef= new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1901 | MemberLoc, BaseExpr, |
Fariborz Jahanian | efc4c4b | 2008-12-18 17:29:46 +0000 | [diff] [blame] | 1902 | OpKind == tok::arrow); |
| 1903 | Context.setFieldDecl(IFTy->getDecl(), IV, MRef); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1904 | return Owned(MRef); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 1905 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1906 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 1907 | << IFTy->getDecl()->getDeclName() << &Member |
| 1908 | << BaseExpr->getSourceRange()); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 1909 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1910 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 1911 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 1912 | // pointer to a (potentially qualified) interface type. |
| 1913 | const PointerType *PTy; |
| 1914 | const ObjCInterfaceType *IFTy; |
| 1915 | if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) && |
| 1916 | (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) { |
| 1917 | ObjCInterfaceDecl *IFace = IFTy->getDecl(); |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 1918 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1919 | // Search for a declared property first. |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1920 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1921 | // Check whether we can reference this property. |
| 1922 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 1923 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1924 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1925 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1926 | MemberLoc, BaseExpr)); |
| 1927 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1928 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1929 | // Check protocols on qualified interfaces. |
Chris Lattner | 9baefc2 | 2008-07-21 05:20:01 +0000 | [diff] [blame] | 1930 | for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(), |
| 1931 | E = IFTy->qual_end(); I != E; ++I) |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1932 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1933 | // Check whether we can reference this property. |
| 1934 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 1935 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1936 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1937 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 1938 | MemberLoc, BaseExpr)); |
| 1939 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1940 | |
| 1941 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 1942 | // selector is implemented. |
| 1943 | |
| 1944 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 1945 | // shared with the code in ActOnInstanceMessage. |
| 1946 | |
| 1947 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 1948 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1949 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1950 | // If this reference is in an @implementation, check for 'private' methods. |
| 1951 | if (!Getter) |
Steve Naroff | f178728 | 2009-03-11 15:15:01 +0000 | [diff] [blame] | 1952 | if (ObjCImplementationDecl *ImpDecl = |
| 1953 | ObjCImplementations[IFace->getIdentifier()]) |
| 1954 | Getter = ImpDecl->getInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1955 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 1956 | // Look through local category implementations associated with the class. |
| 1957 | if (!Getter) { |
| 1958 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) { |
| 1959 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
| 1960 | Getter = ObjCCategoryImpls[i]->getInstanceMethod(Sel); |
| 1961 | } |
| 1962 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1963 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1964 | // Check if we can reference this property. |
| 1965 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 1966 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 1967 | } |
| 1968 | // If we found a getter then this may be a valid dot-reference, we |
| 1969 | // will look for the matching setter, in case it is needed. |
| 1970 | Selector SetterSel = |
| 1971 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 1972 | PP.getSelectorTable(), &Member); |
| 1973 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
| 1974 | if (!Setter) { |
| 1975 | // If this reference is in an @implementation, also check for 'private' |
| 1976 | // methods. |
Steve Naroff | f178728 | 2009-03-11 15:15:01 +0000 | [diff] [blame] | 1977 | if (ObjCImplementationDecl *ImpDecl = |
| 1978 | ObjCImplementations[IFace->getIdentifier()]) |
| 1979 | Setter = ImpDecl->getInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 1980 | } |
| 1981 | // Look through local category implementations associated with the class. |
| 1982 | if (!Setter) { |
| 1983 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 1984 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
| 1985 | Setter = ObjCCategoryImpls[i]->getInstanceMethod(SetterSel); |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 1986 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 1987 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1988 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 1989 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 1990 | return ExprError(); |
| 1991 | |
| 1992 | if (Getter || Setter) { |
| 1993 | QualType PType; |
| 1994 | |
| 1995 | if (Getter) |
| 1996 | PType = Getter->getResultType(); |
| 1997 | else { |
| 1998 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 1999 | E = Setter->param_end(); PI != E; ++PI) |
| 2000 | PType = (*PI)->getType(); |
| 2001 | } |
| 2002 | // FIXME: we must check that the setter has property type. |
| 2003 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2004 | Setter, MemberLoc, BaseExpr)); |
| 2005 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2006 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2007 | << &Member << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2008 | } |
Steve Naroff | 18bc164 | 2008-10-20 22:53:06 +0000 | [diff] [blame] | 2009 | // Handle properties on qualified "id" protocols. |
| 2010 | const ObjCQualifiedIdType *QIdTy; |
| 2011 | if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) { |
| 2012 | // Check protocols on qualified interfaces. |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2013 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2014 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel)) { |
| 2015 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2016 | // Check the use of this declaration |
| 2017 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2018 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2019 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2020 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2021 | MemberLoc, BaseExpr)); |
| 2022 | } |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2023 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2024 | // Check the use of this method. |
| 2025 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2026 | return ExprError(); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2027 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2028 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2029 | OMD->getResultType(), |
| 2030 | OMD, OpLoc, MemberLoc, |
| 2031 | NULL, 0)); |
Fariborz Jahanian | 391d895 | 2008-12-10 00:21:50 +0000 | [diff] [blame] | 2032 | } |
| 2033 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2034 | |
| 2035 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2036 | << &Member << BaseType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2037 | } |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2038 | // Handle properties on ObjC 'Class' types. |
| 2039 | if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) { |
| 2040 | // Also must look for a getter name which uses property syntax. |
| 2041 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2042 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2043 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2044 | ObjCMethodDecl *Getter; |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2045 | // FIXME: need to also look locally in the implementation. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2046 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2047 | // Check the use of this method. |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2048 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2049 | return ExprError(); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2050 | } |
Steve Naroff | 335c680 | 2009-03-11 20:12:18 +0000 | [diff] [blame] | 2051 | // If we found a getter then this may be a valid dot-reference, we |
| 2052 | // will look for the matching setter, in case it is needed. |
| 2053 | Selector SetterSel = |
| 2054 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2055 | PP.getSelectorTable(), &Member); |
| 2056 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 2057 | if (!Setter) { |
| 2058 | // If this reference is in an @implementation, also check for 'private' |
| 2059 | // methods. |
| 2060 | if (ObjCImplementationDecl *ImpDecl = |
| 2061 | ObjCImplementations[IFace->getIdentifier()]) |
| 2062 | Setter = ImpDecl->getInstanceMethod(SetterSel); |
| 2063 | } |
| 2064 | // Look through local category implementations associated with the class. |
| 2065 | if (!Setter) { |
| 2066 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) { |
| 2067 | if (ObjCCategoryImpls[i]->getClassInterface() == IFace) |
| 2068 | Setter = ObjCCategoryImpls[i]->getClassMethod(SetterSel); |
| 2069 | } |
| 2070 | } |
| 2071 | |
| 2072 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2073 | return ExprError(); |
| 2074 | |
| 2075 | if (Getter || Setter) { |
| 2076 | QualType PType; |
| 2077 | |
| 2078 | if (Getter) |
| 2079 | PType = Getter->getResultType(); |
| 2080 | else { |
| 2081 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2082 | E = Setter->param_end(); PI != E; ++PI) |
| 2083 | PType = (*PI)->getType(); |
| 2084 | } |
| 2085 | // FIXME: we must check that the setter has property type. |
| 2086 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2087 | Setter, MemberLoc, BaseExpr)); |
| 2088 | } |
| 2089 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2090 | << &Member << BaseType); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2091 | } |
| 2092 | } |
| 2093 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2094 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2095 | if (BaseType->isExtVectorType()) { |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2096 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2097 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2098 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2099 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2100 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2101 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2102 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2103 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2104 | << BaseType << BaseExpr->getSourceRange(); |
| 2105 | |
| 2106 | // If the user is trying to apply -> or . to a function or function |
| 2107 | // pointer, it's probably because they forgot parentheses to call |
| 2108 | // the function. Suggest the addition of those parentheses. |
| 2109 | if (BaseType == Context.OverloadTy || |
| 2110 | BaseType->isFunctionType() || |
| 2111 | (BaseType->isPointerType() && |
| 2112 | BaseType->getAsPointerType()->isFunctionType())) { |
| 2113 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2114 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2115 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2116 | } |
| 2117 | |
| 2118 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2119 | } |
| 2120 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2121 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2122 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2123 | /// function prototype Proto. Call is the call expression itself, and |
| 2124 | /// Fn is the function expression. For a C++ member function, this |
| 2125 | /// routine does not attempt to convert the object argument. Returns |
| 2126 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2127 | bool |
| 2128 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2129 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2130 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2131 | Expr **Args, unsigned NumArgs, |
| 2132 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2133 | // 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] | 2134 | // assignment, to the types of the corresponding parameter, ... |
| 2135 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2136 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2137 | bool Invalid = false; |
| 2138 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2139 | // If too few arguments are available (and we don't have default |
| 2140 | // arguments for the remaining parameters), don't make the call. |
| 2141 | if (NumArgs < NumArgsInProto) { |
| 2142 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2143 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2144 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2145 | // Use default arguments for missing arguments |
| 2146 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2147 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2148 | } |
| 2149 | |
| 2150 | // If too many are passed and not variadic, error on the extras and drop |
| 2151 | // them. |
| 2152 | if (NumArgs > NumArgsInProto) { |
| 2153 | if (!Proto->isVariadic()) { |
| 2154 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2155 | diag::err_typecheck_call_too_many_args) |
| 2156 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2157 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2158 | Args[NumArgs-1]->getLocEnd()); |
| 2159 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2160 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2161 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2162 | } |
| 2163 | NumArgsToCheck = NumArgsInProto; |
| 2164 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2165 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2166 | // Continue to check argument types (even if we have too few/many args). |
| 2167 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2168 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2169 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2170 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2171 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2172 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2173 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2174 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2175 | ProtoArgType, |
| 2176 | diag::err_call_incomplete_argument, |
| 2177 | Arg->getSourceRange())) |
| 2178 | return true; |
| 2179 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2180 | // Pass the argument. |
| 2181 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2182 | return true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2183 | } else |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2184 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2185 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2186 | QualType ArgType = Arg->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2187 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2188 | Call->setArg(i, Arg); |
| 2189 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2190 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2191 | // If this is a variadic call, handle args passed through "...". |
| 2192 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2193 | VariadicCallType CallType = VariadicFunction; |
| 2194 | if (Fn->getType()->isBlockPointerType()) |
| 2195 | CallType = VariadicBlock; // Block |
| 2196 | else if (isa<MemberExpr>(Fn)) |
| 2197 | CallType = VariadicMethod; |
| 2198 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2199 | // Promote the arguments (C99 6.5.2.2p7). |
| 2200 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2201 | Expr *Arg = Args[i]; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2202 | DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2203 | Call->setArg(i, Arg); |
| 2204 | } |
| 2205 | } |
| 2206 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2207 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2208 | } |
| 2209 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2210 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2211 | /// This provides the location of the left/right parens and a list of comma |
| 2212 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2213 | Action::OwningExprResult |
| 2214 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2215 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2216 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2217 | unsigned NumArgs = args.size(); |
| 2218 | Expr *Fn = static_cast<Expr *>(fn.release()); |
| 2219 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2220 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2221 | FunctionDecl *FDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2222 | DeclarationName UnqualifiedName; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2223 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2224 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2225 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2226 | // in which case we won't do any semantic analysis now. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2227 | // FIXME: Will need to cache the results of name lookup (including ADL) in Fn. |
| 2228 | bool Dependent = false; |
| 2229 | if (Fn->isTypeDependent()) |
| 2230 | Dependent = true; |
| 2231 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2232 | Dependent = true; |
| 2233 | |
| 2234 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2235 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2236 | Context.DependentTy, RParenLoc)); |
| 2237 | |
| 2238 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2239 | if (Fn->getType()->isRecordType()) |
| 2240 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2241 | CommaLocs, RParenLoc)); |
| 2242 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2243 | // Determine whether this is a call to a member function. |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2244 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) |
| 2245 | if (isa<OverloadedFunctionDecl>(MemExpr->getMemberDecl()) || |
| 2246 | isa<CXXMethodDecl>(MemExpr->getMemberDecl())) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2247 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2248 | CommaLocs, RParenLoc)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2249 | } |
| 2250 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2251 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2252 | DeclRefExpr *DRExpr = NULL; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2253 | Expr *FnExpr = Fn; |
| 2254 | bool ADL = true; |
| 2255 | while (true) { |
| 2256 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2257 | FnExpr = IcExpr->getSubExpr(); |
| 2258 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2259 | // Parentheses around a function disable ADL |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2260 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2261 | ADL = false; |
| 2262 | FnExpr = PExpr->getSubExpr(); |
| 2263 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2264 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2265 | == UnaryOperator::AddrOf) { |
| 2266 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2267 | } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) { |
| 2268 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2269 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
| 2270 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2271 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2272 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2273 | UnqualifiedName = DepName->getName(); |
| 2274 | break; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2275 | } else { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2276 | // Any kind of name that does not refer to a declaration (or |
| 2277 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2278 | ADL = false; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2279 | break; |
| 2280 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2281 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2282 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2283 | OverloadedFunctionDecl *Ovl = 0; |
| 2284 | if (DRExpr) { |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2285 | FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2286 | Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl()); |
| 2287 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2288 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2289 | if (Ovl || (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2290 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2291 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2292 | ADL = false; |
| 2293 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2294 | // We don't perform ADL in C. |
| 2295 | if (!getLangOptions().CPlusPlus) |
| 2296 | ADL = false; |
| 2297 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2298 | if (Ovl || ADL) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2299 | FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0, |
| 2300 | UnqualifiedName, LParenLoc, Args, |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2301 | NumArgs, CommaLocs, RParenLoc, ADL); |
| 2302 | if (!FDecl) |
| 2303 | return ExprError(); |
| 2304 | |
| 2305 | // Update Fn to refer to the actual function selected. |
| 2306 | Expr *NewFn = 0; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2307 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2308 | = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr)) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2309 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2310 | QDRExpr->getLocation(), |
| 2311 | false, false, |
| 2312 | QDRExpr->getQualifierRange(), |
| 2313 | QDRExpr->getQualifier()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2314 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2315 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2316 | Fn->getSourceRange().getBegin()); |
| 2317 | Fn->Destroy(Context); |
| 2318 | Fn = NewFn; |
| 2319 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2320 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2321 | |
| 2322 | // Promote the function operand. |
| 2323 | UsualUnaryConversions(Fn); |
| 2324 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2325 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2326 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2327 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2328 | Args, NumArgs, |
| 2329 | Context.BoolTy, |
| 2330 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2331 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2332 | const FunctionType *FuncT; |
| 2333 | if (!Fn->getType()->isBlockPointerType()) { |
| 2334 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2335 | // have type pointer to function". |
| 2336 | const PointerType *PT = Fn->getType()->getAsPointerType(); |
| 2337 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2338 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2339 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2340 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2341 | } else { // This is a block call. |
| 2342 | FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()-> |
| 2343 | getAsFunctionType(); |
| 2344 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2345 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2346 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2347 | << Fn->getType() << Fn->getSourceRange()); |
| 2348 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2349 | // Check for a valid return type |
| 2350 | if (!FuncT->getResultType()->isVoidType() && |
| 2351 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2352 | FuncT->getResultType(), |
| 2353 | diag::err_call_incomplete_return, |
| 2354 | TheCall->getSourceRange())) |
| 2355 | return ExprError(); |
| 2356 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2357 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2358 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2359 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2360 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2361 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2362 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2363 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2364 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2365 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2366 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2367 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2368 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2369 | Expr *Arg = Args[i]; |
| 2370 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2371 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2372 | Arg->getType(), |
| 2373 | diag::err_call_incomplete_argument, |
| 2374 | Arg->getSourceRange())) |
| 2375 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2376 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2377 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2378 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2379 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2380 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2381 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2382 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2383 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2384 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2385 | // Do special checking on direct calls to functions. |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2386 | if (FDecl) |
| 2387 | return CheckFunctionCall(FDecl, TheCall.take()); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2388 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2389 | return Owned(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2390 | } |
| 2391 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2392 | Action::OwningExprResult |
| 2393 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2394 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2395 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2396 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2397 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2398 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2399 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2400 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2401 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2402 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2403 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2404 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2405 | } else if (RequireCompleteType(LParenLoc, literalType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2406 | diag::err_typecheck_decl_incomplete_type, |
| 2407 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2408 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2409 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2410 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2411 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2412 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2413 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2414 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2415 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2416 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2417 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2418 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2419 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2420 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2421 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2422 | } |
| 2423 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2424 | Action::OwningExprResult |
| 2425 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2426 | SourceLocation RBraceLoc) { |
| 2427 | unsigned NumInit = initlist.size(); |
| 2428 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2429 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2430 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2431 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2432 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2433 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2434 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2435 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2436 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2437 | } |
| 2438 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2439 | /// CheckCastTypes - Check type constraints for casting between types. |
Daniel Dunbar | 58d5ebb | 2008-08-20 03:55:42 +0000 | [diff] [blame] | 2440 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2441 | UsualUnaryConversions(castExpr); |
| 2442 | |
| 2443 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2444 | // type needs to be scalar. |
| 2445 | if (castType->isVoidType()) { |
| 2446 | // Cast to void allows any expr type. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2447 | } else if (castType->isDependentType() || castExpr->isTypeDependent()) { |
| 2448 | // We can't check any more until template instantiation time. |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2449 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2450 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2451 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2452 | (castType->isStructureType() || castType->isUnionType())) { |
| 2453 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2454 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2455 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2456 | << castType << castExpr->getSourceRange(); |
| 2457 | } else if (castType->isUnionType()) { |
| 2458 | // GCC cast to union extension |
| 2459 | RecordDecl *RD = castType->getAsRecordType()->getDecl(); |
| 2460 | RecordDecl::field_iterator Field, FieldEnd; |
| 2461 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
| 2462 | Field != FieldEnd; ++Field) { |
| 2463 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2464 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2465 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2466 | << castExpr->getSourceRange(); |
| 2467 | break; |
| 2468 | } |
| 2469 | } |
| 2470 | if (Field == FieldEnd) |
| 2471 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2472 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2473 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2474 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2475 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2476 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2477 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2478 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2479 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2480 | return Diag(castExpr->getLocStart(), |
| 2481 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2482 | << castExpr->getType() << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2483 | } else if (castExpr->getType()->isVectorType()) { |
| 2484 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 2485 | return true; |
| 2486 | } else if (castType->isVectorType()) { |
| 2487 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 2488 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2489 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Chris Lattner | e6ee6ba | 2009-03-05 23:09:00 +0000 | [diff] [blame] | 2490 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2491 | } |
| 2492 | return false; |
| 2493 | } |
| 2494 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 2495 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2496 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2497 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2498 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2499 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2500 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2501 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2502 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2503 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2504 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2505 | } else |
| 2506 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2507 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2508 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2509 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 2510 | return false; |
| 2511 | } |
| 2512 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2513 | Action::OwningExprResult |
| 2514 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 2515 | SourceLocation RParenLoc, ExprArg Op) { |
| 2516 | assert((Ty != 0) && (Op.get() != 0) && |
| 2517 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2518 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2519 | Expr *castExpr = static_cast<Expr*>(Op.release()); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 2520 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 2521 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2522 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2523 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2524 | return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2525 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2526 | } |
| 2527 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2528 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 2529 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2530 | /// C99 6.5.15 |
| 2531 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 2532 | SourceLocation QuestionLoc) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2533 | UsualUnaryConversions(Cond); |
| 2534 | UsualUnaryConversions(LHS); |
| 2535 | UsualUnaryConversions(RHS); |
| 2536 | QualType CondTy = Cond->getType(); |
| 2537 | QualType LHSTy = LHS->getType(); |
| 2538 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 2539 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2540 | // first, check the condition. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2541 | if (!Cond->isTypeDependent()) { |
| 2542 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 2543 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 2544 | << CondTy; |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2545 | return QualType(); |
| 2546 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2547 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2548 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2549 | // Now check the two expressions. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2550 | if ((LHS && LHS->isTypeDependent()) || (RHS && RHS->isTypeDependent())) |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 2551 | return Context.DependentTy; |
| 2552 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2553 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 2554 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2555 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 2556 | UsualArithmeticConversions(LHS, RHS); |
| 2557 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 2558 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2559 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2560 | // If both operands are the same structure or union type, the result is that |
| 2561 | // type. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2562 | if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3 |
| 2563 | if (const RecordType *RHSRT = RHSTy->getAsRecordType()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2564 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2565 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2566 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2567 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2568 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2569 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2570 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2571 | // 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] | 2572 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2573 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 2574 | if (!LHSTy->isVoidType()) |
| 2575 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2576 | << RHS->getSourceRange(); |
| 2577 | if (!RHSTy->isVoidType()) |
| 2578 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 2579 | << LHS->getSourceRange(); |
| 2580 | ImpCastExprToType(LHS, Context.VoidTy); |
| 2581 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 2582 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 2583 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2584 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 2585 | // the type of the other operand." |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2586 | if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() || |
| 2587 | Context.isObjCObjectPointerType(LHSTy)) && |
| 2588 | RHS->isNullPointerConstant(Context)) { |
| 2589 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 2590 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2591 | } |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2592 | if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() || |
| 2593 | Context.isObjCObjectPointerType(RHSTy)) && |
| 2594 | LHS->isNullPointerConstant(Context)) { |
| 2595 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 2596 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 2597 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2598 | |
Chris Lattner | bd57d36 | 2008-01-06 22:50:31 +0000 | [diff] [blame] | 2599 | // Handle the case where both operands are pointers before we handle null |
| 2600 | // pointer constants in case both operands are null pointer constants. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2601 | if (const PointerType *LHSPT = LHSTy->getAsPointerType()) { // C99 6.5.15p3,6 |
| 2602 | if (const PointerType *RHSPT = RHSTy->getAsPointerType()) { |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2603 | // get the "pointed to" types |
| 2604 | QualType lhptee = LHSPT->getPointeeType(); |
| 2605 | QualType rhptee = RHSPT->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2606 | |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2607 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 2608 | if (lhptee->isVoidType() && |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2609 | rhptee->isIncompleteOrObjectType()) { |
Chris Lattner | f46699c | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 2610 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 2611 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2612 | QualType destType = Context.getPointerType(destPointee); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2613 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2614 | ImpCastExprToType(RHS, destType); // promote to void* |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2615 | return destType; |
| 2616 | } |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2617 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
Chris Lattner | f46699c | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 2618 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2619 | QualType destType = Context.getPointerType(destPointee); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2620 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 2621 | ImpCastExprToType(RHS, destType); // promote to void* |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2622 | return destType; |
| 2623 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2624 | |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2625 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
Chris Lattner | b4650c1 | 2009-02-19 04:44:58 +0000 | [diff] [blame] | 2626 | // Two identical pointer types are always compatible. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2627 | return LHSTy; |
| 2628 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2629 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2630 | QualType compositeType = LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2631 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2632 | // If either type is an Objective-C object type then check |
| 2633 | // compatibility according to Objective-C. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2634 | if (Context.isObjCObjectPointerType(LHSTy) || |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2635 | Context.isObjCObjectPointerType(RHSTy)) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2636 | // If both operands are interfaces and either operand can be |
| 2637 | // assigned to the other, use that type as the composite |
| 2638 | // type. This allows |
| 2639 | // xxx ? (A*) a : (B*) b |
| 2640 | // where B is a subclass of A. |
| 2641 | // |
| 2642 | // Additionally, as for assignment, if either type is 'id' |
| 2643 | // allow silent coercion. Finally, if the types are |
| 2644 | // incompatible then make sure to use 'id' as the composite |
| 2645 | // type so the result is acceptable for sending messages to. |
| 2646 | |
Steve Naroff | 1fd0361 | 2009-02-12 19:05:07 +0000 | [diff] [blame] | 2647 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2648 | // It could return the composite type. |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2649 | const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType(); |
| 2650 | const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType(); |
| 2651 | if (LHSIface && RHSIface && |
| 2652 | Context.canAssignObjCInterfaces(LHSIface, RHSIface)) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2653 | compositeType = LHSTy; |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2654 | } else if (LHSIface && RHSIface && |
Douglas Gregor | 7ffd0de | 2008-11-26 06:43:45 +0000 | [diff] [blame] | 2655 | Context.canAssignObjCInterfaces(RHSIface, LHSIface)) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2656 | compositeType = RHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2657 | } else if (Context.isObjCIdStructType(lhptee) || |
| 2658 | Context.isObjCIdStructType(rhptee)) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2659 | compositeType = Context.getObjCIdType(); |
| 2660 | } else { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2661 | Diag(QuestionLoc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2662 | << LHSTy << RHSTy |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2663 | << LHS->getSourceRange() << RHS->getSourceRange(); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2664 | QualType incompatTy = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2665 | ImpCastExprToType(LHS, incompatTy); |
| 2666 | ImpCastExprToType(RHS, incompatTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2667 | return incompatTy; |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2668 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2669 | } else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2670 | rhptee.getUnqualifiedType())) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2671 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 2672 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2673 | // In this situation, we assume void* type. No especially good |
| 2674 | // reason, but this is what gcc does, and we do have to pick |
| 2675 | // to get a consistent AST. |
| 2676 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2677 | ImpCastExprToType(LHS, incompatTy); |
| 2678 | ImpCastExprToType(RHS, incompatTy); |
Daniel Dunbar | a56f746 | 2008-08-26 00:41:39 +0000 | [diff] [blame] | 2679 | return incompatTy; |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2680 | } |
| 2681 | // The pointer types are compatible. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 2682 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 2683 | // differently qualified versions of compatible types, the result type is |
| 2684 | // a pointer to an appropriately qualified version of the *composite* |
| 2685 | // type. |
Eli Friedman | 5835ea2 | 2008-05-16 20:37:07 +0000 | [diff] [blame] | 2686 | // FIXME: Need to calculate the composite type. |
Eli Friedman | a541d53 | 2008-02-10 22:59:36 +0000 | [diff] [blame] | 2687 | // FIXME: Need to add qualifiers |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2688 | ImpCastExprToType(LHS, compositeType); |
| 2689 | ImpCastExprToType(RHS, compositeType); |
Eli Friedman | 5835ea2 | 2008-05-16 20:37:07 +0000 | [diff] [blame] | 2690 | return compositeType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2691 | } |
| 2692 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2693 | |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 2694 | // Selection between block pointer types is ok as long as they are the same. |
| 2695 | if (LHSTy->isBlockPointerType() && RHSTy->isBlockPointerType() && |
| 2696 | Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) |
| 2697 | return LHSTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2698 | |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2699 | // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type |
| 2700 | // evaluates to "struct objc_object *" (and is handled above when comparing |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2701 | // id with statically typed objects). |
| 2702 | if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2703 | // GCC allows qualified id and any Objective-C type to devolve to |
| 2704 | // id. Currently localizing to here until clear this should be |
| 2705 | // part of ObjCQualifiedIdTypesAreCompatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2706 | if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2707 | (LHSTy->isObjCQualifiedIdType() && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2708 | Context.isObjCObjectPointerType(RHSTy)) || |
| 2709 | (RHSTy->isObjCQualifiedIdType() && |
| 2710 | Context.isObjCObjectPointerType(LHSTy))) { |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2711 | // FIXME: This is not the correct composite type. This only |
| 2712 | // happens to work because id can more or less be used anywhere, |
| 2713 | // however this may change the type of method sends. |
| 2714 | // FIXME: gcc adds some type-checking of the arguments and emits |
| 2715 | // (confusing) incompatible comparison warnings in some |
| 2716 | // cases. Investigate. |
| 2717 | QualType compositeType = Context.getObjCIdType(); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2718 | ImpCastExprToType(LHS, compositeType); |
| 2719 | ImpCastExprToType(RHS, compositeType); |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 2720 | return compositeType; |
| 2721 | } |
| 2722 | } |
| 2723 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 2724 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 2725 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 2726 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2727 | return QualType(); |
| 2728 | } |
| 2729 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2730 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2731 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2732 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 2733 | SourceLocation ColonLoc, |
| 2734 | ExprArg Cond, ExprArg LHS, |
| 2735 | ExprArg RHS) { |
| 2736 | Expr *CondExpr = (Expr *) Cond.get(); |
| 2737 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 2738 | |
| 2739 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 2740 | // was the condition. |
| 2741 | bool isLHSNull = LHSExpr == 0; |
| 2742 | if (isLHSNull) |
| 2743 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2744 | |
| 2745 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 2746 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2747 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2748 | return ExprError(); |
| 2749 | |
| 2750 | Cond.release(); |
| 2751 | LHS.release(); |
| 2752 | RHS.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2753 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2754 | isLHSNull ? 0 : LHSExpr, |
| 2755 | RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2756 | } |
| 2757 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2758 | |
| 2759 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2760 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2761 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 2762 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 2763 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2764 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2765 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 2766 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2767 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2768 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Chris Lattner | 2dcb6bb | 2007-07-31 21:27:01 +0000 | [diff] [blame] | 2769 | lhptee = lhsType->getAsPointerType()->getPointeeType(); |
| 2770 | rhptee = rhsType->getAsPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2771 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2772 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 2773 | lhptee = Context.getCanonicalType(lhptee); |
| 2774 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2775 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2776 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2777 | |
| 2778 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 2779 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 2780 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 2781 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 2782 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2783 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2784 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2785 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 2786 | // 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] | 2787 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2788 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2789 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2790 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2791 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2792 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2793 | assert(rhptee->isFunctionType()); |
| 2794 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2795 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2796 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2797 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2798 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2799 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2800 | |
| 2801 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 2802 | assert(lhptee->isFunctionType()); |
| 2803 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 2804 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2805 | // 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] | 2806 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 2807 | lhptee = lhptee.getUnqualifiedType(); |
| 2808 | rhptee = rhptee.getUnqualifiedType(); |
| 2809 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 2810 | // Check if the pointee types are compatible ignoring the sign. |
| 2811 | // We explicitly check for char so that we catch "char" vs |
| 2812 | // "unsigned char" on systems where "char" is unsigned. |
| 2813 | if (lhptee->isCharType()) { |
| 2814 | lhptee = Context.UnsignedCharTy; |
| 2815 | } else if (lhptee->isSignedIntegerType()) { |
| 2816 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 2817 | } |
| 2818 | if (rhptee->isCharType()) { |
| 2819 | rhptee = Context.UnsignedCharTy; |
| 2820 | } else if (rhptee->isSignedIntegerType()) { |
| 2821 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 2822 | } |
| 2823 | if (lhptee == rhptee) { |
| 2824 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 2825 | // takes priority over sign incompatibility because the sign |
| 2826 | // warning can be disabled. |
| 2827 | if (ConvTy != Compatible) |
| 2828 | return ConvTy; |
| 2829 | return IncompatiblePointerSign; |
| 2830 | } |
| 2831 | // General pointer incompatibility takes priority over qualifiers. |
| 2832 | return IncompatiblePointer; |
| 2833 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2834 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2835 | } |
| 2836 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2837 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 2838 | /// block pointer types are compatible or whether a block and normal pointer |
| 2839 | /// are compatible. It is more restrict than comparing two function pointer |
| 2840 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2841 | Sema::AssignConvertType |
| 2842 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2843 | QualType rhsType) { |
| 2844 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2845 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2846 | // get the "pointed to" type (ignoring qualifiers at the top level) |
| 2847 | lhptee = lhsType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2848 | rhptee = rhsType->getAsBlockPointerType()->getPointeeType(); |
| 2849 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2850 | // make sure we operate on the canonical type |
| 2851 | lhptee = Context.getCanonicalType(lhptee); |
| 2852 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2853 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2854 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2855 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2856 | // For blocks we enforce that qualifiers are identical. |
| 2857 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 2858 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2859 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2860 | if (!Context.typesAreBlockCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2861 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2862 | return ConvTy; |
| 2863 | } |
| 2864 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2865 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 2866 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2867 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 2868 | /// |
| 2869 | /// int a, *pint; |
| 2870 | /// short *pshort; |
| 2871 | /// struct foo *pfoo; |
| 2872 | /// |
| 2873 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 2874 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 2875 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 2876 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 2877 | /// |
| 2878 | /// 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] | 2879 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2880 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2881 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2882 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2883 | // Get canonical types. We're not formatting these types, just comparing |
| 2884 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 2885 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 2886 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2887 | |
| 2888 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 2889 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 2890 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 2891 | // If the left-hand side is a reference type, then we are in a |
| 2892 | // (rare!) case where we've allowed the use of references in C, |
| 2893 | // e.g., as a parameter type in a built-in function. In this case, |
| 2894 | // just make sure that the type referenced is compatible with the |
| 2895 | // right-hand side type. The caller is responsible for adjusting |
| 2896 | // lhsType so that the resulting expression does not have reference |
| 2897 | // type. |
| 2898 | if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) { |
| 2899 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 2900 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2901 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 2902 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2903 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 2904 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) { |
| 2905 | if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false)) |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 2906 | return Compatible; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 2907 | // Relax integer conversions like we do for pointers below. |
| 2908 | if (rhsType->isIntegerType()) |
| 2909 | return IntToPointer; |
| 2910 | if (lhsType->isIntegerType()) |
| 2911 | return PointerToInt; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 2912 | return IncompatibleObjCQualifiedId; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 2913 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2914 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2915 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2916 | // For ExtVector, allow vector splats; float -> <n x float> |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2917 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) |
| 2918 | if (LV->getElementType() == rhsType) |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2919 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2920 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2921 | // 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] | 2922 | // 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] | 2923 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2924 | if (getLangOptions().LaxVectorConversions && |
| 2925 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 2926 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 2927 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2928 | } |
| 2929 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2930 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2931 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 2932 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2933 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2934 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2935 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2936 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 2937 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2938 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2939 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2940 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2941 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 2942 | if (rhsType->getAsBlockPointerType()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2943 | if (lhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 2944 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 2945 | |
| 2946 | // Treat block pointers as objects. |
| 2947 | if (getLangOptions().ObjC1 && |
| 2948 | lhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 2949 | return Compatible; |
| 2950 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2951 | return Incompatible; |
| 2952 | } |
| 2953 | |
| 2954 | if (isa<BlockPointerType>(lhsType)) { |
| 2955 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 2956 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2957 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 2958 | // Treat block pointers as objects. |
| 2959 | if (getLangOptions().ObjC1 && |
| 2960 | rhsType == Context.getCanonicalType(Context.getObjCIdType())) |
| 2961 | return Compatible; |
| 2962 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2963 | if (rhsType->isBlockPointerType()) |
| 2964 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2965 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2966 | if (const PointerType *RHSPT = rhsType->getAsPointerType()) { |
| 2967 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 2968 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2969 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2970 | return Incompatible; |
| 2971 | } |
| 2972 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2973 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2974 | // 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] | 2975 | if (lhsType == Context.BoolTy) |
| 2976 | return Compatible; |
| 2977 | |
| 2978 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 2979 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2980 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2981 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2982 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2983 | |
| 2984 | if (isa<BlockPointerType>(lhsType) && |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 2985 | rhsType->getAsPointerType()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 2986 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2987 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2988 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 2989 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 2990 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 2991 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2992 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2993 | } |
| 2994 | return Incompatible; |
| 2995 | } |
| 2996 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 2997 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 2998 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 2999 | if (getLangOptions().CPlusPlus) { |
| 3000 | if (!lhsType->isRecordType()) { |
| 3001 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3002 | // expression is implicitly converted (C++ 4) to the |
| 3003 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3004 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3005 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3006 | return Incompatible; |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 3007 | else |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3008 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3009 | } |
| 3010 | |
| 3011 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3012 | // structures. |
| 3013 | } |
| 3014 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3015 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3016 | // a null pointer constant. |
Steve Naroff | f7f52e7 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3017 | if ((lhsType->isPointerType() || |
| 3018 | lhsType->isObjCQualifiedIdType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3019 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | 9d3185e | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3020 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3021 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3022 | return Compatible; |
| 3023 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3024 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3025 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3026 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3027 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3028 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3029 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3030 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3031 | if (!lhsType->isReferenceType()) |
| 3032 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3033 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3034 | Sema::AssignConvertType result = |
| 3035 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3036 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3037 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3038 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3039 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3040 | // so that we can use references in built-in functions even in C. |
| 3041 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3042 | // does not have reference type. |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3043 | if (rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3044 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3045 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3046 | } |
| 3047 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3048 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3049 | Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) { |
| 3050 | return CheckAssignmentConstraints(lhsType, rhsType); |
| 3051 | } |
| 3052 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3053 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3054 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3055 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3056 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3057 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3058 | } |
| 3059 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3060 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3061 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3062 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3063 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3064 | QualType lhsType = |
| 3065 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3066 | QualType rhsType = |
| 3067 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3068 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3069 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3070 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3071 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3072 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3073 | // Handle the case of a vector & extvector type of the same size and element |
| 3074 | // 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] | 3075 | if (getLangOptions().LaxVectorConversions) { |
| 3076 | // FIXME: Should we warn here? |
| 3077 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3078 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3079 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3080 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3081 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3082 | } |
| 3083 | } |
| 3084 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3085 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3086 | // If the lhs is an extended vector and the rhs is a scalar of the same type |
| 3087 | // or a literal, promote the rhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3088 | if (const ExtVectorType *V = lhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3089 | QualType eltType = V->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3090 | |
| 3091 | if ((eltType->getAsBuiltinType() == rhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3092 | (eltType->isIntegerType() && isa<IntegerLiteral>(rex)) || |
| 3093 | (eltType->isFloatingType() && isa<FloatingLiteral>(rex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3094 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3095 | return lhsType; |
| 3096 | } |
| 3097 | } |
| 3098 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3099 | // 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] | 3100 | // promote the lhs to the vector type. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 3101 | if (const ExtVectorType *V = rhsType->getAsExtVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3102 | QualType eltType = V->getElementType(); |
| 3103 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3104 | if ((eltType->getAsBuiltinType() == lhsType->getAsBuiltinType()) || |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3105 | (eltType->isIntegerType() && isa<IntegerLiteral>(lex)) || |
| 3106 | (eltType->isFloatingType() && isa<FloatingLiteral>(lex))) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3107 | ImpCastExprToType(lex, rhsType); |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3108 | return rhsType; |
| 3109 | } |
| 3110 | } |
| 3111 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3112 | // You cannot convert between vector values of different size. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3113 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3114 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3115 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3116 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3117 | } |
| 3118 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3119 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3120 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3121 | { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3122 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3123 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3124 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3125 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3126 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3127 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3128 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3129 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3130 | } |
| 3131 | |
| 3132 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3133 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3134 | { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3135 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3136 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3137 | return CheckVectorOperands(Loc, lex, rex); |
| 3138 | return InvalidOperands(Loc, lex, rex); |
| 3139 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3140 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3141 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3142 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3143 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3144 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3145 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3146 | } |
| 3147 | |
| 3148 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3149 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3150 | { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3151 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3152 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3153 | if (CompLHSTy) *CompLHSTy = compType; |
| 3154 | return compType; |
| 3155 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3156 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3157 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3158 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3159 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3160 | if (lex->getType()->isArithmeticType() && |
| 3161 | rex->getType()->isArithmeticType()) { |
| 3162 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3163 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3164 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3165 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3166 | // Put any potential pointer into PExp |
| 3167 | Expr* PExp = lex, *IExp = rex; |
| 3168 | if (IExp->getType()->isPointerType()) |
| 3169 | std::swap(PExp, IExp); |
| 3170 | |
| 3171 | if (const PointerType* PTy = PExp->getType()->getAsPointerType()) { |
| 3172 | if (IExp->getType()->isIntegerType()) { |
| 3173 | // Check for arithmetic on pointers to incomplete types |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3174 | if (PTy->getPointeeType()->isVoidType()) { |
| 3175 | if (getLangOptions().CPlusPlus) { |
| 3176 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3177 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3178 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3179 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3180 | |
| 3181 | // GNU extension: arithmetic on pointer to void |
| 3182 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3183 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3184 | } else if (PTy->getPointeeType()->isFunctionType()) { |
| 3185 | if (getLangOptions().CPlusPlus) { |
| 3186 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3187 | << lex->getType() << lex->getSourceRange(); |
| 3188 | return QualType(); |
| 3189 | } |
| 3190 | |
| 3191 | // GNU extension: arithmetic on pointer to function |
| 3192 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3193 | << lex->getType() << lex->getSourceRange(); |
| 3194 | } else if (!PTy->isDependentType() && |
| 3195 | RequireCompleteType(Loc, PTy->getPointeeType(), |
| 3196 | diag::err_typecheck_arithmetic_incomplete_type, |
| 3197 | lex->getSourceRange(), SourceRange(), |
| 3198 | lex->getType())) |
| 3199 | return QualType(); |
| 3200 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3201 | if (CompLHSTy) { |
| 3202 | QualType LHSTy = lex->getType(); |
| 3203 | if (LHSTy->isPromotableIntegerType()) |
| 3204 | LHSTy = Context.IntTy; |
| 3205 | *CompLHSTy = LHSTy; |
| 3206 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3207 | return PExp->getType(); |
| 3208 | } |
| 3209 | } |
| 3210 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3211 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3212 | } |
| 3213 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3214 | // C99 6.5.6 |
| 3215 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3216 | SourceLocation Loc, QualType* CompLHSTy) { |
| 3217 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3218 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3219 | if (CompLHSTy) *CompLHSTy = compType; |
| 3220 | return compType; |
| 3221 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3222 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3223 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3224 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3225 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3226 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3227 | // Handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3228 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) { |
| 3229 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3230 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3231 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3232 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3233 | // Either ptr - int or ptr - ptr. |
| 3234 | if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) { |
Steve Naroff | 2565eef | 2008-01-29 18:58:14 +0000 | [diff] [blame] | 3235 | QualType lpointee = LHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3236 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3237 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3238 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3239 | bool ComplainAboutVoid = false; |
| 3240 | Expr *ComplainAboutFunc = 0; |
| 3241 | if (lpointee->isVoidType()) { |
| 3242 | if (getLangOptions().CPlusPlus) { |
| 3243 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3244 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3245 | return QualType(); |
| 3246 | } |
| 3247 | |
| 3248 | // GNU C extension: arithmetic on pointer to void |
| 3249 | ComplainAboutVoid = true; |
| 3250 | } else if (lpointee->isFunctionType()) { |
| 3251 | if (getLangOptions().CPlusPlus) { |
| 3252 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3253 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3254 | return QualType(); |
| 3255 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3256 | |
| 3257 | // GNU C extension: arithmetic on pointer to function |
| 3258 | ComplainAboutFunc = lex; |
| 3259 | } else if (!lpointee->isDependentType() && |
| 3260 | RequireCompleteType(Loc, lpointee, |
| 3261 | diag::err_typecheck_sub_ptr_object, |
| 3262 | lex->getSourceRange(), |
| 3263 | SourceRange(), |
| 3264 | lex->getType())) |
| 3265 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3266 | |
| 3267 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3268 | if (rex->getType()->isIntegerType()) { |
| 3269 | if (ComplainAboutVoid) |
| 3270 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3271 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3272 | if (ComplainAboutFunc) |
| 3273 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3274 | << ComplainAboutFunc->getType() |
| 3275 | << ComplainAboutFunc->getSourceRange(); |
| 3276 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3277 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3278 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3279 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3280 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3281 | // Handle pointer-pointer subtractions. |
| 3282 | if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 3283 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3284 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3285 | // RHS must be a completely-type object type. |
| 3286 | // Handle the GNU void* extension. |
| 3287 | if (rpointee->isVoidType()) { |
| 3288 | if (getLangOptions().CPlusPlus) { |
| 3289 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3290 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3291 | return QualType(); |
| 3292 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3293 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3294 | ComplainAboutVoid = true; |
| 3295 | } else if (rpointee->isFunctionType()) { |
| 3296 | if (getLangOptions().CPlusPlus) { |
| 3297 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3298 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3299 | return QualType(); |
| 3300 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3301 | |
| 3302 | // GNU extension: arithmetic on pointer to function |
| 3303 | if (!ComplainAboutFunc) |
| 3304 | ComplainAboutFunc = rex; |
| 3305 | } else if (!rpointee->isDependentType() && |
| 3306 | RequireCompleteType(Loc, rpointee, |
| 3307 | diag::err_typecheck_sub_ptr_object, |
| 3308 | rex->getSourceRange(), |
| 3309 | SourceRange(), |
| 3310 | rex->getType())) |
| 3311 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3312 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3313 | // Pointee types must be compatible. |
Eli Friedman | f1c7b48 | 2008-09-02 05:09:35 +0000 | [diff] [blame] | 3314 | if (!Context.typesAreCompatible( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3315 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
Eli Friedman | f1c7b48 | 2008-09-02 05:09:35 +0000 | [diff] [blame] | 3316 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3317 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3318 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3319 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3320 | return QualType(); |
| 3321 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3322 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3323 | if (ComplainAboutVoid) |
| 3324 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3325 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3326 | if (ComplainAboutFunc) |
| 3327 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3328 | << ComplainAboutFunc->getType() |
| 3329 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3330 | |
| 3331 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3332 | return Context.getPointerDiffType(); |
| 3333 | } |
| 3334 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3335 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3336 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3337 | } |
| 3338 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3339 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3340 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3341 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3342 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 3343 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3344 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3345 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3346 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 3347 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3348 | QualType LHSTy; |
| 3349 | if (lex->getType()->isPromotableIntegerType()) |
| 3350 | LHSTy = Context.IntTy; |
| 3351 | else |
| 3352 | LHSTy = lex->getType(); |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 3353 | if (!isCompAssign) |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3354 | ImpCastExprToType(lex, LHSTy); |
| 3355 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3356 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3357 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3358 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3359 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3360 | } |
| 3361 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3362 | // C99 6.5.8 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3363 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3364 | bool isRelational) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3365 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3366 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3367 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3368 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 3369 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 3370 | UsualArithmeticConversions(lex, rex); |
| 3371 | else { |
| 3372 | UsualUnaryConversions(lex); |
| 3373 | UsualUnaryConversions(rex); |
| 3374 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3375 | QualType lType = lex->getType(); |
| 3376 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3377 | |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 3378 | if (!lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3379 | // For non-floating point types, check for self-comparisons of the form |
| 3380 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3381 | // often indicate logic errors in the program. |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 3382 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 3383 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3384 | Expr *LHSStripped = lex->IgnoreParens(); |
| 3385 | Expr *RHSStripped = rex->IgnoreParens(); |
| 3386 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 3387 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 3388 | if (DRL->getDecl() == DRR->getDecl() && |
| 3389 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3390 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3391 | |
| 3392 | if (isa<CastExpr>(LHSStripped)) |
| 3393 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 3394 | if (isa<CastExpr>(RHSStripped)) |
| 3395 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 3396 | |
| 3397 | // Warn about comparisons against a string constant (unless the other |
| 3398 | // operand is null), the user probably wants strcmp. |
| 3399 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
| 3400 | !RHSStripped->isNullPointerConstant(Context)) |
| 3401 | Diag(Loc, diag::warn_stringcompare) << lex->getSourceRange(); |
| 3402 | else if ((isa<StringLiteral>(RHSStripped) || |
| 3403 | isa<ObjCEncodeExpr>(RHSStripped)) && |
| 3404 | !LHSStripped->isNullPointerConstant(Context)) |
| 3405 | Diag(Loc, diag::warn_stringcompare) << rex->getSourceRange(); |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 3406 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3407 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3408 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3409 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3410 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3411 | if (isRelational) { |
| 3412 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3413 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3414 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3415 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 3416 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 3417 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3418 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 3419 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3420 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3421 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3422 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3423 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3424 | |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3425 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 3426 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3427 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 3428 | // All of the following pointer related warnings are GCC extensions, except |
| 3429 | // when handling null pointer constants. One day, we can consider making them |
| 3430 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 3431 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3432 | QualType LCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3433 | Context.getCanonicalType(lType->getAsPointerType()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3434 | QualType RCanPointeeTy = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3435 | Context.getCanonicalType(rType->getAsPointerType()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3436 | |
Steve Naroff | 66296cb | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 3437 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 3438 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 3439 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Eli Friedman | 3d815e7 | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 3440 | RCanPointeeTy.getUnqualifiedType()) && |
Steve Naroff | 389bf46 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 3441 | !Context.areComparableObjCPointerTypes(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3442 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3443 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3444 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3445 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3446 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3447 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3448 | // Handle block pointer types. |
| 3449 | if (lType->isBlockPointerType() && rType->isBlockPointerType()) { |
| 3450 | QualType lpointee = lType->getAsBlockPointerType()->getPointeeType(); |
| 3451 | QualType rpointee = rType->getAsBlockPointerType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3452 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3453 | if (!LHSIsNull && !RHSIsNull && |
| 3454 | !Context.typesAreBlockCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3455 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3456 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3457 | } |
| 3458 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3459 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3460 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3461 | // Allow block pointers to be compared with null pointer constants. |
| 3462 | if ((lType->isBlockPointerType() && rType->isPointerType()) || |
| 3463 | (lType->isPointerType() && rType->isBlockPointerType())) { |
| 3464 | if (!LHSIsNull && !RHSIsNull) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3465 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3466 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3467 | } |
| 3468 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3469 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 3470 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3471 | |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3472 | if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3473 | if (lType->isPointerType() || rType->isPointerType()) { |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3474 | const PointerType *LPT = lType->getAsPointerType(); |
| 3475 | const PointerType *RPT = rType->getAsPointerType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3476 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3477 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3478 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3479 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3480 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 3481 | if (!LPtrToVoid && !RPtrToVoid && |
| 3482 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3483 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3484 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3485 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3486 | return ResultTy; |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 3487 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 3488 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3489 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 3490 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3491 | if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) { |
| 3492 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3493 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3494 | } else { |
| 3495 | if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3496 | Diag(Loc, diag::warn_incompatible_qualified_id_operands) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3497 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 3498 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3499 | return ResultTy; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 3500 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3501 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 3502 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3503 | if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3504 | rType->isIntegerType()) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3505 | if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3506 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3507 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3508 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3509 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 3510 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3511 | if (lType->isIntegerType() && |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 3512 | (rType->isPointerType() || rType->isObjCQualifiedIdType())) { |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 3513 | if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3514 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3515 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3516 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3517 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3518 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3519 | // Handle block pointers. |
| 3520 | if (lType->isBlockPointerType() && rType->isIntegerType()) { |
| 3521 | if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3522 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3523 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3524 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3525 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3526 | } |
| 3527 | if (lType->isIntegerType() && rType->isBlockPointerType()) { |
| 3528 | if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3529 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3530 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3531 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 3532 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 3533 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3534 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3535 | } |
| 3536 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3537 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3538 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3539 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 3540 | /// types. |
| 3541 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3542 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3543 | bool isRelational) { |
| 3544 | // Check to make sure we're operating on vectors of the same type and width, |
| 3545 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3546 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3547 | if (vType.isNull()) |
| 3548 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3549 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3550 | QualType lType = lex->getType(); |
| 3551 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3552 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3553 | // For non-floating point types, check for self-comparisons of the form |
| 3554 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 3555 | // often indicate logic errors in the program. |
| 3556 | if (!lType->isFloatingType()) { |
| 3557 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 3558 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 3559 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3560 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3561 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3562 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3563 | // Check for comparisons of floating point operands using != and ==. |
| 3564 | if (!isRelational && lType->isFloatingType()) { |
| 3565 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3566 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3567 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3568 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3569 | // Return the type for the comparison, which is the same as vector type for |
| 3570 | // integer vectors, or an integer type of identical size and number of |
| 3571 | // elements for floating point vectors. |
| 3572 | if (lType->isIntegerType()) |
| 3573 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3574 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3575 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3576 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3577 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3578 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3579 | else if (TypeSize == Context.getTypeSize(Context.LongTy)) |
| 3580 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 3581 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3582 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 3583 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3584 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 3585 | } |
| 3586 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3587 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3588 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3589 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 3590 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3591 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3592 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3593 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3594 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3595 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3596 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3597 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3598 | } |
| 3599 | |
| 3600 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3601 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3602 | { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3603 | UsualUnaryConversions(lex); |
| 3604 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3605 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 3606 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3607 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3608 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3609 | } |
| 3610 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3611 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 3612 | /// is a read-only property; return true if so. A readonly property expression |
| 3613 | /// depends on various declarations and thus must be treated specially. |
| 3614 | /// |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3615 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3616 | { |
| 3617 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 3618 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 3619 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 3620 | QualType BaseType = PropExpr->getBase()->getType(); |
| 3621 | if (const PointerType *PTy = BaseType->getAsPointerType()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3622 | if (const ObjCInterfaceType *IFTy = |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3623 | PTy->getPointeeType()->getAsObjCInterfaceType()) |
| 3624 | if (ObjCInterfaceDecl *IFace = IFTy->getDecl()) |
| 3625 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 3626 | return true; |
| 3627 | } |
| 3628 | } |
| 3629 | return false; |
| 3630 | } |
| 3631 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3632 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 3633 | /// emit an error and return true. If so, return false. |
| 3634 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 3635 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context); |
| 3636 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 3637 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3638 | if (IsLV == Expr::MLV_Valid) |
| 3639 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3640 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3641 | unsigned Diag = 0; |
| 3642 | bool NeedType = false; |
| 3643 | switch (IsLV) { // C99 6.5.16p2 |
| 3644 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 3645 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3646 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3647 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 3648 | NeedType = true; |
| 3649 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3650 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3651 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 3652 | NeedType = true; |
| 3653 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 3654 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3655 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 3656 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3657 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3658 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 3659 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3660 | case Expr::MLV_IncompleteType: |
| 3661 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 3662 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3663 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 3664 | E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3665 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3666 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 3667 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 3668 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3669 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 3670 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 3671 | case Expr::MLV_ReadonlyProperty: |
| 3672 | Diag = diag::error_readonly_property_assignment; |
| 3673 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 3674 | case Expr::MLV_NoSetterProperty: |
| 3675 | Diag = diag::error_nosetter_property_assignment; |
| 3676 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3677 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 3678 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3679 | if (NeedType) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3680 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange(); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3681 | else |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 3682 | S.Diag(Loc, Diag) << E->getSourceRange(); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3683 | return true; |
| 3684 | } |
| 3685 | |
| 3686 | |
| 3687 | |
| 3688 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3689 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 3690 | SourceLocation Loc, |
| 3691 | QualType CompoundType) { |
| 3692 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 3693 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 3694 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3695 | |
| 3696 | QualType LHSType = LHS->getType(); |
| 3697 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3698 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3699 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3700 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3701 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3702 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 3703 | // Special case of NSObject attributes on c-style pointer types. |
| 3704 | if (ConvTy == IncompatiblePointer && |
| 3705 | ((Context.isObjCNSObjectType(LHSType) && |
| 3706 | Context.isObjCObjectPointerType(RHSType)) || |
| 3707 | (Context.isObjCNSObjectType(RHSType) && |
| 3708 | Context.isObjCObjectPointerType(LHSType)))) |
| 3709 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3710 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3711 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 3712 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 3713 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3714 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3715 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 3716 | RHSCheck = ICE->getSubExpr(); |
| 3717 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 3718 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 3719 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3720 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3721 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 3722 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 3723 | // And there is a space or other character before the subexpr of the |
| 3724 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 3725 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 3726 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3727 | Diag(Loc, diag::warn_not_compound_assign) |
| 3728 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 3729 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 3730 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3731 | } |
| 3732 | } else { |
| 3733 | // Compound assignment "x += y" |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3734 | ConvTy = CheckCompoundAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 3735 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3736 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3737 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 3738 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3739 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3740 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3741 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 3742 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3743 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3744 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 3745 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 3746 | // C++ 5.17p1: the type of the assignment expression is that of its left |
| 3747 | // oprdu. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3748 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3749 | } |
| 3750 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3751 | // C99 6.5.17 |
| 3752 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 3753 | // 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] | 3754 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3755 | |
| 3756 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 3757 | // incomplete in C++). |
| 3758 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3759 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3760 | } |
| 3761 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3762 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 3763 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 3764 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 3765 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3766 | if (Op->isTypeDependent()) |
| 3767 | return Context.DependentTy; |
| 3768 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3769 | QualType ResType = Op->getType(); |
| 3770 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3771 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 3772 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 3773 | // Decrement of bool is not allowed. |
| 3774 | if (!isInc) { |
| 3775 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 3776 | return QualType(); |
| 3777 | } |
| 3778 | // Increment of bool sets it to true, but is deprecated. |
| 3779 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 3780 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3781 | // OK! |
| 3782 | } else if (const PointerType *PT = ResType->getAsPointerType()) { |
| 3783 | // C99 6.5.2.4p2, 6.5.6p2 |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 3784 | if (PT->getPointeeType()->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3785 | if (getLangOptions().CPlusPlus) { |
| 3786 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 3787 | << Op->getSourceRange(); |
| 3788 | return QualType(); |
| 3789 | } |
| 3790 | |
| 3791 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3792 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3793 | } else if (PT->getPointeeType()->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3794 | if (getLangOptions().CPlusPlus) { |
| 3795 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 3796 | << Op->getType() << Op->getSourceRange(); |
| 3797 | return QualType(); |
| 3798 | } |
| 3799 | |
| 3800 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3801 | << ResType << Op->getSourceRange(); |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 3802 | } else if (RequireCompleteType(OpLoc, PT->getPointeeType(), |
| 3803 | diag::err_typecheck_arithmetic_incomplete_type, |
| 3804 | Op->getSourceRange(), SourceRange(), |
| 3805 | ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3806 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3807 | } else if (ResType->isComplexType()) { |
| 3808 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 3809 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3810 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3811 | } else { |
| 3812 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3813 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3814 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3815 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3816 | // 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] | 3817 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3818 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3819 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 3820 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3821 | } |
| 3822 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 3823 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3824 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3825 | /// where the declaration is needed for type checking. We only need to |
| 3826 | /// handle cases when the expression references a function designator |
| 3827 | /// or is an lvalue. Here are some examples: |
| 3828 | /// - &(x) => x |
| 3829 | /// - &*****f => f for f a function designator. |
| 3830 | /// - &s.xx => s |
| 3831 | /// - &s.zz[1].yy -> s, if zz is an array |
| 3832 | /// - *(x + 1) -> x, if x is an array |
| 3833 | /// - &"123"[2] -> 0 |
| 3834 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3835 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3836 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3837 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 3838 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3839 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3840 | case Stmt::MemberExprClass: |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3841 | // Fields cannot be declared with a 'register' storage class. |
| 3842 | // &X->f is always ok, even if X is declared register. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3843 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3844 | return 0; |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3845 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 3846 | case Stmt::ArraySubscriptExprClass: { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3847 | // &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] | 3848 | |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3849 | NamedDecl *D = getPrimaryDecl(cast<ArraySubscriptExpr>(E)->getBase()); |
Daniel Dunbar | 48d04ae | 2008-10-21 21:22:32 +0000 | [diff] [blame] | 3850 | ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D); |
Anders Carlsson | f2a4b84 | 2008-02-01 16:01:31 +0000 | [diff] [blame] | 3851 | if (!VD || VD->getType()->isPointerType()) |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 3852 | return 0; |
| 3853 | else |
| 3854 | return VD; |
| 3855 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3856 | case Stmt::UnaryOperatorClass: { |
| 3857 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3858 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3859 | switch(UO->getOpcode()) { |
| 3860 | case UnaryOperator::Deref: { |
| 3861 | // *(X + 1) refers to X if X is not a pointer. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3862 | if (NamedDecl *D = getPrimaryDecl(UO->getSubExpr())) { |
| 3863 | ValueDecl *VD = dyn_cast<ValueDecl>(D); |
| 3864 | if (!VD || VD->getType()->isPointerType()) |
| 3865 | return 0; |
| 3866 | return VD; |
| 3867 | } |
| 3868 | return 0; |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 3869 | } |
| 3870 | case UnaryOperator::Real: |
| 3871 | case UnaryOperator::Imag: |
| 3872 | case UnaryOperator::Extension: |
| 3873 | return getPrimaryDecl(UO->getSubExpr()); |
| 3874 | default: |
| 3875 | return 0; |
| 3876 | } |
| 3877 | } |
| 3878 | case Stmt::BinaryOperatorClass: { |
| 3879 | BinaryOperator *BO = cast<BinaryOperator>(E); |
| 3880 | |
| 3881 | // Handle cases involving pointer arithmetic. The result of an |
| 3882 | // Assign or AddAssign is not an lvalue so they can be ignored. |
| 3883 | |
| 3884 | // (x + n) or (n + x) => x |
| 3885 | if (BO->getOpcode() == BinaryOperator::Add) { |
| 3886 | if (BO->getLHS()->getType()->isPointerType()) { |
| 3887 | return getPrimaryDecl(BO->getLHS()); |
| 3888 | } else if (BO->getRHS()->getType()->isPointerType()) { |
| 3889 | return getPrimaryDecl(BO->getRHS()); |
| 3890 | } |
| 3891 | } |
| 3892 | |
| 3893 | return 0; |
| 3894 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3895 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3896 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3897 | case Stmt::ImplicitCastExprClass: |
| 3898 | // &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] | 3899 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3900 | default: |
| 3901 | return 0; |
| 3902 | } |
| 3903 | } |
| 3904 | |
| 3905 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3906 | /// 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] | 3907 | /// 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] | 3908 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3909 | /// 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] | 3910 | /// 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] | 3911 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3912 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 3913 | if (op->isTypeDependent()) |
| 3914 | return Context.DependentTy; |
| 3915 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 3916 | if (getLangOptions().C99) { |
| 3917 | // Implement C99-only parts of addressof rules. |
| 3918 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 3919 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 3920 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 3921 | // (assuming the deref expression is valid). |
| 3922 | return uOp->getSubExpr()->getType(); |
| 3923 | } |
| 3924 | // Technically, there should be a check for array subscript |
| 3925 | // expressions here, but the result of one is always an lvalue anyway. |
| 3926 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 3927 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 3928 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 3929 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3930 | if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1 |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 3931 | if (!dcl || !isa<FunctionDecl>(dcl)) {// allow function designators |
| 3932 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 3933 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 3934 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3935 | return QualType(); |
| 3936 | } |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 3937 | } 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] | 3938 | if (FieldDecl *Field = dyn_cast<FieldDecl>(MemExpr->getMemberDecl())) { |
| 3939 | if (Field->isBitField()) { |
| 3940 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 3941 | << "bit-field" << op->getSourceRange(); |
| 3942 | return QualType(); |
| 3943 | } |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 3944 | } |
| 3945 | // Check for Apple extension for accessing vector components. |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 3946 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 3947 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3948 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 3949 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 3950 | return QualType(); |
| 3951 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3952 | // 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] | 3953 | // with the register storage-class specifier. |
| 3954 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 3955 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 3956 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 3957 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3958 | return QualType(); |
| 3959 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 3960 | } else if (isa<OverloadedFunctionDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 3961 | return Context.OverloadTy; |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 3962 | } else if (isa<FieldDecl>(dcl)) { |
| 3963 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 3964 | // Could be a pointer to member, though, if there is an explicit |
| 3965 | // scope qualifier for the class. |
| 3966 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 3967 | DeclContext *Ctx = dcl->getDeclContext(); |
| 3968 | if (Ctx && Ctx->isRecord()) |
| 3969 | return Context.getMemberPointerType(op->getType(), |
| 3970 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 3971 | } |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 3972 | } else if (isa<FunctionDecl>(dcl)) { |
| 3973 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 3974 | // As above. |
| 3975 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 3976 | DeclContext *Ctx = dcl->getDeclContext(); |
| 3977 | if (Ctx && Ctx->isRecord()) |
| 3978 | return Context.getMemberPointerType(op->getType(), |
| 3979 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
| 3980 | } |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 3981 | } |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 3982 | else |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3983 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3984 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 3985 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3986 | // If the operand has type "type", the result has type "pointer to type". |
| 3987 | return Context.getPointerType(op->getType()); |
| 3988 | } |
| 3989 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3990 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3991 | if (Op->isTypeDependent()) |
| 3992 | return Context.DependentTy; |
| 3993 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3994 | UsualUnaryConversions(Op); |
| 3995 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3996 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3997 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 3998 | // incomplete type or void. It would be possible to warn about dereferencing |
| 3999 | // a void pointer, but it's completely well-defined, and such a warning is |
| 4000 | // unlikely to catch any mistakes. |
| 4001 | if (const PointerType *PT = Ty->getAsPointerType()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4002 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4003 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4004 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4005 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4006 | return QualType(); |
| 4007 | } |
| 4008 | |
| 4009 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 4010 | tok::TokenKind Kind) { |
| 4011 | BinaryOperator::Opcode Opc; |
| 4012 | switch (Kind) { |
| 4013 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4014 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 4015 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4016 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 4017 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 4018 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 4019 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 4020 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 4021 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 4022 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 4023 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4024 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4025 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4026 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4027 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4028 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4029 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4030 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4031 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4032 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4033 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4034 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4035 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4036 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4037 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4038 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4039 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4040 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4041 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4042 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4043 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4044 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4045 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4046 | } |
| 4047 | return Opc; |
| 4048 | } |
| 4049 | |
| 4050 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4051 | tok::TokenKind Kind) { |
| 4052 | UnaryOperator::Opcode Opc; |
| 4053 | switch (Kind) { |
| 4054 | default: assert(0 && "Unknown unary op!"); |
| 4055 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4056 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4057 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4058 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4059 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4060 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4061 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4062 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4063 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4064 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4065 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4066 | } |
| 4067 | return Opc; |
| 4068 | } |
| 4069 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4070 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4071 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4072 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4073 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4074 | unsigned Op, |
| 4075 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4076 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4077 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4078 | // The following two variables are used for compound assignment operators |
| 4079 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 4080 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4081 | |
| 4082 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4083 | case BinaryOperator::Assign: |
| 4084 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4085 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4086 | case BinaryOperator::PtrMemD: |
| 4087 | case BinaryOperator::PtrMemI: |
| 4088 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4089 | Opc == BinaryOperator::PtrMemI); |
| 4090 | break; |
| 4091 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4092 | case BinaryOperator::Div: |
| 4093 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4094 | break; |
| 4095 | case BinaryOperator::Rem: |
| 4096 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4097 | break; |
| 4098 | case BinaryOperator::Add: |
| 4099 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4100 | break; |
| 4101 | case BinaryOperator::Sub: |
| 4102 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4103 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4104 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4105 | case BinaryOperator::Shr: |
| 4106 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4107 | break; |
| 4108 | case BinaryOperator::LE: |
| 4109 | case BinaryOperator::LT: |
| 4110 | case BinaryOperator::GE: |
| 4111 | case BinaryOperator::GT: |
| 4112 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, true); |
| 4113 | break; |
| 4114 | case BinaryOperator::EQ: |
| 4115 | case BinaryOperator::NE: |
| 4116 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, false); |
| 4117 | break; |
| 4118 | case BinaryOperator::And: |
| 4119 | case BinaryOperator::Xor: |
| 4120 | case BinaryOperator::Or: |
| 4121 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4122 | break; |
| 4123 | case BinaryOperator::LAnd: |
| 4124 | case BinaryOperator::LOr: |
| 4125 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4126 | break; |
| 4127 | case BinaryOperator::MulAssign: |
| 4128 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4129 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4130 | CompLHSTy = CompResultTy; |
| 4131 | if (!CompResultTy.isNull()) |
| 4132 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4133 | break; |
| 4134 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4135 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4136 | CompLHSTy = CompResultTy; |
| 4137 | if (!CompResultTy.isNull()) |
| 4138 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4139 | break; |
| 4140 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4141 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4142 | if (!CompResultTy.isNull()) |
| 4143 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4144 | break; |
| 4145 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4146 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4147 | if (!CompResultTy.isNull()) |
| 4148 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4149 | break; |
| 4150 | case BinaryOperator::ShlAssign: |
| 4151 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4152 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4153 | CompLHSTy = CompResultTy; |
| 4154 | if (!CompResultTy.isNull()) |
| 4155 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4156 | break; |
| 4157 | case BinaryOperator::AndAssign: |
| 4158 | case BinaryOperator::XorAssign: |
| 4159 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4160 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 4161 | CompLHSTy = CompResultTy; |
| 4162 | if (!CompResultTy.isNull()) |
| 4163 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4164 | break; |
| 4165 | case BinaryOperator::Comma: |
| 4166 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 4167 | break; |
| 4168 | } |
| 4169 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4170 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4171 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4172 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 4173 | else |
| 4174 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4175 | CompLHSTy, CompResultTy, |
| 4176 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4177 | } |
| 4178 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4179 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4180 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 4181 | tok::TokenKind Kind, |
| 4182 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4183 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4184 | Expr *lhs = (Expr *)LHS.release(), *rhs = (Expr*)RHS.release(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4185 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4186 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 4187 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4188 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4189 | if (getLangOptions().CPlusPlus && |
| 4190 | (lhs->getType()->isOverloadableType() || |
| 4191 | rhs->getType()->isOverloadableType())) { |
| 4192 | // Find all of the overloaded operators visible from this |
| 4193 | // point. We perform both an operator-name lookup from the local |
| 4194 | // scope and an argument-dependent lookup based on the types of |
| 4195 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 4196 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4197 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 4198 | if (OverOp != OO_None) { |
| 4199 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 4200 | Functions); |
| 4201 | Expr *Args[2] = { lhs, rhs }; |
| 4202 | DeclarationName OpName |
| 4203 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4204 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 4205 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4206 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4207 | // Build the (potentially-overloaded, potentially-dependent) |
| 4208 | // binary operation. |
| 4209 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4210 | } |
| 4211 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4212 | // Build a built-in binary operation. |
| 4213 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4214 | } |
| 4215 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4216 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 4217 | unsigned OpcIn, |
| 4218 | ExprArg InputArg) { |
| 4219 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4220 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4221 | // FIXME: Input is modified below, but InputArg is not updated |
| 4222 | // appropriately. |
| 4223 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4224 | QualType resultType; |
| 4225 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4226 | case UnaryOperator::PostInc: |
| 4227 | case UnaryOperator::PostDec: |
| 4228 | case UnaryOperator::OffsetOf: |
| 4229 | assert(false && "Invalid unary operator"); |
| 4230 | break; |
| 4231 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4232 | case UnaryOperator::PreInc: |
| 4233 | case UnaryOperator::PreDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4234 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
| 4235 | Opc == UnaryOperator::PreInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4236 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4237 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4238 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 4239 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4240 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 4241 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4242 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 4243 | break; |
| 4244 | case UnaryOperator::Plus: |
| 4245 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4246 | UsualUnaryConversions(Input); |
| 4247 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4248 | if (resultType->isDependentType()) |
| 4249 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 4250 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 4251 | break; |
| 4252 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 4253 | resultType->isEnumeralType()) |
| 4254 | break; |
| 4255 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 4256 | Opc == UnaryOperator::Plus && |
| 4257 | resultType->isPointerType()) |
| 4258 | break; |
| 4259 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4260 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4261 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4262 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4263 | UsualUnaryConversions(Input); |
| 4264 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4265 | if (resultType->isDependentType()) |
| 4266 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4267 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 4268 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 4269 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4270 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4271 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 4272 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4273 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4274 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4275 | break; |
| 4276 | case UnaryOperator::LNot: // logical negation |
| 4277 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4278 | DefaultFunctionArrayConversion(Input); |
| 4279 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4280 | if (resultType->isDependentType()) |
| 4281 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4282 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4283 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 4284 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4285 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4286 | // In C++, it's bool. C++ 5.3.1p8 |
| 4287 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4288 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4289 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4290 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 4291 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 4292 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4293 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4294 | resultType = Input->getType(); |
| 4295 | break; |
| 4296 | } |
| 4297 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4298 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4299 | |
| 4300 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4301 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4302 | } |
| 4303 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 4304 | // Unary Operators. 'Tok' is the token for the operator. |
| 4305 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 4306 | tok::TokenKind Op, ExprArg input) { |
| 4307 | Expr *Input = (Expr*)input.get(); |
| 4308 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 4309 | |
| 4310 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 4311 | // Find all of the overloaded operators visible from this |
| 4312 | // point. We perform both an operator-name lookup from the local |
| 4313 | // scope and an argument-dependent lookup based on the types of |
| 4314 | // the arguments. |
| 4315 | FunctionSet Functions; |
| 4316 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 4317 | if (OverOp != OO_None) { |
| 4318 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 4319 | Functions); |
| 4320 | DeclarationName OpName |
| 4321 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 4322 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 4323 | } |
| 4324 | |
| 4325 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 4326 | } |
| 4327 | |
| 4328 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 4329 | } |
| 4330 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 4331 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4332 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 4333 | SourceLocation LabLoc, |
| 4334 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4335 | // Look up the record for this label identifier. |
Steve Naroff | d8eb456 | 2009-03-13 16:03:38 +0000 | [diff] [blame] | 4336 | LabelStmt *&LabelDecl = CurBlock ? CurBlock->LabelMap[LabelII] : |
| 4337 | LabelMap[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4338 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 4339 | // If we haven't seen this label yet, create a forward reference. It |
| 4340 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 4341 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4342 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4343 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4344 | // 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] | 4345 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 4346 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4347 | } |
| 4348 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4349 | Sema::OwningExprResult |
| 4350 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 4351 | SourceLocation RPLoc) { // "({..})" |
| 4352 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4353 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 4354 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 4355 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4356 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
| 4357 | if (isFileScope) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4358 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 4359 | } |
| 4360 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4361 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 4362 | // example, it is not possible to goto into a stmt expression apparently. |
| 4363 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4364 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4365 | // FIXME: the last statement in the compount stmt has its value used. We |
| 4366 | // should not warn about it being unused. |
| 4367 | |
| 4368 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 4369 | // as the type of the stmtexpr. |
| 4370 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4371 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4372 | if (!Compound->body_empty()) { |
| 4373 | Stmt *LastStmt = Compound->body_back(); |
| 4374 | // If LastStmt is a label, skip down through into the body. |
| 4375 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 4376 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4377 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4378 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4379 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 4380 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4381 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4382 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 4383 | // expressions are not lvalues. |
| 4384 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4385 | substmt.release(); |
| 4386 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 4387 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4388 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4389 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 4390 | SourceLocation BuiltinLoc, |
| 4391 | SourceLocation TypeLoc, |
| 4392 | TypeTy *argty, |
| 4393 | OffsetOfComponent *CompPtr, |
| 4394 | unsigned NumComponents, |
| 4395 | SourceLocation RPLoc) { |
| 4396 | // FIXME: This function leaks all expressions in the offset components on |
| 4397 | // error. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4398 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 4399 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4400 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4401 | bool Dependent = ArgTy->isDependentType(); |
| 4402 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4403 | // We must have at least one component that refers to the type, and the first |
| 4404 | // one is known to be a field designator. Verify that the ArgTy represents |
| 4405 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4406 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4407 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4408 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4409 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 4410 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 4411 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4412 | // Otherwise, create a null pointer as the base, and iteratively process |
| 4413 | // the offsetof designators. |
| 4414 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 4415 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4416 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4417 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 4418 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4419 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 4420 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4421 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 4422 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 4423 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4424 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 4425 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4426 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4427 | if (!Dependent) { |
| 4428 | // FIXME: Dependent case loses a lot of information here. And probably |
| 4429 | // leaks like a sieve. |
| 4430 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 4431 | const OffsetOfComponent &OC = CompPtr[i]; |
| 4432 | if (OC.isBrackets) { |
| 4433 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 4434 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 4435 | if (!AT) { |
| 4436 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4437 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 4438 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4439 | } |
| 4440 | |
| 4441 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 4442 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 4443 | // Promote the array so it looks more like a normal array subscript |
| 4444 | // expression. |
| 4445 | DefaultFunctionArrayConversion(Res); |
| 4446 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4447 | // C99 6.5.2.1p1 |
| 4448 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4449 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4450 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4451 | return ExprError(Diag(Idx->getLocStart(), |
| 4452 | diag::err_typecheck_subscript) |
| 4453 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4454 | |
| 4455 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 4456 | OC.LocEnd); |
| 4457 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4458 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4459 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4460 | const RecordType *RC = Res->getType()->getAsRecordType(); |
| 4461 | if (!RC) { |
| 4462 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4463 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 4464 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4465 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 4466 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4467 | // Get the decl corresponding to this. |
| 4468 | RecordDecl *RD = RC->getDecl(); |
| 4469 | FieldDecl *MemberDecl |
| 4470 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 4471 | LookupMemberName) |
| 4472 | .getAsDecl()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4473 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4474 | if (!MemberDecl) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4475 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 4476 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4477 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4478 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 4479 | // FIXME: Verify that MemberDecl isn't a bitfield. |
| 4480 | // MemberDecl->getType() doesn't get the right qualifiers, but it doesn't |
| 4481 | // matter here. |
| 4482 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 4483 | MemberDecl->getType().getNonReferenceType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4484 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4485 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4486 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4487 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 4488 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4489 | } |
| 4490 | |
| 4491 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4492 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 4493 | TypeTy *arg1,TypeTy *arg2, |
| 4494 | SourceLocation RPLoc) { |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4495 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 4496 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4497 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4498 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4499 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4500 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 4501 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 4502 | } |
| 4503 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4504 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 4505 | ExprArg cond, |
| 4506 | ExprArg expr1, ExprArg expr2, |
| 4507 | SourceLocation RPLoc) { |
| 4508 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 4509 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 4510 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4511 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4512 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 4513 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4514 | QualType resType; |
| 4515 | if (CondExpr->isValueDependent()) { |
| 4516 | resType = Context.DependentTy; |
| 4517 | } else { |
| 4518 | // The conditional expression is required to be a constant expression. |
| 4519 | llvm::APSInt condEval(32); |
| 4520 | SourceLocation ExpLoc; |
| 4521 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4522 | return ExprError(Diag(ExpLoc, |
| 4523 | diag::err_typecheck_choose_expr_requires_constant) |
| 4524 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4525 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4526 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 4527 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 4528 | } |
| 4529 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4530 | cond.release(); expr1.release(); expr2.release(); |
| 4531 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 4532 | resType, RPLoc)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 4533 | } |
| 4534 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4535 | //===----------------------------------------------------------------------===// |
| 4536 | // Clang Extensions. |
| 4537 | //===----------------------------------------------------------------------===// |
| 4538 | |
| 4539 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4540 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4541 | // Analyze block parameters. |
| 4542 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4543 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4544 | // Add BSI to CurBlock. |
| 4545 | BSI->PrevBlockInfo = CurBlock; |
| 4546 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4547 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4548 | BSI->ReturnType = 0; |
| 4549 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 4550 | BSI->hasBlockDeclRefExprs = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4551 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4552 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 4553 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4554 | } |
| 4555 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4556 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
| 4557 | assert(ParamInfo.getIdentifier() == 0 && "block-id should have no identifier!"); |
| 4558 | |
| 4559 | if (ParamInfo.getNumTypeObjects() == 0 |
| 4560 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
| 4561 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 4562 | |
| 4563 | // The type is entirely optional as well, if none, use DependentTy. |
| 4564 | if (T.isNull()) |
| 4565 | T = Context.DependentTy; |
| 4566 | |
| 4567 | // The parameter list is optional, if there was none, assume (). |
| 4568 | if (!T->isFunctionType()) |
| 4569 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 4570 | |
| 4571 | CurBlock->hasPrototype = true; |
| 4572 | CurBlock->isVariadic = false; |
| 4573 | Type *RetTy = T.getTypePtr()->getAsFunctionType()->getResultType() |
| 4574 | .getTypePtr(); |
| 4575 | |
| 4576 | if (!RetTy->isDependentType()) |
| 4577 | CurBlock->ReturnType = RetTy; |
| 4578 | return; |
| 4579 | } |
| 4580 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4581 | // Analyze arguments to block. |
| 4582 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 4583 | "Not a function declarator!"); |
| 4584 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4585 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4586 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 4587 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4588 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4589 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 4590 | // no arguments, not a function that takes a single void argument. |
| 4591 | if (FTI.hasPrototype && |
| 4592 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
| 4593 | (!((ParmVarDecl *)FTI.ArgInfo[0].Param)->getType().getCVRQualifiers() && |
| 4594 | ((ParmVarDecl *)FTI.ArgInfo[0].Param)->getType()->isVoidType())) { |
| 4595 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4596 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4597 | } else if (FTI.hasPrototype) { |
| 4598 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4599 | CurBlock->Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param); |
| 4600 | CurBlock->isVariadic = FTI.isVariadic; |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 4601 | QualType T = GetTypeForDeclarator (ParamInfo, CurScope); |
| 4602 | |
| 4603 | Type* RetTy = T.getTypePtr()->getAsFunctionType()->getResultType() |
| 4604 | .getTypePtr(); |
| 4605 | |
| 4606 | if (!RetTy->isDependentType()) |
| 4607 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4608 | } |
Steve Naroff | e78b809 | 2009-03-13 16:56:44 +0000 | [diff] [blame] | 4609 | CurBlock->TheDecl->setParams(Context, &CurBlock->Params[0], |
| 4610 | CurBlock->Params.size()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4611 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4612 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 4613 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 4614 | // If this has an identifier, add it to the scope stack. |
| 4615 | if ((*AI)->getIdentifier()) |
| 4616 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4617 | } |
| 4618 | |
| 4619 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 4620 | /// is invoked to pop the information about the block from the action impl. |
| 4621 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 4622 | // Ensure that CurBlock is deleted. |
| 4623 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
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 | // Pop off CurBlock, handle nested blocks. |
| 4626 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4627 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4628 | // FIXME: Delete the ParmVarDecl objects as well??? |
Douglas Gregor | 4a471aa | 2009-03-11 23:54:15 +0000 | [diff] [blame] | 4629 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4630 | } |
| 4631 | |
| 4632 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 4633 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4634 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 4635 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 4636 | // If blocks are disabled, emit an error. |
| 4637 | if (!LangOpts.Blocks) |
| 4638 | Diag(CaretLoc, diag::err_blocks_disable); |
| 4639 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4640 | // Ensure that CurBlock is deleted. |
| 4641 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4642 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 4643 | PopDeclContext(); |
| 4644 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4645 | // Pop off CurBlock, handle nested blocks. |
| 4646 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4647 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4648 | QualType RetTy = Context.VoidTy; |
| 4649 | if (BSI->ReturnType) |
| 4650 | RetTy = QualType(BSI->ReturnType, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4651 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4652 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 4653 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 4654 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4655 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4656 | QualType BlockTy; |
| 4657 | if (!BSI->hasPrototype) |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 4658 | BlockTy = Context.getFunctionNoProtoType(RetTy); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4659 | else |
| 4660 | BlockTy = Context.getFunctionType(RetTy, &ArgTypes[0], ArgTypes.size(), |
Argyrios Kyrtzidis | 7fb5e48 | 2008-10-26 16:43:14 +0000 | [diff] [blame] | 4661 | BSI->isVariadic, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4662 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4663 | // FIXME: Check that return/parameter types are complete/non-abstract |
| 4664 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4665 | BlockTy = Context.getBlockPointerType(BlockTy); |
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 | BSI->TheDecl->setBody(static_cast<CompoundStmt*>(body.release())); |
| 4668 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 4669 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 4670 | } |
| 4671 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4672 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 4673 | ExprArg expr, TypeTy *type, |
| 4674 | SourceLocation RPLoc) { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 4675 | QualType T = QualType::getFromOpaquePtr(type); |
| 4676 | |
| 4677 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 4678 | |
| 4679 | // Get the va_list type |
| 4680 | QualType VaListType = Context.getBuiltinVaListType(); |
| 4681 | // Deal with implicit array decay; for example, on x86-64, |
| 4682 | // va_list is an array, but it's supposed to decay to |
| 4683 | // a pointer for va_arg. |
| 4684 | if (VaListType->isArrayType()) |
| 4685 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | efbe85c | 2008-08-20 22:17:17 +0000 | [diff] [blame] | 4686 | // Make sure the input expression also decays appropriately. |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4687 | Expr *E = static_cast<Expr*>(expr.get()); |
Eli Friedman | efbe85c | 2008-08-20 22:17:17 +0000 | [diff] [blame] | 4688 | UsualUnaryConversions(E); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 4689 | |
| 4690 | if (CheckAssignmentConstraints(VaListType, E->getType()) != Compatible) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4691 | return ExprError(Diag(E->getLocStart(), |
| 4692 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
| 4693 | << E->getType() << E->getSourceRange()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4694 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4695 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 4696 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4697 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4698 | expr.release(); |
| 4699 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 4700 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 4701 | } |
| 4702 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4703 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 4704 | // The type of __null will be int or long, depending on the size of |
| 4705 | // pointers on the target. |
| 4706 | QualType Ty; |
| 4707 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 4708 | Ty = Context.IntTy; |
| 4709 | else |
| 4710 | Ty = Context.LongTy; |
| 4711 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 4712 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 4713 | } |
| 4714 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4715 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 4716 | SourceLocation Loc, |
| 4717 | QualType DstType, QualType SrcType, |
| 4718 | Expr *SrcExpr, const char *Flavor) { |
| 4719 | // Decode the result (notice that AST's are still created for extensions). |
| 4720 | bool isInvalid = false; |
| 4721 | unsigned DiagKind; |
| 4722 | switch (ConvTy) { |
| 4723 | default: assert(0 && "Unknown conversion type"); |
| 4724 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 4725 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4726 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 4727 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 4728 | case IntToPointer: |
| 4729 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 4730 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4731 | case IncompatiblePointer: |
| 4732 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 4733 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 4734 | case IncompatiblePointerSign: |
| 4735 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 4736 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4737 | case FunctionVoidPointer: |
| 4738 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 4739 | break; |
| 4740 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 4741 | // If the qualifiers lost were because we were applying the |
| 4742 | // (deprecated) C++ conversion from a string literal to a char* |
| 4743 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 4744 | // Ideally, this check would be performed in |
| 4745 | // CheckPointerTypesForAssignment. However, that would require a |
| 4746 | // bit of refactoring (so that the second argument is an |
| 4747 | // expression, rather than a type), which should be done as part |
| 4748 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 4749 | // C++ semantics. |
| 4750 | if (getLangOptions().CPlusPlus && |
| 4751 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 4752 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4753 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 4754 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4755 | case IntToBlockPointer: |
| 4756 | DiagKind = diag::err_int_to_block_pointer; |
| 4757 | break; |
| 4758 | case IncompatibleBlockPointer: |
Steve Naroff | ba80c9a | 2008-09-24 23:31:10 +0000 | [diff] [blame] | 4759 | DiagKind = diag::ext_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4760 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4761 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4762 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 4763 | // it can give a more specific diagnostic. |
| 4764 | DiagKind = diag::warn_incompatible_qualified_id; |
| 4765 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4766 | case IncompatibleVectors: |
| 4767 | DiagKind = diag::warn_incompatible_vectors; |
| 4768 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4769 | case Incompatible: |
| 4770 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 4771 | isInvalid = true; |
| 4772 | break; |
| 4773 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4774 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4775 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 4776 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4777 | return isInvalid; |
| 4778 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4779 | |
| 4780 | bool Sema::VerifyIntegerConstantExpression(const Expr* E, llvm::APSInt *Result) |
| 4781 | { |
| 4782 | Expr::EvalResult EvalResult; |
| 4783 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4784 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4785 | EvalResult.HasSideEffects) { |
| 4786 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 4787 | |
| 4788 | if (EvalResult.Diag) { |
| 4789 | // We only show the note if it's not the usual "invalid subexpression" |
| 4790 | // or if it's actually in a subexpression. |
| 4791 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 4792 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 4793 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 4794 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4795 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4796 | return true; |
| 4797 | } |
| 4798 | |
| 4799 | if (EvalResult.Diag) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4800 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4801 | E->getSourceRange(); |
| 4802 | |
| 4803 | // Print the reason it's not a constant. |
| 4804 | if (Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 4805 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 4806 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4807 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 4808 | if (Result) |
| 4809 | *Result = EvalResult.Val.getInt(); |
| 4810 | return false; |
| 4811 | } |